diff --git a/collections/luci/Makefile b/collections/luci/Makefile deleted file mode 100644 index 961c60fd8..000000000 --- a/collections/luci/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -# -# Copyright (C) 2008-2014 The LuCI Team -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -LUCI_TYPE:=col -LUCI_BASENAME:=luci - -LUCI_TITLE:=LuCI interface with Uhttpd as Webserver (default) -LUCI_DESCRIPTION:=Standard OpenWrt set including full admin with ppp support and the default Bootstrap theme -LUCI_DEPENDS:= \ - +uhttpd +luci-mod-admin-full +luci-theme-bootstrap \ - +luci-app-firewall +luci-proto-ppp +libiwinfo-lua +IPV6:luci-proto-ipv6 \ - +rpcd-mod-rrdns - -PKG_LICENSE:=Apache-2.0 - -include ../../luci/luci.mk - -# call BuildPackage - OpenWrt buildroot signature diff --git a/luci-app-firewall/Makefile b/luci-app-firewall/Makefile deleted file mode 100644 index f0a1d83da..000000000 --- a/luci-app-firewall/Makefile +++ /dev/null @@ -1,16 +0,0 @@ -# -# Copyright (C) 2008-2014 The LuCI Team -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=Firewall and Portforwarding application -LUCI_DEPENDS:=+firewall - -PKG_LICENSE:=Apache-2.0 - -include ../luci/luci.mk - -# call BuildPackage - OpenWrt buildroot signature diff --git a/luci-app-firewall/luasrc/controller/firewall.lua b/luci-app-firewall/luasrc/controller/firewall.lua deleted file mode 100644 index 4fe7770ef..000000000 --- a/luci-app-firewall/luasrc/controller/firewall.lua +++ /dev/null @@ -1,23 +0,0 @@ -module("luci.controller.firewall", package.seeall) - -function index() - entry({"admin", "network", "firewall"}, - alias("admin", "network", "firewall", "zones"), - _("Firewall"), 60) - - entry({"admin", "network", "firewall", "zones"}, - arcombine(cbi("firewall/zones"), cbi("firewall/zone-details")), - _("General Settings"), 10).leaf = true - - entry({"admin", "network", "firewall", "forwards"}, - arcombine(cbi("firewall/forwards"), cbi("firewall/forward-details")), - _("Port Forwards"), 20).leaf = true - - entry({"admin", "network", "firewall", "rules"}, - arcombine(cbi("firewall/rules"), cbi("firewall/rule-details")), - _("Traffic Rules"), 30).leaf = true - - entry({"admin", "network", "firewall", "custom"}, - form("firewall/custom"), - _("Custom Rules"), 40).leaf = true -end diff --git a/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua b/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua deleted file mode 100644 index 21a1b2796..000000000 --- a/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua +++ /dev/null @@ -1,31 +0,0 @@ --- Copyright 2011 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" - -local f = SimpleForm("firewall", - translate("Firewall - Custom Rules"), - translate("Custom rules allow you to execute arbitrary iptables commands \ - which are not otherwise covered by the firewall framework. \ - The commands are executed after each firewall restart, right after \ - the default ruleset has been loaded.")) - -local o = f:field(Value, "_custom") - -o.template = "cbi/tvalue" -o.rows = 20 - -function o.cfgvalue(self, section) - return fs.readfile("/etc/firewall.user") -end - -function o.write(self, section, value) - value = value:gsub("\r\n?", "\n") - fs.writefile("/etc/firewall.user", value) - require("luci.sys").call("/etc/init.d/firewall restart >/dev/null 2<&1") - require("nixio").syslog('info', 'Restarting firewall on custom /etc/firewall.user change') -end - -f.submit = translate("Restart Firewall") - -return f diff --git a/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua b/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua deleted file mode 100644 index d51f8fb79..000000000 --- a/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua +++ /dev/null @@ -1,162 +0,0 @@ --- Copyright 2011 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local sys = require "luci.sys" -local dsp = require "luci.dispatcher" -local ft = require "luci.tools.firewall" - -local m, s, o - -arg[1] = arg[1] or "" - -m = Map("firewall", - translate("Firewall - Port Forwards"), - translate("This page allows you to change advanced properties of the port \ - forwarding entry. In most cases there is no need to modify \ - those settings.")) - -m.redirect = dsp.build_url("admin/network/firewall/forwards") - -if m.uci:get("firewall", arg[1]) ~= "redirect" then - luci.http.redirect(m.redirect) - return -else - local name = m:get(arg[1], "name") or m:get(arg[1], "_name") - if not name or #name == 0 then - name = translate("(Unnamed Entry)") - end - m.title = "%s - %s" %{ translate("Firewall - Port Forwards"), name } -end - -s = m:section(NamedSection, arg[1], "redirect", "") -s.anonymous = true -s.addremove = false - -ft.opt_enabled(s, Button) -ft.opt_name(s, Value, translate("Name")) - - -o = s:option(Value, "proto", translate("Protocol")) -o:value("tcp udp", "TCP+UDP") -o:value("tcp", "TCP") -o:value("udp", "UDP") -o:value("icmp", "ICMP") - -function o.cfgvalue(...) - local v = Value.cfgvalue(...) - if not v or v == "tcpudp" then - return "tcp udp" - end - return v -end - - -o = s:option(Value, "src", translate("Source zone")) -o.nocreate = true -o.default = "wan" -o.template = "cbi/firewall_zonelist" -o.rmempty = false - - -o = s:option(DynamicList, "src_mac", - translate("Source MAC address"), - translate("Only match incoming traffic from these MACs.")) -o.rmempty = true -o.datatype = "neg(macaddr)" -o.placeholder = translate("any") - -luci.sys.net.mac_hints(function(mac, name) - o:value(mac, "%s (%s)" %{ mac, name }) -end) - - -o = s:option(Value, "src_ip", - translate("Source IP address"), - translate("Only match incoming traffic from this IP or range.")) -o.rmempty = true -o.datatype = "neg(ipmask4)" -o.placeholder = translate("any") - -luci.sys.net.ipv4_hints(function(ip, name) - o:value(ip, "%s (%s)" %{ ip, name }) -end) - - -o = s:option(Value, "src_port", - translate("Source port"), - translate("Only match incoming traffic originating from the given source port or port range on the client host")) -o.rmempty = true -o.datatype = "neg(portrange)" -o.placeholder = translate("any") - -o:depends("proto", "tcp") -o:depends("proto", "udp") -o:depends("proto", "tcp udp") -o:depends("proto", "tcpudp") - -o = s:option(Value, "src_dip", - translate("External IP address"), - translate("Only match incoming traffic directed at the given IP address.")) - -luci.sys.net.ipv4_hints(function(ip, name) - o:value(ip, "%s (%s)" %{ ip, name }) -end) - - -o.rmempty = true -o.datatype = "neg(ipmask4)" -o.placeholder = translate("any") - - -o = s:option(Value, "src_dport", translate("External port"), - translate("Match incoming traffic directed at the given " .. - "destination port or port range on this host")) -o.datatype = "neg(portrange)" - -o:depends("proto", "tcp") -o:depends("proto", "udp") -o:depends("proto", "tcp udp") -o:depends("proto", "tcpudp") - -o = s:option(Value, "dest", translate("Internal zone")) -o.nocreate = true -o.default = "lan" -o.template = "cbi/firewall_zonelist" - - -o = s:option(Value, "dest_ip", translate("Internal IP address"), - translate("Redirect matched incoming traffic to the specified \ - internal host")) -o.datatype = "ipmask4" - -luci.sys.net.ipv4_hints(function(ip, name) - o:value(ip, "%s (%s)" %{ ip, name }) -end) - - -o = s:option(Value, "dest_port", - translate("Internal port"), - translate("Redirect matched incoming traffic to the given port on \ - the internal host")) -o.placeholder = translate("any") -o.datatype = "portrange" - -o:depends("proto", "tcp") -o:depends("proto", "udp") -o:depends("proto", "tcp udp") -o:depends("proto", "tcpudp") - -o = s:option(Flag, "reflection", translate("Enable NAT Loopback")) -o.rmempty = true -o.default = o.enabled -o.cfgvalue = function(...) - return Flag.cfgvalue(...) or "1" -end - - -s:option(Value, "extra", - translate("Extra arguments"), - translate("Passes additional arguments to iptables. Use with care!")) - - -return m diff --git a/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua b/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua deleted file mode 100644 index 5d1ffe091..000000000 --- a/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua +++ /dev/null @@ -1,133 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2010-2012 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local ds = require "luci.dispatcher" -local ft = require "luci.tools.firewall" - -m = Map("firewall", translate("Firewall - Port Forwards"), - translate("Port forwarding allows remote computers on the Internet to \ - connect to a specific computer or service within the \ - private LAN.")) - --- --- Port Forwards --- - -s = m:section(TypedSection, "redirect", translate("Port Forwards")) -s.template = "cbi/tblsection" -s.addremove = true -s.anonymous = true -s.sortable = true -s.extedit = ds.build_url("admin/network/firewall/forwards/%s") -s.template_addremove = "firewall/cbi_addforward" - -function s.create(self, section) - local n = m:formvalue("_newfwd.name") - local p = m:formvalue("_newfwd.proto") - local E = m:formvalue("_newfwd.extzone") - local e = m:formvalue("_newfwd.extport") - local I = m:formvalue("_newfwd.intzone") - local a = m:formvalue("_newfwd.intaddr") - local i = m:formvalue("_newfwd.intport") - - if p == "other" or (p and a) then - created = TypedSection.create(self, section) - - self.map:set(created, "target", "DNAT") - self.map:set(created, "src", E or "wan") - self.map:set(created, "dest", I or "lan") - self.map:set(created, "proto", (p ~= "other") and p or "all") - self.map:set(created, "src_dport", e) - self.map:set(created, "dest_ip", a) - self.map:set(created, "dest_port", i) - self.map:set(created, "name", n) - end - - if p ~= "other" then - created = nil - end -end - -function s.parse(self, ...) - TypedSection.parse(self, ...) - if created then - m.uci:save("firewall") - luci.http.redirect(ds.build_url( - "admin/network/firewall/forwards", created - )) - end -end - -function s.filter(self, sid) - return (self.map:get(sid, "target") ~= "SNAT") -end - -function s.sectiontitle(self, sid) - return (self.map:get(sid, "name") or translate("Unnamed forward")) -end - - -local function forward_proto_txt(self, s) - return "%s-%s" %{ - translate("IPv4"), - ft.fmt_proto(self.map:get(s, "proto"), - self.map:get(s, "icmp_type")) or "TCP+UDP" - } -end - -local function forward_src_txt(self, s) - local z = ft.fmt_zone(self.map:get(s, "src"), translate("any zone")) - local a = ft.fmt_ip(self.map:get(s, "src_ip"), translate("any host")) - local p = ft.fmt_port(self.map:get(s, "src_port")) - local m = ft.fmt_mac(self.map:get(s, "src_mac")) - - if p and m then - return translatef("From %s in %s with source %s and %s", a, z, p, m) - elseif p or m then - return translatef("From %s in %s with source %s", a, z, p or m) - else - return translatef("From %s in %s", a, z) - end -end - -local function forward_via_txt(self, s) - local a = ft.fmt_ip(self.map:get(s, "src_dip"), translate("any router IP")) - local p = ft.fmt_port(self.map:get(s, "src_dport")) - - if p then - return translatef("Via %s at %s", a, p) - else - return translatef("Via %s", a) - end -end - -match = s:option(DummyValue, "match", translate("Match")) -match.rawhtml = true -function match.cfgvalue(self, s) - return "%s
%s
%s
" % { - forward_proto_txt(self, s), - forward_src_txt(self, s), - forward_via_txt(self, s) - } -end - - -dest = s:option(DummyValue, "dest", translate("Forward to")) -dest.rawhtml = true -function dest.cfgvalue(self, s) - local z = ft.fmt_zone(self.map:get(s, "dest"), translate("any zone")) - local a = ft.fmt_ip(self.map:get(s, "dest_ip"), translate("any host")) - local p = ft.fmt_port(self.map:get(s, "dest_port")) or - ft.fmt_port(self.map:get(s, "src_dport")) - - if p then - return translatef("%s, %s in %s", a, p, z) - else - return translatef("%s in %s", a, z) - end -end - -ft.opt_enabled(s, Flag, translate("Enable")) - -return m diff --git a/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua b/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua deleted file mode 100644 index def01c669..000000000 --- a/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua +++ /dev/null @@ -1,365 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2010-2012 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. -local dsp = require "luci.dispatcher" -local ft = require "luci.tools.firewall" -local nw = require "luci.model.network" -local m, s, o, v, _ - -arg[1] = arg[1] or "" - -m = Map("firewall", - translate("Firewall - Traffic Rules"), - translate("This page allows you to change advanced properties of the \ - traffic rule entry, such as matched source and destination \ - hosts.")) - -m.redirect = dsp.build_url("admin/network/firewall/rules") - -nw.init(m.uci) - -local rule_type = m.uci:get("firewall", arg[1]) -if rule_type == "redirect" and m:get(arg[1], "target") ~= "SNAT" then - rule_type = nil -end - -if not rule_type then - luci.http.redirect(m.redirect) - return - --- --- SNAT --- -elseif rule_type == "redirect" then - - local name = m:get(arg[1], "name") or m:get(arg[1], "_name") - if not name or #name == 0 then - name = translate("(Unnamed SNAT)") - else - name = "SNAT %s" % name - end - - m.title = "%s - %s" %{ translate("Firewall - Traffic Rules"), name } - - s = m:section(NamedSection, arg[1], "redirect", "") - s.anonymous = true - s.addremove = false - - - ft.opt_enabled(s, Button) - ft.opt_name(s, Value, translate("Name")) - - - o = s:option(Value, "proto", - translate("Protocol"), - translate("You may specify multiple by selecting \"-- custom --\" and \ - then entering protocols separated by space.")) - - o:value("all", "All protocols") - o:value("tcp udp", "TCP+UDP") - o:value("tcp", "TCP") - o:value("udp", "UDP") - o:value("icmp", "ICMP") - - function o.cfgvalue(...) - local v = Value.cfgvalue(...) - if not v or v == "tcpudp" then - return "tcp udp" - end - return v - end - - - o = s:option(Value, "src", translate("Source zone")) - o.nocreate = true - o.default = "wan" - o.template = "cbi/firewall_zonelist" - - - o = s:option(Value, "src_ip", translate("Source IP address")) - o.rmempty = true - o.datatype = "neg(ipmask4)" - o.placeholder = translate("any") - - luci.sys.net.ipv4_hints(function(ip, name) - o:value(ip, "%s (%s)" %{ ip, name }) - end) - - - o = s:option(Value, "src_port", - translate("Source port"), - translate("Match incoming traffic originating from the given source \ - port or port range on the client host.")) - o.rmempty = true - o.datatype = "neg(portrange)" - o.placeholder = translate("any") - - o:depends("proto", "tcp") - o:depends("proto", "udp") - o:depends("proto", "tcp udp") - o:depends("proto", "tcpudp") - - o = s:option(Value, "dest", translate("Destination zone")) - o.nocreate = true - o.default = "lan" - o.template = "cbi/firewall_zonelist" - - - o = s:option(Value, "dest_ip", translate("Destination IP address")) - o.datatype = "neg(ipmask4)" - - luci.sys.net.ipv4_hints(function(ip, name) - o:value(ip, "%s (%s)" %{ ip, name }) - end) - - - o = s:option(Value, "dest_port", - translate("Destination port"), - translate("Match forwarded traffic to the given destination port or \ - port range.")) - - o.rmempty = true - o.placeholder = translate("any") - o.datatype = "neg(portrange)" - - o:depends("proto", "tcp") - o:depends("proto", "udp") - o:depends("proto", "tcp udp") - o:depends("proto", "tcpudp") - - o = s:option(Value, "src_dip", - translate("SNAT IP address"), - translate("Rewrite matched traffic to the given address.")) - o.rmempty = false - o.datatype = "ip4addr" - - for _, v in ipairs(nw:get_interfaces()) do - local a - for _, a in ipairs(v:ipaddrs()) do - o:value(a:host():string(), '%s (%s)' %{ - a:host():string(), v:shortname() - }) - end - end - - - o = s:option(Value, "src_dport", translate("SNAT port"), - translate("Rewrite matched traffic to the given source port. May be \ - left empty to only rewrite the IP address.")) - o.datatype = "portrange" - o.rmempty = true - o.placeholder = translate('Do not rewrite') - - o:depends("proto", "tcp") - o:depends("proto", "udp") - o:depends("proto", "tcp udp") - o:depends("proto", "tcpudp") - - s:option(Value, "extra", - translate("Extra arguments"), - translate("Passes additional arguments to iptables. Use with care!")) - - --- --- Rule --- -else - local name = m:get(arg[1], "name") or m:get(arg[1], "_name") - if not name or #name == 0 then - name = translate("(Unnamed Rule)") - end - - m.title = "%s - %s" %{ translate("Firewall - Traffic Rules"), name } - - - s = m:section(NamedSection, arg[1], "rule", "") - s.anonymous = true - s.addremove = false - - ft.opt_enabled(s, Button) - ft.opt_name(s, Value, translate("Name")) - - - o = s:option(ListValue, "family", translate("Restrict to address family")) - o.rmempty = true - o:value("", translate("IPv4 and IPv6")) - o:value("ipv4", translate("IPv4 only")) - o:value("ipv6", translate("IPv6 only")) - - - o = s:option(Value, "proto", translate("Protocol")) - o:value("all", translate("Any")) - o:value("tcp udp", "TCP+UDP") - o:value("tcp", "TCP") - o:value("udp", "UDP") - o:value("icmp", "ICMP") - - function o.cfgvalue(...) - local v = Value.cfgvalue(...) - if not v or v == "tcpudp" then - return "tcp udp" - end - return v - end - - - o = s:option(DropDown, "icmp_type", translate("Match ICMP type")) - o.multiple = true - o.display = 10 - o.dropdown = 10 - o.custom = true - o.cast = "table" - - o:value("", "any") - o:value("echo-reply") - o:value("destination-unreachable") - o:value("network-unreachable") - o:value("host-unreachable") - o:value("protocol-unreachable") - o:value("port-unreachable") - o:value("fragmentation-needed") - o:value("source-route-failed") - o:value("network-unknown") - o:value("host-unknown") - o:value("network-prohibited") - o:value("host-prohibited") - o:value("TOS-network-unreachable") - o:value("TOS-host-unreachable") - o:value("communication-prohibited") - o:value("host-precedence-violation") - o:value("precedence-cutoff") - o:value("source-quench") - o:value("redirect") - o:value("network-redirect") - o:value("host-redirect") - o:value("TOS-network-redirect") - o:value("TOS-host-redirect") - o:value("echo-request") - o:value("router-advertisement") - o:value("router-solicitation") - o:value("time-exceeded") - o:value("ttl-zero-during-transit") - o:value("ttl-zero-during-reassembly") - o:value("parameter-problem") - o:value("ip-header-bad") - o:value("required-option-missing") - o:value("timestamp-request") - o:value("timestamp-reply") - o:value("address-mask-request") - o:value("address-mask-reply") - - o:depends("proto", "icmp") - - - o = s:option(Value, "src", translate("Source zone")) - o.nocreate = true - o.allowany = true - o.allowlocal = "src" - o.template = "cbi/firewall_zonelist" - - - o = s:option(Value, "src_mac", translate("Source MAC address")) - o.datatype = "list(macaddr)" - o.placeholder = translate("any") - - luci.sys.net.mac_hints(function(mac, name) - o:value(mac, "%s (%s)" %{ mac, name }) - end) - - - o = s:option(Value, "src_ip", translate("Source address")) - o.datatype = "list(neg(ipmask))" - o.placeholder = translate("any") - - luci.sys.net.ipv4_hints(function(ip, name) - o:value(ip, "%s (%s)" %{ ip, name }) - end) - - - o = s:option(Value, "src_port", translate("Source port")) - o.datatype = "list(neg(portrange))" - o.placeholder = translate("any") - - o:depends("proto", "tcp") - o:depends("proto", "udp") - o:depends("proto", "tcp udp") - o:depends("proto", "tcpudp") - - o = s:option(Value, "dest_local", translate("Output zone")) - o.nocreate = true - o.allowany = true - o.template = "cbi/firewall_zonelist" - o.alias = "dest" - o:depends("src", "") - - o = s:option(Value, "dest_remote", translate("Destination zone")) - o.nocreate = true - o.allowany = true - o.allowlocal = true - o.template = "cbi/firewall_zonelist" - o.alias = "dest" - o:depends({["src"] = "", ["!reverse"] = true}) - - - o = s:option(Value, "dest_ip", translate("Destination address")) - o.datatype = "list(neg(ipmask))" - o.placeholder = translate("any") - - luci.sys.net.ipv4_hints(function(ip, name) - o:value(ip, "%s (%s)" %{ ip, name }) - end) - - - o = s:option(Value, "dest_port", translate("Destination port")) - o.datatype = "list(neg(portrange))" - o.placeholder = translate("any") - - o:depends("proto", "tcp") - o:depends("proto", "udp") - o:depends("proto", "tcp udp") - o:depends("proto", "tcpudp") - - o = s:option(ListValue, "target", translate("Action")) - o.default = "ACCEPT" - o:value("DROP", translate("drop")) - o:value("ACCEPT", translate("accept")) - o:value("REJECT", translate("reject")) - o:value("NOTRACK", translate("don't track")) - - - s:option(Value, "extra", - translate("Extra arguments"), - translate("Passes additional arguments to iptables. Use with care!")) -end - -o = s:option(DropDown, "weekdays", translate("Week Days")) -o.multiple = true -o.display = 5 -o:value("Sun", translate("Sunday")) -o:value("Mon", translate("Monday")) -o:value("Tue", translate("Tuesday")) -o:value("Wed", translate("Wednesday")) -o:value("Thu", translate("Thursday")) -o:value("Fri", translate("Friday")) -o:value("Sat", translate("Saturday")) - -o = s:option(DropDown, "monthdays", translate("Month Days")) -o.multiple = true -o.display = 15 -for i = 1,31 do - o:value(translate(i)) -end - -o = s:option(Value, "start_time", translate("Start Time (hh:mm:ss)")) -o.datatype = "timehhmmss" -o = s:option(Value, "stop_time", translate("Stop Time (hh:mm:ss)")) -o.datatype = "timehhmmss" -o = s:option(Value, "start_date", translate("Start Date (yyyy-mm-dd)")) -o.datatype = "dateyyyymmdd" -o = s:option(Value, "stop_date", translate("Stop Date (yyyy-mm-dd)")) -o.datatype = "dateyyyymmdd" - -o = s:option(Flag, "utc_time", translate("Time in UTC")) -o.default = o.disabled - -return m diff --git a/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua b/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua deleted file mode 100644 index f4b6b2a92..000000000 --- a/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua +++ /dev/null @@ -1,273 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2010-2012 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local ds = require "luci.dispatcher" -local ft = require "luci.tools.firewall" - -m = Map("firewall", - translate("Firewall - Traffic Rules"), - translate("Traffic rules define policies for packets traveling between \ - different zones, for example to reject traffic between certain hosts \ - or to open WAN ports on the router.")) - --- --- Rules --- - -s = m:section(TypedSection, "rule", translate("Traffic Rules")) -s.addremove = true -s.anonymous = true -s.sortable = true -s.template = "cbi/tblsection" -s.extedit = ds.build_url("admin/network/firewall/rules/%s") -s.defaults.target = "ACCEPT" -s.template_addremove = "firewall/cbi_addrule" - - -function s.create(self, section) - created = TypedSection.create(self, section) -end - -function s.parse(self, ...) - TypedSection.parse(self, ...) - - local i_n = m:formvalue("_newopen.name") - local i_p = m:formvalue("_newopen.proto") - local i_e = m:formvalue("_newopen.extport") - local i_x = m:formvalue("_newopen.submit") - - local f_n = m:formvalue("_newfwd.name") - local f_s = m:formvalue("_newfwd.src") - local f_d = m:formvalue("_newfwd.dest") - local f_x = m:formvalue("_newfwd.submit") - - if i_x then - created = TypedSection.create(self, section) - - self.map:set(created, "target", "ACCEPT") - self.map:set(created, "src", "wan") - self.map:set(created, "proto", (i_p ~= "other") and i_p or "all") - self.map:set(created, "dest_port", i_e) - self.map:set(created, "name", i_n) - - if i_p ~= "other" and i_e and #i_e > 0 then - created = nil - end - - elseif f_x then - created = TypedSection.create(self, section) - - self.map:set(created, "target", "ACCEPT") - self.map:set(created, "src", f_s) - self.map:set(created, "dest", f_d) - self.map:set(created, "name", f_n) - end - - if created then - m.uci:save("firewall") - luci.http.redirect(ds.build_url( - "admin/network/firewall/rules", created - )) - end -end - -function s.sectiontitle(self, sid) - return (self.map:get(sid, "name") or translate("Unnamed rule")) -end - -local function rule_proto_txt(self, s) - local f = self.map:get(s, "family") - local p = ft.fmt_proto(self.map:get(s, "proto"), - self.map:get(s, "icmp_type")) or translate("traffic") - - if f and f:match("4") then - return "%s-%s" %{ translate("IPv4"), p } - elseif f and f:match("6") then - return "%s-%s" %{ translate("IPv6"), p } - else - return "%s %s" %{ translate("Any"), p } - end -end - -local function rule_src_txt(self, s) - local z = ft.fmt_zone(self.map:get(s, "src")) - local p = ft.fmt_port(self.map:get(s, "src_port")) - local m = ft.fmt_mac(self.map:get(s, "src_mac")) - - -- Forward/Input - if z and #z > 0 then - local a = ft.fmt_ip(self.map:get(s, "src_ip"), translate("any host")) - if p and m then - return translatef("From %s in %s with source %s and %s", a, z, p, m) - elseif p or m then - return translatef("From %s in %s with source %s", a, z, p or m) - else - return translatef("From %s in %s", a, z) - end - - -- Output - else - local a = ft.fmt_ip(self.map:get(s, "src_ip"), translate("any router IP")) - if p and m then - return translatef("From %s on this device with source %s and %s", a, p, m) - elseif p or m then - return translatef("From %s on this device with source %s", a, p or m) - else - return translatef("From %s on this device", a) - end - end -end - -local function rule_dest_txt(self, s) - local z = ft.fmt_zone(self.map:get(s, "dest")) - local p = ft.fmt_port(self.map:get(s, "dest_port")) - - -- Forward - if z then - local a = ft.fmt_ip(self.map:get(s, "dest_ip"), translate("any host")) - if p then - return translatef("To %s, %s in %s", a, p, z) - else - return translatef("To %s in %s", a, z) - end - - -- Input - else - local a = ft.fmt_ip(self.map:get(s, "dest_ip"), - translate("any router IP")) - - if p then - return translatef("To %s at %s on this device", a, p) - else - return translatef("To %s on this device", a) - end - end -end - -local function snat_dest_txt(self, s) - local z = ft.fmt_zone(self.map:get(s, "dest"), translate("any zone")) - local a = ft.fmt_ip(self.map:get(s, "dest_ip"), translate("any host")) - local p = ft.fmt_port(self.map:get(s, "dest_port")) or - ft.fmt_port(self.map:get(s, "src_dport")) - - if p then - return translatef("To %s, %s in %s", a, p, z) - else - return translatef("To %s in %s", a, z) - end -end - - -match = s:option(DummyValue, "match", translate("Match")) -match.rawhtml = true -function match.cfgvalue(self, s) - return "%s
%s
%s
" % { - rule_proto_txt(self, s), - rule_src_txt(self, s), - rule_dest_txt(self, s) - } -end - -target = s:option(DummyValue, "target", translate("Action")) -target.rawhtml = true -function target.cfgvalue(self, s) - local t = ft.fmt_target(self.map:get(s, "target"), self.map:get(s, "src"), self.map:get(s, "dest")) - local l = ft.fmt_limit(self.map:get(s, "limit"), - self.map:get(s, "limit_burst")) - - if l then - return translatef("%s and limit to %s", t, l) - else - return "%s" % t - end -end - -ft.opt_enabled(s, Flag, translate("Enable")) - - --- --- SNAT --- - -s = m:section(TypedSection, "redirect", - translate("Source NAT"), - translate("Source NAT is a specific form of masquerading which allows \ - fine grained control over the source IP used for outgoing traffic, \ - for example to map multiple WAN addresses to internal subnets.")) -s.template = "cbi/tblsection" -s.addremove = true -s.anonymous = true -s.sortable = true -s.extedit = ds.build_url("admin/network/firewall/rules/%s") -s.template_addremove = "firewall/cbi_addsnat" - -function s.create(self, section) - created = TypedSection.create(self, section) -end - -function s.parse(self, ...) - TypedSection.parse(self, ...) - - local n = m:formvalue("_newsnat.name") - local s = m:formvalue("_newsnat.src") - local d = m:formvalue("_newsnat.dest") - local a = m:formvalue("_newsnat.dip") - local p = m:formvalue("_newsnat.dport") - local x = m:formvalue("_newsnat.submit") - - if x and a and #a > 0 then - created = TypedSection.create(self, section) - - self.map:set(created, "target", "SNAT") - self.map:set(created, "src", s) - self.map:set(created, "dest", d) - self.map:set(created, "proto", "all") - self.map:set(created, "src_dip", a) - self.map:set(created, "src_dport", p) - self.map:set(created, "name", n) - end - - if created then - m.uci:save("firewall") - luci.http.redirect(ds.build_url( - "admin/network/firewall/rules", created - )) - end -end - -function s.filter(self, sid) - return (self.map:get(sid, "target") == "SNAT") -end - -function s.sectiontitle(self, sid) - return (self.map:get(sid, "name") or translate("Unnamed SNAT")) -end - -match = s:option(DummyValue, "match", translate("Match")) -match.rawhtml = true -function match.cfgvalue(self, s) - return "%s
%s
%s
" % { - rule_proto_txt(self, s), - rule_src_txt(self, s), - snat_dest_txt(self, s) - } -end - -snat = s:option(DummyValue, "via", translate("Action")) -snat.rawhtml = true -function snat.cfgvalue(self, s) - local a = ft.fmt_ip(self.map:get(s, "src_dip")) - local p = ft.fmt_port(self.map:get(s, "src_dport")) - - if a and p then - return translatef("Rewrite to source %s, %s", a, p) - else - return translatef("Rewrite to source %s", a or p) - end -end - -ft.opt_enabled(s, Flag, translate("Enable")) - - -return m diff --git a/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua b/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua deleted file mode 100644 index e168c3c60..000000000 --- a/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua +++ /dev/null @@ -1,229 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2010-2011 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local nw = require "luci.model.network" -local fw = require "luci.model.firewall" -local ds = require "luci.dispatcher" -local ut = require "luci.util" - -local m, p, i, v -local s, name, net, family, msrc, mdest, log, lim -local s2, out, inp - - -m = Map("firewall", translate("Firewall - Zone Settings")) -m.redirect = luci.dispatcher.build_url("admin/network/firewall/zones") - -fw.init(m.uci) -nw.init(m.uci) - - -local zone = fw:get_zone(arg[1]) -if not zone then - luci.http.redirect(ds.build_url("admin/network/firewall/zones")) - return -else - m.title = "%s - %s" %{ - translate("Firewall - Zone Settings"), - translatef("Zone %q", zone:name() or "?") - } -end - - -s = m:section(NamedSection, zone.sid, "zone", - translatef("Zone %q", zone:name()), - translatef("This section defines common properties of %q. \ - The input and output options set the default \ - policies for traffic entering and leaving this zone while the \ - forward option describes the policy for forwarded traffic \ - between different networks within the zone. \ - Covered networks specifies which available networks are \ - members of this zone.", zone:name())) - -s.anonymous = true -s.addremove = false - -m.on_commit = function(map) - local zone = fw:get_zone(arg[1]) - if zone then - s.section = zone.sid - s2.section = zone.sid - end -end - - -s:tab("general", translate("General Settings")) -s:tab("advanced", translate("Advanced Settings")) - - -name = s:taboption("general", Value, "name", translate("Name")) -name.optional = false -name.forcewrite = true -name.datatype = "and(uciname,maxlength(11))" - -function name.write(self, section, value) - if zone:name() ~= value then - fw:rename_zone(zone:name(), value) - out.exclude = value - inp.exclude = value - end -end - -p = { - s:taboption("general", ListValue, "input", translate("Input")), - s:taboption("general", ListValue, "output", translate("Output")), - s:taboption("general", ListValue, "forward", translate("Forward")) -} - -for i, v in ipairs(p) do - v:value("REJECT", translate("reject")) - v:value("DROP", translate("drop")) - v:value("ACCEPT", translate("accept")) -end - -s:taboption("general", Flag, "masq", translate("Masquerading")) -s:taboption("general", Flag, "mtu_fix", translate("MSS clamping")) - -net = s:taboption("general", Value, "network", translate("Covered networks")) -net.template = "cbi/network_netlist" -net.widget = "checkbox" -net.cast = "string" - -function net.formvalue(self, section) - return Value.formvalue(self, section) or "-" -end - -function net.cfgvalue(self, section) - return Value.cfgvalue(self, section) or name:cfgvalue(section) -end - -function net.write(self, section, value) - zone:clear_networks() - - local net - for net in ut.imatch(value) do - local n = nw:get_network(net) or nw:add_network(net, { proto = "none" }) - if n then - zone:add_network(n:name()) - end - end -end - - -family = s:taboption("advanced", ListValue, "family", - translate("Restrict to address family")) - -family.rmempty = true -family:value("", translate("IPv4 and IPv6")) -family:value("ipv4", translate("IPv4 only")) -family:value("ipv6", translate("IPv6 only")) - -msrc = s:taboption("advanced", DynamicList, "masq_src", - translate("Restrict Masquerading to given source subnets")) - -msrc.optional = true -msrc.datatype = "list(neg(or(uciname,hostname,ipmask4)))" -msrc.placeholder = "0.0.0.0/0" -msrc:depends("family", "") -msrc:depends("family", "ipv4") - -mdest = s:taboption("advanced", DynamicList, "masq_dest", - translate("Restrict Masquerading to given destination subnets")) - -mdest.optional = true -mdest.datatype = "list(neg(or(uciname,hostname,ipmask4)))" -mdest.placeholder = "0.0.0.0/0" -mdest:depends("family", "") -mdest:depends("family", "ipv4") - -s:taboption("advanced", Flag, "conntrack", - translate("Force connection tracking")) - -log = s:taboption("advanced", Flag, "log", - translate("Enable logging on this zone")) - -log.rmempty = true -log.enabled = "1" - -lim = s:taboption("advanced", Value, "log_limit", - translate("Limit log messages")) - -lim.placeholder = "10/minute" -lim:depends("log", "1") - - -s2 = m:section(NamedSection, zone.sid, "fwd_out", - translate("Inter-Zone Forwarding"), - translatef("The options below control the forwarding policies between \ - this zone (%s) and other zones. Destination zones cover \ - forwarded traffic originating from %q. \ - Source zones match forwarded traffic from other zones \ - targeted at %q. The forwarding rule is \ - unidirectional, e.g. a forward from lan to wan does \ - not imply a permission to forward from wan to lan as well.", - zone:name(), zone:name(), zone:name() - - )) - -out = s2:option(Value, "out", - translate("Allow forward to destination zones:")) - -out.nocreate = true -out.widget = "checkbox" -out.exclude = zone:name() -out.template = "cbi/firewall_zonelist" - -inp = s2:option(Value, "in", - translate("Allow forward from source zones:")) - -inp.nocreate = true -inp.widget = "checkbox" -inp.exclude = zone:name() -inp.template = "cbi/firewall_zonelist" - -function out.cfgvalue(self, section) - local v = { } - local f - for _, f in ipairs(zone:get_forwardings_by("src")) do - v[#v+1] = f:dest() - end - return table.concat(v, " ") -end - -function inp.cfgvalue(self, section) - local v = { } - local f - for _, f in ipairs(zone:get_forwardings_by("dest")) do - v[#v+1] = f:src() - end - return v -end - -function out.formvalue(self, section) - return Value.formvalue(self, section) or "-" -end - -function inp.formvalue(self, section) - return Value.formvalue(self, section) or "-" -end - -function out.write(self, section, value) - zone:del_forwardings_by("src") - - local f - for f in ut.imatch(value) do - zone:add_forwarding_to(f) - end -end - -function inp.write(self, section, value) - zone:del_forwardings_by("dest") - - local f - for f in ut.imatch(value) do - zone:add_forwarding_from(f) - end -end - -return m diff --git a/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua b/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua deleted file mode 100644 index 46402a8fc..000000000 --- a/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua +++ /dev/null @@ -1,104 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local ds = require "luci.dispatcher" -local fw = require "luci.model.firewall" -local fs = require "nixio.fs" - -local m, s, o, p, i, v - -m = Map("firewall", - translate("Firewall - Zone Settings"), - translate("The firewall creates zones over your network interfaces to control network traffic flow.")) - -fw.init(m.uci) - -s = m:section(TypedSection, "defaults", translate("General Settings")) -s.anonymous = true -s.addremove = false - -s:option(Flag, "syn_flood", translate("Enable SYN-flood protection")) - -o = s:option(Flag, "drop_invalid", translate("Drop invalid packets")) - -p = { - s:option(ListValue, "input", translate("Input")), - s:option(ListValue, "output", translate("Output")), - s:option(ListValue, "forward", translate("Forward")) -} - -for i, v in ipairs(p) do - v:value("REJECT", translate("reject")) - v:value("DROP", translate("drop")) - v:value("ACCEPT", translate("accept")) -end - --- Netfilter flow offload support - -local offload = fs.access("/sys/module/xt_FLOWOFFLOAD/refcnt") - -if offload then - s:option(DummyValue, "offload_advice", - translate("Routing/NAT Offloading"), - translate("Experimental feature. Not fully compatible with QoS/SQM.")) - - o = s:option(Flag, "flow_offloading", - translate("Software flow offloading"), - translate("Software based offloading for routing/NAT")) - o.optional = true - - o = s:option(Flag, "flow_offloading_hw", - translate("Hardware flow offloading"), - translate("Requires hardware NAT support. Implemented at least for mt7621")) - o.optional = true - o:depends( "flow_offloading", 1) -end - --- Firewall zones - -s = m:section(TypedSection, "zone", translate("Zones")) -s.template = "cbi/tblsection" -s.anonymous = true -s.addremove = true -s.extedit = ds.build_url("admin", "network", "firewall", "zones", "%s") - -function s.sectiontitle(self, sid) - local z = fw:get_zone(sid) - return z:name() -end - -function s.create(self) - local z = fw:new_zone() - if z then - luci.http.redirect( - ds.build_url("admin", "network", "firewall", "zones", z.sid) - ) - end -end - -function s.remove(self, section) - return fw:del_zone(section) -end - -o = s:option(DummyValue, "_info", translate("Zone ⇒ Forwardings")) -o.template = "cbi/firewall_zoneforwards" -o.cfgvalue = function(self, section) - return self.map:get(section, "name") -end - -p = { - s:option(ListValue, "input", translate("Input")), - s:option(ListValue, "output", translate("Output")), - s:option(ListValue, "forward", translate("Forward")) -} - -for i, v in ipairs(p) do - v:value("REJECT", translate("reject")) - v:value("DROP", translate("drop")) - v:value("ACCEPT", translate("accept")) -end - -s:option(Flag, "masq", translate("Masquerading")) -s:option(Flag, "mtu_fix", translate("MSS clamping")) - -return m diff --git a/luci-app-firewall/luasrc/tools/firewall.lua b/luci-app-firewall/luasrc/tools/firewall.lua deleted file mode 100644 index 055342bfb..000000000 --- a/luci-app-firewall/luasrc/tools/firewall.lua +++ /dev/null @@ -1,289 +0,0 @@ --- Copyright 2011-2012 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -module("luci.tools.firewall", package.seeall) - -local ut = require "luci.util" -local ip = require "luci.ip" -local nx = require "nixio" - -local translate, translatef = luci.i18n.translate, luci.i18n.translatef - -local function _(...) - return tostring(translate(...)) -end - -function fmt_neg(x) - if type(x) == "string" then - local v, neg = x:gsub("^ *! *", "") - if neg > 0 then - return v, "%s " % _("not") - else - return x, "" - end - end - return x, "" -end - -function fmt_mac(x) - if x and #x > 0 then - local m, n - local l = { _("MAC"), " " } - for m in ut.imatch(x) do - m, n = fmt_neg(m) - l[#l+1] = "%s%s" %{ n, m } - l[#l+1] = ", " - end - if #l > 1 then - l[#l] = nil - if #l > 3 then - l[1] = _("MACs") - end - return table.concat(l, "") - end - end -end - -function fmt_port(x, d) - if x and #x > 0 then - local p, n - local l = { _("port"), " " } - for p in ut.imatch(x) do - p, n = fmt_neg(p) - local a, b = p:match("(%d+)%D+(%d+)") - if a and b then - l[1] = _("ports") - l[#l+1] = "%s%d-%d" %{ n, a, b } - else - l[#l+1] = "%s%d" %{ n, p } - end - l[#l+1] = ", " - end - if #l > 1 then - l[#l] = nil - if #l > 3 then - l[1] = _("ports") - end - return table.concat(l, "") - end - end - return d and "%s" % d -end - -function fmt_ip(x, d) - if x and #x > 0 then - local l = { _("IP"), " " } - local v, a, n - for v in ut.imatch(x) do - v, n = fmt_neg(v) - a, m = v:match("(%S+)/(%d+%.%S+)") - a = a or v - a = a:match(":") and ip.IPv6(a, m) or ip.IPv4(a, m) - if a and (a:is6() and a:prefix() < 128 or a:prefix() < 32) then - l[1] = _("IP range") - l[#l+1] = "%s%s" %{ - a:minhost():string(), - a:maxhost():string(), - n, a:string() - } - else - l[#l+1] = "%s%s" %{ - n, - a and a:string() or v - } - end - l[#l+1] = ", " - end - if #l > 1 then - l[#l] = nil - if #l > 3 then - l[1] = _("IPs") - end - return table.concat(l, "") - end - end - return d and "%s" % d -end - -function fmt_zone(x, d) - if x == "*" then - return "%s" % _("any zone") - elseif x and #x > 0 then - return "%s" % x - elseif d then - return "%s" % d - end -end - -function fmt_icmp_type(x) - if x and #x > 0 then - local t, v, n - local l = { _("type"), " " } - for v in ut.imatch(x) do - v, n = fmt_neg(v) - l[#l+1] = "%s%s" %{ n, v } - l[#l+1] = ", " - end - if #l > 1 then - l[#l] = nil - if #l > 3 then - l[1] = _("types") - end - return table.concat(l, "") - end - end -end - -function fmt_proto(x, icmp_types) - if x and #x > 0 then - local v, n - local l = { } - local t = fmt_icmp_type(icmp_types) - for v in ut.imatch(x) do - v, n = fmt_neg(v) - if v == "tcpudp" then - l[#l+1] = "TCP" - l[#l+1] = ", " - l[#l+1] = "UDP" - l[#l+1] = ", " - elseif v ~= "all" then - local p = nx.getproto(v) - if p then - -- ICMP - if (p.proto == 1 or p.proto == 58) and t then - l[#l+1] = translatef( - "%s%s with %s", - n, p.aliases[1] or p.name, t - ) - else - l[#l+1] = "%s%s" %{ - n, - p.aliases[1] or p.name - } - end - l[#l+1] = ", " - end - end - end - if #l > 0 then - l[#l] = nil - return table.concat(l, "") - end - end -end - -function fmt_limit(limit, burst) - burst = tonumber(burst) - if limit and #limit > 0 then - local l, u = limit:match("(%d+)/(%w+)") - l = tonumber(l or limit) - u = u or "second" - if l then - if u:match("^s") then - u = _("second") - elseif u:match("^m") then - u = _("minute") - elseif u:match("^h") then - u = _("hour") - elseif u:match("^d") then - u = _("day") - end - if burst and burst > 0 then - return translatef("%d pkts. per %s, \ - burst %d pkts.", l, u, burst) - else - return translatef("%d pkts. per %s", l, u) - end - end - end -end - -function fmt_target(x, src, dest) - if not src or #src == 0 then - if x == "ACCEPT" then - return _("Accept output") - elseif x == "REJECT" then - return _("Refuse output") - elseif x == "NOTRACK" then - return _("Do not track output") - else --if x == "DROP" then - return _("Discard output") - end - elseif dest and #dest > 0 then - if x == "ACCEPT" then - return _("Accept forward") - elseif x == "REJECT" then - return _("Refuse forward") - elseif x == "NOTRACK" then - return _("Do not track forward") - else --if x == "DROP" then - return _("Discard forward") - end - else - if x == "ACCEPT" then - return _("Accept input") - elseif x == "REJECT" then - return _("Refuse input") - elseif x == "NOTRACK" then - return _("Do not track input") - else --if x == "DROP" then - return _("Discard input") - end - end -end - - -function opt_enabled(s, t, ...) - if t == luci.cbi.Button then - local o = s:option(t, "__enabled") - function o.render(self, section) - if self.map:get(section, "enabled") ~= "0" then - self.title = _("Rule is enabled") - self.inputtitle = _("Disable") - self.inputstyle = "reset" - else - self.title = _("Rule is disabled") - self.inputtitle = _("Enable") - self.inputstyle = "apply" - end - t.render(self, section) - end - function o.write(self, section, value) - if self.map:get(section, "enabled") ~= "0" then - self.map:set(section, "enabled", "0") - else - self.map:del(section, "enabled") - end - end - return o - else - local o = s:option(t, "enabled", ...) - o.default = "1" - return o - end -end - -function opt_name(s, t, ...) - local o = s:option(t, "name", ...) - - function o.cfgvalue(self, section) - return self.map:get(section, "name") or - self.map:get(section, "_name") or "-" - end - - function o.write(self, section, value) - if value ~= "-" then - self.map:set(section, "name", value) - self.map:del(section, "_name") - else - self:remove(section) - end - end - - function o.remove(self, section) - self.map:del(section, "name") - self.map:del(section, "_name") - end - - return o -end diff --git a/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm b/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm deleted file mode 100644 index 38f36b49c..000000000 --- a/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm +++ /dev/null @@ -1,90 +0,0 @@ -<%- - local fw = require "luci.model.firewall".init() - local izl = { } - local ezl = { } - local _, z - for _, z in ipairs(fw:get_zones()) do - if z:name() ~= "wan" then - izl[#izl+1] = z - end - if z:name() ~= "lan" then - ezl[#ezl+1] = z - end - end - - local keys, vals = { }, { } - luci.sys.net.ipv4_hints(function(ip, name) - keys[#keys+1] = ip - vals[#vals+1] = '%s (%s)' %{ ip, name } - end) --%> - -

<%:New port forward%>

-
-
-
<%:Name%>
-
<%:Protocol%>
-
<%:External zone%>
-
<%:External port%>
-
<%:Internal zone%>
-
<%:Internal IP address%>
-
<%:Internal port%>
-
-
-
-
- -
-
- -
-
- -
-
- -
-
- -
-
- 0, "data-choices", {keys, vals}) - %>/> -
-
- -
-
- -
-
-
- - diff --git a/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm b/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm deleted file mode 100644 index e0092a7a5..000000000 --- a/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm +++ /dev/null @@ -1,89 +0,0 @@ -<% - local fw = require "luci.model.firewall".init() - local zones = fw:get_zones() -%> - -<% if #zones > 0 then %> -

<%:Open ports on router%>

-
-
-
<%:Name%>
-
<%:Protocol%>
-
<%:External port%>
-
-
-
-
- -
-
- -
-
- -
-
- -
-
-
-<% end %> -<% if #zones > 1 then %> -

<%:New forward rule%>

-
-
-
<%:Name%>
-
<%:Source zone%>
-
<%:Destination zone%>
-
-
-
-
- -
-
- -
-
- -
-
- -
-
-
-<% else %> - -<% end %> - -<% if #zones > 0 then %> - -<% end %> diff --git a/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm b/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm deleted file mode 100644 index 0b4774ccc..000000000 --- a/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm +++ /dev/null @@ -1,59 +0,0 @@ -<% - local fw = require "luci.model.firewall".init() - local nw = require "luci.model.network".init() - local zones = fw:get_zones() - - local keys, vals, a, k, v = {}, {} - for k, v in ipairs(nw:get_interfaces()) do - for k, a in ipairs(v:ipaddrs()) do - keys[#keys+1] = a:host():string() - vals[#vals+1] = '%s (%s)' %{ a:host(), v:shortname() } - end - end -%> - -<% if #zones > 1 then %> -

<%:New source NAT%>

-
-
-
<%:Name%>
-
<%:Source zone%>
-
<%:Destination zone%>
-
<%:To source IP%>
-
<%:To source port%>
-
-
-
-
- -
-
- -
-
- -
-
- 0, "data-choices", { keys, vals }) - %> /> -
-
- -
-
- -
-
-
-<% else %> - -<% end %> diff --git a/luci-app-firewall/po/ca/firewall.po b/luci-app-firewall/po/ca/firewall.po deleted file mode 100644 index 10ce1ce5d..000000000 --- a/luci-app-firewall/po/ca/firewall.po +++ /dev/null @@ -1,940 +0,0 @@ -# luci-fw.pot -# generated from ./applications/luci-fw/luasrc/i18n/luci-fw.en.lua -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2014-06-17 09:40+0200\n" -"Last-Translator: Alex \n" -"Language-Team: LANGUAGE \n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s en %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s amb %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s en %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Entrada sense nom)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Regla sense nom)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(SNAT sense nom)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d paquets al %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s i limita a %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Acció" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Afegeix" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Afegeix i edita..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Ajusts avançats" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Permet el reenviament des dels zones d'origen:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Permet el reenviament als zones de destí:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Qualsevol" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Xarxes cobertes" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Regles personalitzades" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Les regles personalitzades us permet executar ordres del iptables arbitraris " -"que la infraestructura de tallafocs no cobreix d'altra manera. Aquests " -"ordres s'executen després de cada reinici de tallafocs, just després el " -"conjunt de regles per defecte s'ha carregat." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Adreça IP de destí" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Adreça de destí" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Port de destí" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Zona de destí" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "No reescriguis" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Descarta els paquets invàlids" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Habilita" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Habilita protecció contra la inundació SYN" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Habilita el registre d'aquesta zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Adreça IP extern" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Port extern" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Zona extern" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Paràmetres extres" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Tallafocs" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Tallafocs - Regles personalitzades" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Tallafocs - Reenviaments de port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Tallafocs - Regles de tràfic" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Tallafocs - Ajusts de zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Força el rastreig de connexió" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Reenvia" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Reenvia a" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Des de %s en %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Des de %s en %s amb origen %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Des de %s en %s amb orígens %s i %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Ajusts generals" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 i IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Només IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Només IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Entrada" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Reenviament interzonal" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Adreça IP interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Port intern" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Zona interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Limita els missatges de registre" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "Fixació MSS" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Mascarada" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Coincideix" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Coincideix amb el tipus ICMP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"Coincideix amb trànsit reenviat al port o rang de ports de destí donat." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Coincideix amb trànsit entrant dirigit al port o rang de ports de destí en " -"aquest host donat" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Coincideix amb trànsit entrant originant en el host client des del port o " -"rang de ports d'origen donat." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Nom" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Nova regla SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Nova regla de reenviament" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Nova regla d'entrada" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Nou reenviament de port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Nou origen NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Només coincideix amb trànsit entrant dirigit a la adreça IP donada." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Només coincideix amb trànsit entrant des d'aquests MAC." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Només coincideix amb trànsit entrant des d'aquest IP o rang." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Només coincideix amb trànsit originant en el host client des del port o del " -"rang de ports d'origen donat" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Obre els ports en el encaminador" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Altre..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Sortida" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "Passa paràmetres addicionals al iptables. Utilitzeu-ho amb cura!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Reenviaments de port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"El reenviament de ports permet que els ordinadors remots en el Internet " -"connectin a un ordinador o servei específic dins del LAN privat." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protocol" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "Redirigeix trànsit entrant coincidit al port donat en el host intern" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Redirigeix trànsit entrant coincidit al host intern especificat" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Restringeix la mascarada a les subxarxes de destí donades" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Restringeix la mascarada a les subxarxes d'origen donades" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Restringeix a la família d'adreces" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Reescriu el trànsit coincidint cap a la adreça donada." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Reescriu el trànsit coincidint cap al port d'origen donat. Pot ser deixat en " -"blanc per només reescriure l'adreça IP." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Reescriu a l'origen %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Reescriu als orígens %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "Adreça IP de SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Port SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Adreça IP d'origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Adreça MAC d'origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "NAT d'origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"El NAT d'origen és un forma específic de mascarada que permet control de gra " -"fi sobre l'IP d'origen utilitzat pel trànsit sortint, per exemple per " -"associar múltiples adreces WAN a subxarxes internes." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Adreça d'origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Port d'origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Zona d'origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"El tallafocs crea zones a les teves interfícies de xarxa per controlar el " -"flux de tràfic de xarxa." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Les opcions a sota controlen les polítiques de reenviament entre aquesta " -"zona (%s) i altres zones. Zones de destí cobreixen trànsit reenviat " -"originant des de %q. Zones d'origen coincideixen " -"amb trànsit reenviat des de altres zones apuntat a %q. La " -"regla de reenviament es unidirectional, per exemple un reenviament " -"de lan a wan no implica permís per reenviar de wan a lan també." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Aquesta pàgina us permet canviar propietats avançats de l'entrada de " -"reenviament de port. En la majoria dels casos no hi ha necessitat de " -"modificar aquests ajusts." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Aquesta pàgina us permet canviar propietats avançats de l'entrada de regla " -"de trànsit, com als hosts d'origen i de destí coincidits." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -#, fuzzy -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Aquesta secció defineix propietats comuns de %q. Les opcions entrada i sortida estableixen les polítiques per defecte per a trànsit " -"entrant i sortint aquesta zona mentre l'opció reenvia descriu la " -"política de trànsit reenviat entre xarxes distintes dins de la zona. " -"Xarxes cobertes especifica quines xarxes disponibles són membres " -"d'aquesta zona." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "A %s a %s en aquest dispositiu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "A %s en %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "A %s en aquest dispositiu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "A %s, %s en %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "A l'IP d'origen" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "Al port d'origen" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Regles de trànsit" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Les regles de trànsit defineixen polítiques per als paquets viatjant entre " -"zones distintes, per exemple per a rebutjar trànsit entre certs hosts o " -"obrir ports WAN en el encaminador." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Via %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Via %s a %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Podeu especificar múltiples per seleccionar \"-- personalitzat --\" i " -"llavors introduir protocols separats per espai." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zona %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Zona ⇒ Reenviaments" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zones" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "accepta" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "qualsevol" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "qualsevol host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "qualsevol IP d'encaminador" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "qualsevol zona" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "no rastregis" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "descarta" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "rebutja" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "trànsit" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/cs/firewall.po b/luci-app-firewall/po/cs/firewall.po deleted file mode 100644 index dce237825..000000000 --- a/luci-app-firewall/po/cs/firewall.po +++ /dev/null @@ -1,935 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-06-21 11:22+0200\n" -"Last-Translator: koli \n" -"Language-Team: none\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: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s v %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s s %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s v %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Nepojmenovaný vstup)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Nepojmenované pravidlo)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(Nepojmenovaný SNAT)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d paketů za %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d paketů za %s, burst %d paketů." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s a omezit na %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Akce" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Přidat" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Přidat a upravit" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Pokročilé nastavení" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Povolit přesměrování ze zdrojových oblastí:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Povolit přesměrování do zdrojových oblastí:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Libovolné" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Pokryté sítě" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Vlastní pravidla" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Vlastní pravidla vám umožňují spustit libovolné iptables příkazy, které " -"nejsou jinak pokryté frameworkem firewallu. Příkazy jsou spuštěny po každém " -"restartu firewallu, právě po načtení výchozí sady pravidel." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Cílová IP adresa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Cílová adresa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Cílový port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Cílová oblast" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Nepřepisovat" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Zahazovat neplatné pakety" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Povolit" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Povolit NAT Loopback" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Povolit ochranu proti SYN-flood" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Povolit logování v této oblasti" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Vnější IP adresa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Vnější port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Vnější zóna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Dodatečné argumenty" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Firewall - Vlastní pravidla" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Firewall - Přesměrování portů" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Firewall - Pravidla síťového provozu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Firewall - Nastavení zón" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Vynutit sledování připojení" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Přesměrování" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Přesměrovat na" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Z %s v %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Z %s v %s se zdrojovou %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Z %s v %s se zdrojovou %s a %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Obecné nastavení" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 a IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "pouze IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "pouze IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Vstup" - -# nebo mimo zóny? -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Přesměrování mezi zónami" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Vnitřní IP adresa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Vnitřní port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Vnitřní zóna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Omezit logovací zprávy" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "MSS clamping" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Maškárádování" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Shoda" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Odpovídá ICMP typu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "Vybrat provoz, přesměrovaný na zadaný port nebo rozsah portů" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Vybrat příchozí provoz, směrovaný na zadaný cílový port nebo rozsah portů " -"tohoto hostitele" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Vybrat příchozí provoz, pocházející ze zadaného portu nebo rozsahu portů " -"klienta." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Název" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Nové pravidlo SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Nové přesměrovací pravidlo" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Nové vstupní pravidlo" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Nové přesměrování portu" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Nový zdrojový NAT (SNAT)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Vybrat pouze příchozí provoz, směrovaný na danou IP adresu." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Vybrat pouze příchozí provoz z těchto MAC adres." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Vybrat pouze příchozí provoz z této IP nebo rozsahu IP adres." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Vybrat pouze příchozí provoz, pocházející ze zadaného portu nebo rozsahu " -"portů klienta." - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Otevřené porty na routeru" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Ostatní ..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Výstup" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "Předává další argumenty iptables. Používat opatrně!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Přesměrování portů" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"Přesměrování portů (port forwarding) umožňuje vzdáleným počítačům z " -"Internetu připojení k vybraným počítačům nebo službám uvnitř privátní sítě " -"LAN." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protokol" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Přesměrovat vybraný příchozí provoz na uvedený port vnitřního hostitele." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Přesměrovat vybraný příchozí provoz na uvedeného vnitřního hostitele." - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Omezit maškarádování na uvedené cílové podsítě" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Omezit maškarádování na uvedené zdrojové podsítě" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Omezit na rodinu adres" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Přepsat shodný provoz na uvedenou adresu." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Přepsat shodný provoz na uvedený zdrojový port. Může zůstat prázdné, pak " -"bude přepsána pouze IP adresa." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Přepsat na zdrojovou %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Přepsat na zdrojovou %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "IP adresa SNATu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Port SNATu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Zdrojová IP adresa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Zdrojová MAC adresa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "Zdrojový NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"Zdrojový NAT je specifická forma maškarádování, která umožňuje jemnozrnnou " -"kontrolu nad zdrojovými IP, použitými pro odchozí provoz. Využívá se " -"například pro mapování množství WAN adres do vnitřních podsítí." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Zdrojová adresa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Zdrojový port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Zdrojová zóna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"Firewall vytváří zóny přes vaše síťová rozhraní za účelem řízení síťového " -"provozu." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Níže uvedené možnosti řídí přesměrovací politiky mezi touto zónou (%s) a " -"ostatními zónami. Cílové zóny pokrývají přesměrovávaný provoz, " -"pocházející z %q. Zdrojové zóny porovnávají " -"přesměrovávaný provoz z ostatních zón, zaměřený na %q. " -"Přesměrovávací pravidlo je jednosměrné, například přesměrování z " -"lan do wan nepovoluje přesměrování z wan do lan (a naopak)." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Tato stránka vám umožňuje změnit pokročilé vlastností přesměrování portů. Ve " -"většině případů není potřeba upravovat tato nastavení." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Tato stránka vám umožňuje změnit pokročilé vlastnosti pravidla síťového " -"provozu, například zdrojové a cílové hostitele." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -#, fuzzy -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Tato sekce definuje běžné možnosti %q. Vstupní a výstupní " -"možnosti nastavují výchozí politiky pro provoz, vstupující do této zóny a " -"vystupující z ní, zatímco přesměrovací možnosti popisují politiku " -"pro přesměrování provozu mezi rozdílnými sítěmi uvnitř jedné zóny. " -"Pokryté sítě určuje, které z dostupných sítí jsou členy této zóny." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "Na %s v %s na tomto zařízení" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "Na %s v %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "Na %s na tomto zařízení" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "Na %s, %s v %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "Na zdrojovou IP" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "Na zdrojový port" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Pravidla síťového provozu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Pravidla síťového provozu definují politiky pro cestování paketů mezi " -"různými zónami, například pro odmítnutí provozu mezi jistými hostiteli nebo " -"pro otevření WAN portů na routeru." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Prostřednictvím %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Lze určit více protokolů. Vyberte \"-- vlastní --\" a vkládejte protokoly " -"oddělené mezerou." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zóna %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Zóna ⇒ Přesměrování" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zóny" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "přijmout" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "libovolný" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "libovolný hostitel" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "libovolná IP routeru" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "libovolná zóna" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "nesledovat" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "zahodit" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "odmítnout" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "provoz" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/de/firewall.po b/luci-app-firewall/po/de/firewall.po deleted file mode 100644 index ad0cc1f29..000000000 --- a/luci-app-firewall/po/de/firewall.po +++ /dev/null @@ -1,941 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2014-03-25 02:04+0200\n" -"Last-Translator: laryllian \n" -"Language-Team: LANGUAGE \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: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s in %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s mit %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s in %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Unbenannter Eintrag)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Unbenannte Regel)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(Unbennanter SNAT-Eintrag)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d Pkte. pro %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d Pkte. pro %s, Häufung %d Pkte." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s und limitieren auf %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Aktion" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Hinzufügen" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Hinzufügen und bearbeiten..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Erweiterte Einstellungen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Erlaube Weiterleitung von Quellzone:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Erlaube Weiterleitung zu Zielzone:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "beliebig" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Abgedeckte Netzwerke" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Benutzerdefinierte Regeln" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Benutzerdefinierte Regeln ermöglichen das Ausführen belieber iptables-" -"Befehle welche durch das Firewall-Framework nicht unterstützt werden. Die " -"Befehle werden mit jedem Firewall-Neustart abgearbeitet, direkt nach dem " -"Laden der Basisregeln." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Ziel IP-Adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Zieladresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Zielport" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Ziel-Zone" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Nicht umschreiben" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Ungültige Pakete verwerfen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Aktivieren" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "NAT-Loopback aktivieren" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Schutz vor SYN-flood-Attacken" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Protokollierung innerhalb der Zone aktivieren" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Externe IP-Adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Externer Port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Externe Zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Zusätzliche Argumente" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Firewall - Benutzerdefinierte Regeln" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Firewall - Portweiterleitungen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Firewall - Verkehrsregeln" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Firewall - Zoneneinstellungen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Connectiontracking erzwingen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Weitergeleitet" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Weiterleiten an" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Von %s in %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Von %s in %s mit Quell-%s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Von %s in %s mit Quell-%s und %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Allgemein" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 und IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "nur IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "nur IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Eingang" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Weiterleitungen zwischen Zonen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Interne IP-Adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Interner Port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Interne Zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Protokollnachrichten limitieren" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "MSS Korrektur" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "NAT aktivieren" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Filter" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Nach ICMP-Typ filtern" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "Selektiert weitergeleiteten Verkehr nach den angegebenen Ziel-Ports." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Eingehende Verbindungen filtern welche an den angegebenen Port oder " -"Portbereich auf dem lokalen Gerät gerichtet sind" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "Selektiert eingehenden Verkehr nach den angegebenen Quell-Ports." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Name" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Neue SNAT-Regel" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Neuer Weiterleitungsregel" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Neue Eingangsregel" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Neue Portweiterleitung" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Neues SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Selektiere nur Verkehr der an die angegebene IP-Adresse gerichtet ist." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Selektiere nur Verkehr von den angegebenen MAC-Adressen." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Selektiere nur Verkehr vom angebenem Quell-IP-Adressbereich." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "Selektiere nur Verkehr von den angegebenen Quell-Ports auf dem Client." - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Ports auf dem Router öffnen" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Anderes..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Ausgang" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" -"Gibt zusätzliche Kommandozeilenargumente an iptables weiter. Mit Vorsicht " -"benutzen!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Portweiterleitungen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"Portweiterleitungen ermöglichen es entfernten Rechnern im Internet auf " -"bestimmte Computer oder Dienste im lokalen LAN zuzugreifen." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protokoll" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Gefilterte Verbindungen an den angegeben Port auf dem internen Host " -"weiterleiten" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Gefilterte Verbindungen an den angegeben internen Host weiterleiten" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "NAT auf die angegebenen Ziel-Subnetze beschränken" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "NAT auf die angegebenen Quell-Subnetze beschränken" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Beschränke auf Adressfamilie" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Schreibe selektierten Verkehr auf die angegebene Quell-IP-Adresse um." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Schreibe selektierten Verkehr auf den angegebenen Qull-Port um. Kann leer " -"gelassen werden um nur die IP-Adresse umzuschreiben." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Schreibe um auf Quell-%s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Schreibe um auf Quell-%s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "SNAT-IP-Adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "SNAT-Port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Quell-IP-Adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Quell-MAC-Adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "Source NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"Source NAT ist eine spezifische From von NAT, welche volle Kontrolle über " -"die verwendete Quell-IP-Adresse für ausgehenden Verkehr zulässt, zum " -"Beispiel um mehrere WAN-IP-Adressen auf interne Subnetze abzubilden." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Quelladresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Quellport" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Quell-Zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"Die Firewall erstellt Netzwerkzonen über bestimmte Netzwerkschnittstellen um " -"den Netzverkehr zu trennen." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Die untenstehenen Optionen regeln die Verfahreinsweisen für Verkehr zwischen " -"dieser Zone (%s) und anderen Zonen. Ziel-Zonen decken " -"weitergeleiteten Verkehr von %q ab. Quell-Zonen " -"treffen auf weitergeleiteten Verkehr aus anderen Zonen zu, welcher " -"an %q gerichtet ist. Die Weiterleitung gilt nur in eine " -"Richtung, d.h. eine erlaubte Weiterleitung von LAN nach WAN impliziert " -"nicht zusätzlich die Erlaubnis, auch von WAN nach LAN " -"weiterzuleiten." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Diese Seite bietet Zugriff auf die erweiterten Eigenschaften der " -"Portweiterleitung. In den meisten Fällen ist es unnötig die Eigenschaften zu " -"ändern." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Diese Seite bietet Zugriff auf die erweiterten Eigenschaften der " -"Verkehrsregel, zum Beispiel die Selektion nach Quell- und Zieladressen." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -#, fuzzy -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Diese Sektion definiert allgemeine Eigenschaften der %q Zone. Die " -"Eingang und Ausgang Optionen regeln die Verfahrensweise " -"für Verkehr der in diese Zone eintritt oder diese verlässt. " -"Weitergeleitet trifft auf Verkehr zwischen verschiedenen " -"Schnittstellen innerhalb dieser Zone zu. Abgedeckte Netzwerke " -"definieren die Zugehörigkeit von Schnittstellen zu dieser Zone." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "Zu %s an %s auf diesem Gerät" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "Zu %s in %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "Zu %s auf diesem Gerät" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "Zu %s, %s in %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "Zu Quell-IP" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "Zu Quell-Port" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Verkehrsregeln" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Verkehrsregeln bestimmen den Fluss der Pakete zwischen verschiedenen Zonen, " -"zum Beispiel um Verkehr zwischen bestimmten Rechnern zu unterbinden oder um " -"WAN-Ports auf dem Router zu öffnen." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Über %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Über %s an %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Durch die Auswahl von \"-- benutzerdefiniert --\" könnene mehrere Werte " -"durch Leerzeichen getrennt angegeben werden." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zone %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Zone ⇒ Weiterleitungen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zonen" - -# Die richtige Übersetzung von ACCEPT im Firewallkontext ist nicht "Annehmen" sondern "Zulassen". Man kann ja keinen -# ausgehenden Verkehr annehmen. -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "zulassen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "beliebig" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "beliebiger Rechner" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "beliebige Router-IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "beliebige Zone" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "nicht verfolgen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "verwerfen" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "zurückweisen" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/el/firewall.po b/luci-app-firewall/po/el/firewall.po deleted file mode 100644 index 4fa25b9fe..000000000 --- a/luci-app-firewall/po/el/firewall.po +++ /dev/null @@ -1,905 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2012-03-31 15:40+0200\n" -"Last-Translator: Vasilis \n" -"Language-Team: LANGUAGE \n" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.4\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s με %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d πκτ. ανά %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Ενέργεια" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Προσθήκη" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Προσθήκη και επεξεργασία..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Ρυθμίσεις για προχωρημένους" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Οποιοδήποτε" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Προσαρμοσμένοι Κανόνες" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Διεύθυνση IP προορισμού" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Διεύθυνση προορισμού" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Θύρα προορισμού" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -#, fuzzy -msgid "Destination zone" -msgstr "Ζώνη προορισμού" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Αγνόηση μη-έγκυρων πακετών" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Ενεργοποίηση" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -#, fuzzy -msgid "Enable SYN-flood protection" -msgstr "Προστασία SYN-flood" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Εξωτερική διεύθυνση IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Εξωτερική θύρα" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Επιπλέον παράμετροι" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Τείχος προστασίας" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Τείχος προστασίας - Προσαρμοσμένοι Κανόνες" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Τείχος προστασίας - Προώθηση Θυρών" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Τείχος προστασίας - Κανόνες Κίνησεις" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Τείχος προστασίας - Ρυθμίσεις Ζώνης" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Επιβολή παρακολούθησης σύνδεσης" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Προώθηση" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Απο %s στο %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Γενικές Ρυθμίσεις" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 και IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Μόνο IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Μόνο IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Είσοδος" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -#, fuzzy -msgid "Internal IP address" -msgstr "Εσωτερική διεύθυνση" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -#, fuzzy -msgid "Internal port" -msgstr "Εξωτερική θύρα" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Εσωτερική ζώνη" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Περιορισμός καταγραφών συστήματος" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -#, fuzzy -msgid "MSS clamping" -msgstr "Περιορισμός MSS" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Όνομα" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Άλλο..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Έξοδος" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Προώθηση Θυρών" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Πρωτόκολλο" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -#, fuzzy -msgid "Source IP address" -msgstr "Διεύθυνση MAC πηγής" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -#, fuzzy -msgid "Source address" -msgstr "Διεύθυνση MAC πηγής" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Θύρα πηγής" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -#, fuzzy -msgid "Source zone" -msgstr "Θύρα πηγής" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"Το τείχος προστασίας δημιουργεί ζώνες πάνω στις διεπαφές δικτύου για να " -"ελέγχει την δικτυακή κίνηση." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Ζώνες" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "αποδοχή" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "αγνόηση" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "απόρριψη" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/en/firewall.po b/luci-app-firewall/po/en/firewall.po deleted file mode 100644 index 5c1e66d9d..000000000 --- a/luci-app-firewall/po/en/firewall.po +++ /dev/null @@ -1,932 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Action" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Destination address" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Destination port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Destination zone" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Drop invalid packets" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Enable SYN-flood protection" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "External port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "" - -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# Generated from applications/luci-fw/luasrc/model/cbi/luci_fw/zones.lua # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Forward" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Input" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Internal IP address" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Internal port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "MSS clamping" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Masquerading" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Name" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Output" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protocol" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Redirect matched incoming traffic to the given port on the internal host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Redirect matched incoming traffic to the specified internal host" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# Generated from applications/luci-fw/luasrc/model/cbi/luci_fw/rrule.lua # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# -# msgid "Traffic Redirection" -# msgstr "" -# -# msgid "" -# "Traffic redirection allows you to change the destination address of " -# "forwarded packets." -# msgstr "" -# -# msgid "Overview" -# msgstr "" -# -# msgid "Name" -# msgstr "" -# -# msgid "Source zone" -# msgstr "" -# -# msgid "Source MAC-address" -# msgstr "" -# -# msgid "Source port" -# msgstr "" -# -# msgid "Protocol" -# msgstr "" -# -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Source IP address" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Source address" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Source port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Source zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zones" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "accept" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "any" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "drop" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "reject" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/es/firewall.po b/luci-app-firewall/po/es/firewall.po deleted file mode 100644 index c7e9aa2bc..000000000 --- a/luci-app-firewall/po/es/firewall.po +++ /dev/null @@ -1,941 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2019-05-16 22:32-0300\n" -"Last-Translator: José Vicente \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: Poedit 2.2.2\n" -"Language-Team: \n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s en %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s con %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s en %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Entrada sin nombre)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Regla sin nombre)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(SNAT sin nombre)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d paquetes por %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" -"%d paquetes por %s, máximo %d paquetes." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s y limitar a %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "Aceptar reenvío" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "Aceptar entrada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "Aceptar salida" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Acción" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Añadir" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Añadir y editar..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Configuración avanzada" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Permitir reenvío desde zonas de origen:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Permitir reenvío a zonas de destino:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Cualquiera" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Redes cubiertas" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Reglas personalizadas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Las reglas personalizadas le permiten ejecutar comandos de iptables que no " -"están disponibles en el marco del firewall. Los comandos se ejecutarán tras " -"cualquier reinicio del FIrewall, justo tras haber cargado el conjunto de " -"reglas predeterminadas." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Dirección IP destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Dirección de destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Puerto de destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Zona de destino" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "Deshabilitar" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "Descartar reenvío" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "Descartar entrada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "Descartar salida" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "No reescribir" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "No seguir reenvío" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "No seguir entrada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "No seguir salida" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Descartar paquetes inválidos" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Habilitar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Habilitar bucle NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Habilitar protección contra inundaciones SYN" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Habilitar registro en esta zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "Característica experimental. No es totalmente compatible con QoS/SQM." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Dirección IP externa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Puerto externo" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Zona externa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Parámetros extra" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Firewall - Reglas personalizadas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Firewall - Reenvíos de puertos" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Firewall - Reglas de tráfico" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Firewall - Configuración de la zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Forzar seguimiento de conexión" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Reenviar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Reenviar a" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "Viernes" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Desde %s en %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Desde %s en %s con origen %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Desde %s en %s con origen %s y %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "Desde %s en este dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "Desde %s en este dispositivo con la fuente %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "De %s en este dispositivo con la fuente %s y %s" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Configuración general" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "Flow Offloading por hardware" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "IP" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "Rango de IP" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "IPs" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 e IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Sólo IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Sólo IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Entrada" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Reenvío entre zonas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Dirección IP interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Puerto interno" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Zona interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Limitar registro de mensajes" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "MAC" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "MACs" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "Fijado de MSS" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Enmascaramiento" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Coincidir" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Coincidir con tipo ICMP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "Coincidir con tráfico reenviado al puerto o rango de puertos destino." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Coincidir con tráfico de entrada dirigido al puerto o rango de puertos " -"destino en este host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Haga coincidir el tráfico entrante que se origina en el puerto de origen o " -"el rango de puertos en el host del cliente." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "Lunes" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "Días del mes" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Nombre" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Nueva regla SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Nueva regla de reenvío" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Nueva regla de entrada" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Nuevo reenvío de puerto" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Nuevo origen NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Coincidir sólo con tráfico de entrada a esta dirección IP." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Coincidir sólo con tráfico de entrada desde estas MACs." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Coincidir sólo con tráfico de entrada desde esta IP o rango." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Solo coincida con el tráfico entrante que se origina desde el puerto de " -"origen o el rango de puertos en el host del cliente" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Abrir puertos en el router" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Otros..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Salida" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "Zona de salida" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "Agrega más parámetros a iptables. ¡Utilice con cuidado!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Reenvíos de puertos" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"El reenvío de puertos permite a ordenadores remotos en internet conectar a " -"un ordenador o servicio específico en la LAN privada." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protocolo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Redirigir el tráfico de entrada que coincida al puerto dado en el host " -"interno" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" -"Redirigir el tráfico de entrada que coincida al host interno especificado" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "Rechazar reenvío" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "Rechazar entrada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "Rechazar salida" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" -"Requiere soporte de NAT por hardware. Implementado al menos para mt7621" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "Reiniciar Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Restringir enmascaramiento a las subredes destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Restringir enmascaramiento a las subredes origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Restringir a la familia de direcciones" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Reescribir el tráfico que coincida a estas direcciones." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Reescribir el tráfico que coincida con este puerto origen. Deje en blanco " -"para reescribir sólo la dirección IP." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Reescribir a origen %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Reescribir a origen %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "Enrutamiento/NAT Offloading" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "Regla deshabilitada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "Regla habilitada" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "Dirección IP SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Puerto SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "Sábado" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "Offloading basado en software para enrutamiento/NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "Flow Offloading por software" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Dirección IP origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Dirección MAC origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "Origen NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"Origen NAT es una forma específica de enmascaramiento que permite el control " -"fino del origen IP que se usa en el tráfico de salida por ejemplo para " -"dirigir múltiples direcciones WAN a las subredes internas." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Dirección de origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Puerto de origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Zona de origen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "Fecha de inicio (aaaa-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "Hora de inicio (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "Fecha de finalización (aaaa-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "Hora de finalización (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "Domingo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"El Firewall crea zonas sobre sus interfaces de red para controlar el flujo " -"del tráfico." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Estas opciones controlan las políticas de reenvío entre esta zona (%s) y " -"otras. Las zonas de origen cubren el tráfico reenviado desde " -"%q. Las zonas origen coinciden con el tráfico " -"reenviado desde otras zonas dirigido a %q. La regla de " -"reenvío es unidireccional, por ejemplo una regla de reenvío desde " -"la LAN a la WAN no implica permiso para reenviar desde la WAN a la " -"LAN también." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Propiedades avanzadas de la entrada \"reenvío de puertos\". No suele ser " -"necesario modificar esta configuración." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Esta página le permite cambiar las propiedades avanzadas de la entrada de la " -"regla de tráfico, como los hosts de origen y destino coincidentes." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Esta sección define propiedades comunes de %q. Las opciones de entrada y la salida marcan las políticas por defecto para el tráfico " -"que entra y deja esta zona mientras que la opción reenvío describe " -"la política para tráfico reenviado desde diferentes redes en la zona. " -"Redes cubiertas especifican qué redes disponibles son miembros de " -"esta zona." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "Jueves" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "Tiempo en UTC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "A %s en %s por este dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "A %s en %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "A %s por este dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "A %s, %s en %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "A IP origen" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "A puerto origen" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Reglas de tráfico" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Las reglas de tráfico definen políticas para los paquetes que viajan entre " -"diferentes zonas, por ejemplo, para rechazar el tráfico entre ciertos hosts " -"o para abrir puertos WAN en el enrutador." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "Martes" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "SNAT sin nombre" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "Reenvío sin nombre" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "Regla sin nombre" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Vía %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Vía %s a %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "Miércoles" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "Días de la semana" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Puede poner varios seleccionando \"-- personalizado --\" e introduciendo los " -"protocolos separados por espacio." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zona %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Zona ⇒ Reenvíos" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zonas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "Aceptar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "cualquiera" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "cualquier host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "cualquier router IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "cualquier zona" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "Día" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "No seguir" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "Descartar" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "Hora" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "Minuto" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "No" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "Puerto" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "Puertos" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "Rechazar" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "segundo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "Tráfico" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "Tipo" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "Tipos" diff --git a/luci-app-firewall/po/fr/firewall.po b/luci-app-firewall/po/fr/firewall.po deleted file mode 100644 index ac136a59b..000000000 --- a/luci-app-firewall/po/fr/firewall.po +++ /dev/null @@ -1,959 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2013-02-26 00:44+0200\n" -"Last-Translator: val56 \n" -"Language-Team: French\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: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Action" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Paramètres avancés" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Permettre la transmission des zones source :" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Permettre la transmission vers les zones destination :" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "N'importe lequel" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Réseaux couverts" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Régles spécifiques" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Adresse IP de destination" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Adresse de destination" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Port de destination" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Zone de destination" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Supprimer les paquets invalides" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Activer" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Activer le NAT sur la boucle-locale" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Activer la protection contre le SYN-flood" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Activer les traces (logs) sur cette zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Adresse IP externe" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Port externe" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Zone externe" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "" - -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# applications/luci-fw/luasrc/model/cbi/luci_fw/zones.lua # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Pare-feu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Pare-feu -- Règles personnalisées" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Pare-feu -- Redirections de ports" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Pare-feu -- Règles de trafic" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Pare-feu - Configuration des zones" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Forcer le suivi des connexions" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Transfert" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Transférer à" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Paramètres généraux" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 et IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "IPv4 seulement" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "IPv6 seulement" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Entrée" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Transmission entre zones" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Adresse IP interne" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Port interne" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Zone interne" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Limiter les messages de journalisation" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "Contrainte du MSS" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Masquage" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Type ICMP correspondant" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Prendre en compte le trafic dirigé vers le port de destination donné (ou la " -"gamme de ports) sur cet hôte" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Nom" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Nouvelle règle SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Nouvelle règle d'entrée" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Nouvelle redirection de port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Nouvelle source NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Montrer seulement le trafic entrant provenant de ces adresses MAC." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Ports ouverts sur le routeur" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Autre..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Sortie" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Redirections de port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"La redirection de port permet aux ordinateurs distants sur Internet, de se " -"connecter à un ordinateur ou service spécifié dans le réseau local privé." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protocole" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Rediriger le trafic entrant correspondant vers le port donné sur l'hôte " -"interne" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Rediriger le trafic entrant correspondant vers l'hôte interne spécifié" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" -"Restreindre la substitution d'adresses (Masquerade) à ces sous-réseaux " -"destinataires" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" -"Restreindre la substitution d'adresses (Masquerade) à ces sous-réseaux " -"sources" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Restreindre à cette famille d'adresses" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "Adresse IP SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Port SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# applications/luci-fw/luasrc/model/cbi/luci_fw/rrule.lua # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# -# msgid "Traffic Redirection" -# msgstr "" -# -# msgid "" -# "Traffic redirection allows you to change the destination address of " -# "forwarded packets." -# msgstr "" -# -# msgid "Overview" -# msgstr "" -# -# msgid "Name" -# msgstr "" -# -# msgid "Source zone" -# msgstr "" -# -# msgid "Source MAC-address" -# msgstr "" -# -# msgid "Source port" -# msgstr "" -# -# msgid "Protocol" -# msgstr "" -# -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Adresse IP source" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Adresse MAC source" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "Source NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Adresse source" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Port source" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Zone source" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"Le pare-feu crée des zones sur les interfaces réseau pour contrôler le flux " -"du trafic réseau." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Les options ci-dessous contrôlent les politiques de transmission entre cette " -"zone (%s) et les autres zones. Zones de destination couvre le " -"trafic transfmis venant de %q. Zones source " -"correspond au trafic transféré d'autres zones à destination de %q. La règle de transmission est unidirectionnelle, la " -"transmission du LAN au WAN n'implique pas également l'autorisation " -"de transmission du WAN au LAN." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Cette page vous permet de modifier les propriétés avancées parmi les entrées " -"de redirection de port. Dans la plupart des cas, cela n'est pas nécessaire " -"de modifier ces paramètres." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -#, fuzzy -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Cette section définit des propriétés communes de %q. Les options entrée et sortie définissent les politiques par défaut pour le trafic " -"entrant et sortant de cette zone, tandis que l'option transmission " -"décrit la politique pour le trafic transmis entre différents réseaux dans " -"cette zone. Les réseaux couverts indiquent quels réseaux " -"disponibles sont membre de cette zone." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Règles de trafic" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zone %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Zone ⇒ Transmissions" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zones" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "accepter" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -#, fuzzy -msgid "any" -msgstr "tous" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "ignorer" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "rejeter" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/he/firewall.po b/luci-app-firewall/po/he/firewall.po deleted file mode 100644 index 7878ee553..000000000 --- a/luci-app-firewall/po/he/firewall.po +++ /dev/null @@ -1,890 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\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-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/hu/firewall.po b/luci-app-firewall/po/hu/firewall.po deleted file mode 100644 index 4f8a78305..000000000 --- a/luci-app-firewall/po/hu/firewall.po +++ /dev/null @@ -1,942 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-01-31 16:54+0200\n" -"Last-Translator: Gabor \n" -"Language-Team: none\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: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s %s-ban" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s %s-el" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s %s-ben" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Névtelen bejegyzés)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Névtelen szabály)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(Névtelen SNAT)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d csomag/%s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d csom. %s-enként, burst %d csom." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s és korlátozás %s-re" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Művelet" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Hozzáadás" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Hozzáadás és szerkesztés..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Haladó beállítások" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Továbbítás engedélyezése ezekből a forrás zónákból:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Továbbítás engedélyezése ezekbe a cél zónákba:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Bármelyik" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Lefedett hálózatok" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Egyéni szabályok" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Az egyedi szabályok lehetővé teszik tetszőleges iptables parancsok " -"futtatását melyekre a tűzfal keretrendszer egyébként nem biztosít " -"lehetőséget. A parancsok a tűzfal minden újraindításakor futtatásra " -"kerülnek, közvetlenül az alapértelmezett szabálykészletek betöltése után." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Cél IP-cím" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Cél cím" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Cél port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Cél zóna" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Ne írja felül" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Érvénytelen csomagok eldobása" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Engedélyezés" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "NAT visszacsatolás engedélyezése" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "SYN-flood védelem engedélyezése" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Naplózás engeélyezése ezen a zónán" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Külső IP cím" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Külső port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Külső zóna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "További argumentumok" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Tűzfal" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Tűzfal - Egyéni szabályok" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Tűzfal - Port továbbítások" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Tűzfal - Forgalmi szabályok" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Tűzfal - Zóna beállítások" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Kapcsolat követés kényszerítése" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Továbbítás" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Továbbítás ennek" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "%s felől %s-ben" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "%s felől %s-ben %s forrással" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "%s felől %s-ben %s és %s forrással" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Általános beállítások" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 és IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "csak IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "csak IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Bemenet" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Zónák-közötti továbbítás" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Belső IP cím" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Belső port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Belső zóna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Napló üzenetek korlátozása" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "MSS clamping engegélyezése" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Álcázás" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Szűrés" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Szűrés ICMP típus alapján" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"Továbbított forgalom szűrése a megadott cél port, vagy port tartomány " -"szerint." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Adott portra vagy port tartományra irányított bejövő forgalom szűrése ezen a " -"gépen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Az ügyfél gép megadott portjáról, vagy port tartományából indított forgalom " -"szűrése. " - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Név" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Új SNAT szabály" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Új továbbítási szabály" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Új bemeneti szabály" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Új port továbbítás" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Új forrás NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Csak a megadott IP címre irányított bejövő forgalmat egyeztesse." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Csak a megadott MAC címekről érkező bejövő forgalmat egyeztesse." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" -"Csak a megadott IP címről illetve IP címtartományból érkező bejövő forgalmat " -"egyeztesse." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Csak az ügyfél gép megadott forrás portjáról illetve forrás port " -"tartományába tartozó portról indított bejövő forgalmat egyeztesse." - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Port megnyitása a routeren" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Egyéb..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Kimenet" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" -"További argumentumok küldése az iptables részére. Használja körültekintően!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Port továbbítás" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"A port továbbítás lehetővé teszi az interneten lévő távoli számítógépeknek a " -"privát helyi hálózat bizonyos számítógépéhez vagy szolgáltatásához történő " -"csatlakozását." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protokoll" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "Átirányítja az egyező bejövő forgalmat a belső gép megadott portjához" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Átirányítja az egyező bejövő forgalmat a megadott belső géphez" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Álcázás korlátozása a megadott cél alhálózatokra" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Álcázás korlátozása a megadott forrás alhálózatokra" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Korlátozás cím családra" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Az összeíllő forgalom átírása a megadott címre." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Az összeillő forgalom átírása a megadott forrás portra. Amennyibe üresen van " -"hagyva, csak az IP cím kerül átírásra." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Átírás %s forrásra" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Átírás %s, %s forrásra" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "SNAT IP cím" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "SNAT port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Forrás IP cím" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Forrás MAC cím" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "Forrás NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"A forrás NAT az álcázás olyan speciális formája, mely lehetővé teszi a " -"kimenő forgalomhoz használt forrás IP címek aprólékos szabályozását, például " -"több WAN cím hozzárendelését a belső alhálózatokhoz." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Forrás cím" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Forrás port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Forrás zóna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"A tűzfal zónákat határoz meg a hálózati interfészek fölött a hálózati " -"forgalom áramlásának szabályozására." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Az alábbi beállítások vezérlik a továbbítási irányelveket a jelenlegi zóna " -"(%s) és a többi zóna között. A cél zónák fedik le a továbbított " -"forgalmat amelynek forrása %q. A forrás zónák " -"szűrik a továbbított forgalmat más zónákból melynek célja %q. A továbbítási szabály egyirányú, tehát pl. egy továbbítás " -"LAN-ból WAN-ba nem jelenti azt, hogy a továbbítás WAN-ból LAN-ba is " -"engedélyezett." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Ez a lap lehetővé teszi a port továbbítási bejegyzések speciális " -"tulajdonságainak módosítását. A legtöbb esetben ezeknek a beállításoknak a " -"módosítása nem szükséges." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Ez a lap lehetővé teszi a forgalmi szabály bejegyzés speciális " -"tulajdonságainak módosítását, mint a forrás- és célgépek megfeleltetése." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -#, fuzzy -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Ez a rész a(z) %q általános beállításait határozza meg. A bejövő és " -"kimenő beállítások határozzák meg a zónába be- és kilépő forgalom " -"alapértelmezett szabályait, míg a továbbítási beállítás a különböző " -"hálózatok közötti forgalomtovábbítás szabályát írja le a zónán belül. A " -"lefedett hálózatok adják meg, hogy mely elérhető hálózatok tagjai " -"ennek a zónának." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "%s-re %s-nél a eszközön" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "%s-re %s-ben" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "%s-re a eszközön" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "%s-re, %s %s-ben" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "Forrás IP-re" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "Forrás portra" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Forgalmi szabályok" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"A forgalmi szabályok a különböző zónák között utazó csomagokra vonatkozó " -"házirendet határozzák meg, például bizonyos gépek közötti forgalom " -"megakadályozához vagy WAN portok megnyitásához a routeren." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "%s-en át" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "%s-en át %s-nél" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Az \"-- egyéni --\" lehetőség választásával több protokoll megadása " -"lehetséges egymástól szóközzell elválasztva." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zóna %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Zóna ⇒ Továbbítások" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zónák" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "elfogadás" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "bármelyik" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "bármelyik gép" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "bármelyik router IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "bármelyik zóna" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "ne kövesse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "eldobás" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "visszautasítás" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/it/firewall.po b/luci-app-firewall/po/it/firewall.po deleted file mode 100644 index 406414857..000000000 --- a/luci-app-firewall/po/it/firewall.po +++ /dev/null @@ -1,958 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2017-09-02 23:05+0200\n" -"Last-Translator: bubu83 \n" -"Language-Team: LANGUAGE \n" -"Language: it\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.4\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s con %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s e limita a %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Azione" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Aggiungi" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Aggiungi e modifica..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Opzioni Avanzate" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Permetti routing da zone di origine:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Permetti rounting a zone di destinazione:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Qualsiasi" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Reti coperte" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Regole Personalizzate" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Le regole personalizzate ti permettorno di eseguire comandi iptables " -"arbitrari che non sono altrimenti coperti dall'applicazione firewall. I " -"comandi sono eseguiti dopo ogni riavvio del firewall, giusto dopo le altre " -"regole che sono state caricate." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Indirizzo IP destinazione" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Indirizzo di destinazione" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Porta di destinazione" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Zona di destinazione" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Non riscrivere" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Scarta pacchetti invalidi" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Attiva" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Attiva NAT Loopback" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Attiva protezione SYN-flood" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Attiva registro su questa zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Indirizzo IP Esterno" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Porta Esterna" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Zona Esterna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Comandi extra" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Firewall - Regole Personalizzate" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Firewall - Inoltro Porte" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Firewall - Regole Traffico" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Firewall - Opzioni delle Zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Forza tracciamento connessione" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Inoltra" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Inoltra a" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "Venerdì" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Da %s a %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Da %s a %s con sorgente %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Da %s a %s con sorgente %s e %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Opzioni Generali" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 e IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Solo IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Solo IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Ingresso" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Inoltro tra le zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Indirizzo IP interno" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Porta interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Zona Interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Limita messaggi del registro" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Corrispondenza" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Corrispondenza tipo ICMP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "Corrispondi traffico inoltrato alla porta o intervallo di porte dato." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Corrispondi traffico in entrata diretto alla porta o intervallo di porte " -"dato su questo host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Corrispondi traffico in entrata originato dalla porta o intervallo di porte " -"dato su host cliente" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "Lunedì" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "Giorni del Mese" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Nome" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Nuova regola SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Nuova regola di inoltro" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Nuova regola di ingresso" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Nuova porta di inoltro" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Nuova sorgente NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Corrispondi solo traffico in entrata diretto al dato indirizzo IP." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Corrispondi solo traffico in entrata da questi MAC." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Corrispondi solo traffico in entrata da questo IP o intervallo." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Corrispondi solo traffico in entrata originato dalla porta o intervallo di " -"porte sorgenti su host cliente" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Porte aperte sul router" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Altri..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "Passa comandi addizionali a iptables. Usare con cura!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Inoltri Porta" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"L'inoltro delle porte permette ai computer in remoto su Internet di " -"connettersi a uno specifico computer o servizio presente nella LAN privata" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protocollo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "Reindirizza il traffico in entrata alla porta data su host interno" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Reindirizza il traffico in entrata allo specifico host interno" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "Riavvia Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Limita il Masquerading alle subnet di destinazione date" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Limita il Masquerading alle subnet sorgente date" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Limita agli indirizzi famiglia" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Riscrivi il traffico verso l'indirizzo dato." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Riscrivi il traffico corrispondente alla porta sorgente data. Può essere " -"lasciato vuoto per riscrivere solo l'indirizzo IP." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Riscrivi alla sorgente %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Riscrivi alla sorgente %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "Indirizzo IP SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Porta SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "Sabato" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# Generated from applications/luci-fw/luasrc/model/cbi/luci_fw/rrule.lua # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# msgid "Traffic Redirection" -# msgstr "" -# msgid "" -# "Traffic redirection allows you to change the destination address of " -# "forwarded packets." -# msgstr "" -# msgid "Overview" -# msgstr "" -# msgid "Name" -# msgstr "" -# msgid "Source zone" -# msgstr "" -# msgid "Source MAC-address" -# msgstr "" -# msgid "Source port" -# msgstr "" -# msgid "Protocol" -# msgstr "" -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Indirizzo IP di origine" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Indirizzo MAC di origine" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "NAT di origine" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"La sorgente NAT è una forma specifica di masquerading che consente un " -"controllo preciso sull'IP sorgente usato per il traffico in uscita, per " -"esempio per mappare indirizzi WAN multipli verso le subnet interne." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Indirizzo di origine" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Porta di origine" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Zona di origine" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "Data di Inizio (yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "Ora di Inizio (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "Data di Stop (yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "Ora di Stop (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "Domenica" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"Il firewall crea delle zone nelle tue interfacce di rete per controllare il " -"flusso del traffico." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Queste opzioni controllano le regole di inoltro tra questa zona (%s) e altre " -"zone. Le zone di destinazione coprono il traffico inoltrato " -"originato da %q. Le zone di origine corrispondono " -"il traffico inoltrato da altre zone che puntano a %q. La " -"regola di inoltro è unidirezionale, esempio: un inoltro dalla lan " -"alla wan non implica anche un permesso da inoltrare dalla wan alla " -"lan." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Questa pagina ti consente di cambiare le opzioni avanzate della voce porta " -"di inoltro. Nella maggioranza dei casi non serve modificare queste " -"impostazioni." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Questa pagina ti consente di cambiare le opzioni avanzate della voce regola " -"del traffico, come la sorgente corrispondente e gli host di destinazione." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Questa sezione definisce le proprietà comuni di %q. Le opzioni " -"diingresso e uscita definiscono le regole di default per " -"il traffico in entrata e uscita di questa zona mentre l'opzione di " -"inoltro descrive il metodo per il traffico inoltrato tra reti " -"differenti nella zona. Le reti coperte specificano quali reti " -"disponibili sono membri di questa zona." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "Giovedì" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "Orario in UTC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "Verso %s a %s su questo dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "Verso %s in %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "Verso %s su questo dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "Verso %s, %s in %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "Verso IP sorgente" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "Verso la porta sorgente" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Regole di Traffico" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Le regole del traffico definiscono il metodo per il viaggio dei pacchetti " -"tra zone differenti, per esempio per rifiutare il traffico tra certi host o " -"per aprire porte WAN sul router." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "Martedì" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Via %s a %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "Mercoledì" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "Giorni della Settimana" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Puoi specificare multipli selezionando \"-- custom --\" e poi inserendo i " -"protocolli separati da uno spazio." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zona %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Zona ⇒ Inoltri" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "accetta" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "qualsiasi" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "qualsiasi host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "qualsiasi router IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "qualsiasi zona" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "non tracciare" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "scarta" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "rifiuta" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "traffico" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/ja/firewall.po b/luci-app-firewall/po/ja/firewall.po deleted file mode 100644 index dda7c2ea5..000000000 --- a/luci-app-firewall/po/ja/firewall.po +++ /dev/null @@ -1,975 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2018-06-30 23:19+0900\n" -"Last-Translator: INAGAKI Hiroshi \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: Poedit 2.0.7\n" -"Language-Team: \n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s (%s)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s ,%s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s (%s)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(名前設定の無いエントリー)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(名前設定の無いルール)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(名前設定の無いSNAT)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d パケット / %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" -"%d パケット / %s, バースト %d パケット" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s, %s を上限に設定" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "転送を許可" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "入力を許可" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "出力を許可" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "動作" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "追加" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "追加及び編集..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "詳細設定" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "送信元ゾーンからの転送を許可する:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "宛先ゾーンへの転送を許可する:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "全て" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "対象ネットワーク" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "手動設定ルール" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"手動設定ルールの設定では、ファイアウォールの設定画面ではサポートされていない" -"ような、任意のiptablesコマンドを実行することが可能です。これらの任意のコマン" -"ドは、ファイアウォール機能の起動ごとに、標準のルールが読み込まれた後に実行さ" -"れます。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "宛先IPアドレス" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "宛先アドレス" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "宛先ポート" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "宛先ゾーン" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "無効" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "転送を破棄" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "入力を破棄" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "出力を破棄" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "リライトしない" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "転送を追跡しない" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "入力を追跡しない" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "出力を追跡しない" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "無効なパケットを遮断する" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "有効" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "NATループバックを有効にする" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "SYN-Floodプロテクションを有効にする" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "このゾーンのログ記録を有効にする" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "実験的な機能です。 QoS/SQM との完全な互換性はありません。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "外部IPアドレス" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "外部ポート" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "外部ゾーン" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "追加設定" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "ファイアウォール" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "ファイアウォール - 手動設定ルール" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "ファイアウォール - ポートフォワーディング" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "ファイアウォール - トラフィック・ルール" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "ファイアウォール - ゾーン設定" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "強制的にコネクション追跡を行う" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "転送" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "転送先" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "金曜日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "送信元 %s (%s)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "送信元 %s (%s) , %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "送信元 %s (%s) , %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "送信元 %s (デバイス)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "送信元 %s, %s (デバイス)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "送信元 %s, %s, %s (デバイス)" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "一般設定" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "ハードウェア フローオフロード" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "IP" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "IP の範囲" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4及びIPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "IPv4のみ" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "IPv6のみ" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "受信" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "内部ゾーン転送" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "内部IPアドレス" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "内部ポート" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "内部ゾーン" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "ログメッセージを制限" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "MAC" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "MAC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "MSSクランプ" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "マスカレード" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "対象" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "ICMPタイプの一致" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"設定された宛先ポート(またはポート範囲)に一致した転送トラフィックが対象になり" -"ます" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"設定された宛先ポート(またはポート範囲)に一致した受信トラフィックが対象になり" -"ます" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"設定されたクライアントホストの送信元ポート(またはポート範囲)からの受信トラ" -"フィックと一致したトラフィックが対象になります。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "月曜日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "月間" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "名前" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "SNATルールの新規作成" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "転送ルールの新規作成" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "受信ルールの新規作成" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "転送設定の新規作成" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "SNATルールの新規作成" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "設定された宛先IPアドレスと一致した受信トラフィックが対象になります。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "設定されたMACアドレスと一致した受信したトラフィックが対象になります。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" -"設定されたIPアドレス (または範囲) と一致した受信したトラフィックが対象になり" -"ます。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"設定されたクライアントホストの送信元ポート(またはポート範囲)からの受信トラ" -"フィックと一致したトラフィックのみを対象にします。" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "ポートの開放" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "その他のプロトコル" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "送信" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "出力ゾーン" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" -"iptablesにパススルーする追加の引数を設定してください。ただし、注意して設定し" -"てください!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "ポートフォワーディング" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"ポートフォワーディングは、インターネット上のリモートコンピュータから、プライ" -"ベートなネットワーク上の、特定のコンピュータやサービスへのアクセスを可能にし" -"ます。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "プロトコル" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"ルールに一致した受信トラフィックを、内部ホストの設定されたポートへ転送します" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "ルールに一致した受信トラフィックを、設定された内部ホストへ転送します" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "転送を拒否" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "入力を拒否" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "出力を拒否" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" -"ハードウェア NAT サポートが必要です。 mt7621 のみにおいて実装されています。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "ファイアウォールの再起動" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "設定された宛先サブネットへのマスカレードを制限する" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "設定された送信元サブネットへのマスカレードを制限する" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "アドレスファミリの制限" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" -"ルールに一致したトラフィックの送信元アドレスを設定した値にリライトします。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"ルールに一致したトラフィックの送信元ポートを設定した値にリライトします。空欄" -"にした場合、IPアドレスのみを書き直します。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "送信元 %s にリライト" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "送信元 %s, %s にリライト" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "ルーティング/NAT オフロード" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "ルールは無効です" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "ルールは有効です" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "SNAT IPアドレス" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "SNAT ポート" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "土曜日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "ルーティング/NAT のための、ソフトウェアベースのオフロードです。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "ソフトウェア フローオフロード" - -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# Generated from applications/luci-fw/luasrc/model/cbi/luci_fw/rrule.lua # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# -# msgid "Traffic Redirection" -# msgstr "" -# -# msgid "" -# "Traffic redirection allows you to change the destination address of " -# "forwarded packets." -# msgstr "" -# -# msgid "Overview" -# msgstr "" -# -# msgid "Name" -# msgstr "" -# -# msgid "Source zone" -# msgstr "" -# -# msgid "Source MAC-address" -# msgstr "" -# -# msgid "Source port" -# msgstr "" -# -# msgid "Protocol" -# msgstr "" -# -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "送信元IPアドレス" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "送信元MACアドレス" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "送信元NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"送信元NAT設定は、複数のWANアドレスを内部のサブネットにマッピングするような、" -"出力トラフィックに対する送信元IPアドレスのきめ細かい制御を行うマスカレードの" -"設定フォームです。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "送信元アドレス" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "送信元ポート" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "送信元ゾーン" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "開始日 (yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "開始時刻 (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "停止日 (yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "停止時刻 (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "日曜日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"ファイアウォール機能は、各ネットワークインターフェース上にゾーンを作成してト" -"ラフィックの制御を行います。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"下記の設定は、このゾーン (%s)とその他のゾーン間の転送ポリシーを制御します。" -"宛先ゾーンへの転送 は、%q から転送されたトラフィッ" -"クに対して転送を許可します。 送信元ゾーンからの転送 は、別のゾーンか" -"ら%qへ の転送を許可します。トラフィック転送設定は、一方" -"向であり、例えばlanからwanへの転送設定は、wanからlanへの転送を許可し" -"ません。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"このページでは、各転送ルールの詳細設定を行うことができます。ただし、ほとんど" -"のケースは、これらの設定を変更する必要はありません。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"このページでは、各トラフィックルールの送信元・宛先ホストの設定などの詳細設定" -"を行うことができます。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"このセクションでは、%sの標準的な動作を設定します。受信及び送信オプションは、このゾーンに対して入出力するトラフィックに対する標準のポリ" -"シーを設定し、転送オプションは、ゾーン間の転送トラフィックに対する標" -"準のポリシーになります。対象ネットワークは、どのネットワーク設定がこ" -"のゾーンに属するかを設定します。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "木曜日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "UTC時刻を使用" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "宛先 %s, %s (デバイス)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "宛先 %s (%s)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "宛先 %s (デバイス)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "宛先 %s, %s (%s)" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "変換後送信元IP" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "変換後送信元ポート" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "トラフィック・ルール" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"トラフィック・ルールの設定では、ゾーン間を行き来するパケットのポリシーを設定" -"します。例えば、特定のホスト間や、ルーターのWANポートへのトラフィックの拒否を" -"設定することができます。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "火曜日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "名称未設定の SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "名称未設定の転送" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "名称未設定のルール" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "経由 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "経由 %s , %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "水曜日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "曜日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"\"-- 手動設定 --\"を選択し、プロトコルをスペースで区切って入力することで複数" -"のプロトコルを指定することができます。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "ゾーン %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "ゾーン ⇒ 転送" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "ゾーン" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "許可" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "全て" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "全てのホスト" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "全てのルーターIP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "全てのゾーン" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "コネクション追跡を行わない" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "破棄" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "時間" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "分" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "ポート" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "ポート" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "拒否" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "秒" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "トラフィック" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "タイプ" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "タイプ" diff --git a/luci-app-firewall/po/ko/firewall.po b/luci-app-firewall/po/ko/firewall.po deleted file mode 100644 index 2d8cbbf43..000000000 --- a/luci-app-firewall/po/ko/firewall.po +++ /dev/null @@ -1,924 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2012-11-14 17:32+0200\n" -"Last-Translator: Weongyo Jeong \n" -"Language-Team: LANGUAGE \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: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s ,%s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "추가 후 수정..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Source zone 로부터의 forward 허용:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Destination zone 으로 forward 허용:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Custom Rule" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Custom rule 은 방화벽 UI 로 해결이 되지 않는 임의의 iptables 명령을 실행할 " -"수 있도록 합니다. 입력된 명령어들은 매 방화벽 재시작시 실행되는데 default " -"ruleset 이 load 된 후 시점입니다." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Destination IP 주소" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Destination 주소" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "활성화" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "NAT Loopback 활성화" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "SYN-flood protection 활성화" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "zone 의 logging 활성화" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "외부 IP 주소" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "외부 port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "외부 zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "추가 argument" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "방화벽" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "방화벽 - Custom Rules" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "방화벽 - Port Forwards" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "방화벽 - Traffic Rules" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "방화벽 - Zone 설정" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "금요일" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "내부 IP 주소" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "내부 port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "내부 zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "월요일" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "이름" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "새로운 SNAT rule" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "새로운 forward rule" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "새로운 input rule" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "새로운 port forward" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "새로운 source NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "iptables 명령에 추가 인자들을 더합니다. 조심해 사용하세요!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Port Forward" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"Port forwarding 기능은 인터넷 상의 원격 컴퓨터가 내부 LAN 에 속한 특정 컴퓨터" -"나 서비스에 접속할 수 있도록 합니다." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "주어진 destination subnet 으로 Masquerading 제한" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "주어진 source subnet 으로 Masquerading 제한" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Address family 제한" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "토요일" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Source IP 주소" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Source MAC 주소" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"Source NAT 기능은 masquerading 의 한 형태로써 outgoing 트래픽이 사용할 " -"source IP 를 세밀하게 제어할 수 있습니다. 예를 들어 다수의 WAN 주소들을 내" -"부 subnet 에 매핑(mapping) 할 경우 사용됩니다." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Source 주소" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "시작 날짜 (yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "시작 시간 (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "종료 날짜 (yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "종료 시간 (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "일요일" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"방화벽 기능을 이용하여 네트워크 인터페이스와 연결된 zone 을 생성할 수 있고 이" -"를 이용하여 네트워크 traffic flow 를 제어할 수 있습니다." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"이 zone (%s) 과 다른 zone 들 사이의 forwarding 정책을 제어하는 옵션들입니다. " -"Destination zones%q 에서 출발한 forward " -"traffic 을 뜻하고, Source zones 은 다른 zone 들에서 %q 로 전" -"달되는 forward traffic 을 뜻합니다. Forwarding rule 은 " -"unidirectional 인데, 예를 들어 LAN 에서 WAN 으로의 forward 규칙이 " -"WAN 에서 LAN 으로의 forward 를 허락하는 것이 아닙니다." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"이 메뉴에서는 port forwarding 의 고급 설정 정보를 변경할 수 있습니다. 대부분" -"의 경우 이 설정을 수정할 일이 없습니다." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"이 메뉴에서는 traffic rule 항목의 고급 설정, 예를 들어 source host 와 " -"destination host 매칭, 을 변경할 수 있습니다." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -#, fuzzy -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"이 섹션은 %q 의 공통 속성을 설정할 수 있습니다. input 과 " -"output 옵션은 이 zone 으로 전달되어 들오거나 나가는 트래픽에 대한 기" -"본 정책을 뜻합니다. forward 옵션은 zone 내에서 다른 네트워크들 사이" -"를 오가는 forward traffic 에 대한 정책을 뜻합니다. Covered networks " -"에서는 zone 의 영향을 받을 네트워크들을 지정할 수 있습니다." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "목요일" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "UTC 기준시" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Traffic Rule" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Traffic rule 은 서로 다른 zone 사이를 오가는 패킷들에 대한 정책을 정의합니" -"다. 예를 들어 특정 host 들 사이의 트래픽을 차단하거나 공유기의 WAN port 를 " -"open 할때 사용됩니다." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "화요일" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "수요일" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "주일" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zone 내역" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/ms/firewall.po b/luci-app-firewall/po/ms/firewall.po deleted file mode 100644 index ed239a57c..000000000 --- a/luci-app-firewall/po/ms/firewall.po +++ /dev/null @@ -1,889 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/no/firewall.po b/luci-app-firewall/po/no/firewall.po deleted file mode 100644 index 11ed8e8fb..000000000 --- a/luci-app-firewall/po/no/firewall.po +++ /dev/null @@ -1,936 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2013-03-25 16:42+0200\n" -"Last-Translator: protx \n" -"Language: no\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s i %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s med %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s i %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(oppføring uten navn)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(regel uten navn)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(SNAT uten navn)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d pakker per %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d pakker per %s, burst %dpakker." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s og begrens til %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Handling" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Legg til" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Legg til og redigere..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Avanserte Innstillinger" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Tillat videresending fra kilde soner:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Tillat videresending til destinasjon soner:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Enhver" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Gjeldene nettverk" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Egendefinerte Regler" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Egendefinerte regler tillater deg å utføre vilkårlige iptables kommandoer " -"som ikke dekkes av brannmurens standardoppsett. Kommandoene utføres etter " -"hver omstart av brannmuren, rett etter at standard regelsett er lastet." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Destinasjon IP adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Destinasjon adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Destinasjon port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Destinasjon sone" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Ikke omskriv" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Forkast ugyldige pakker" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Aktiver" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Aktiver NAT Tilbakekobling" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Aktiver SYN-flood beskyttelse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Aktiver logging av denne sonen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Ekstern IP adressse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Ekstern port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Ekstern sone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Ekstra argumenter" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Brannmur" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Brannmur - Egendefinerte Regler" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Brannmur - Port Videresending" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Brannmur - Trafikk Regler" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Brannmur - Sone Innstillinger" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" -"Bruk forbindelse sporing" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Videresend" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Videresend til" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Fra %s i %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Fra %s i %s med kilde %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Fra %s i %s med kilde %s og %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Generelle Innstillinger" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 og IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Kun IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Kun IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Inndata" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Sone til Sone Videresending" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Intern IP adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Intern port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Intern sone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Begrens logging" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "MSS Kontroll (Clamping)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Masquerading" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Match" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Match ICMP type" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"Match videresendt trafikk til den oppgitte destinasjonsport eller " -"portområdet." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Match innkommende trafikk rettet mot den oppgitte destinasjonsport eller " -"portområdet på denne verten" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Match innkommende trafikk som kommer fra den oppgitte kildeport eller " -"portområdet på klienten." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Navn" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Ny SNAT regel" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Ny videresending regel" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Ny inndata regel" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Ny port videresending" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Ny kilde NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Match kun innkommende trafikk rettet mot den oppgitt IP adresse." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Match kun innkommende trafikk fra disse MAC adresser." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Match kun innkommende trafikk fra denne IP eller IP område." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Match kun innkommende trafikk som kommer fra den oppgitte kildeport eller " -"fra portområdet til klienten" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Åpne porter på ruteren" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Andre..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Utdata" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "Sender flere argumenter til iptables. Bruk med forsiktighet!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Port Videresendinger" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"Port videresending tillater at eksterne datamaskiner på Internett kan koble " -"seg til en bestemt maskin eller tjeneste innenfor det private LAN." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protokoll" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Viderekoble matchet innkommende trafikk til den oppgitte porten på intern " -"vert" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Viderekoble matchet innkommende trafikk til den angitte interne vert" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Begrens Masquerading til oppgitt destinasjons subnett" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Begrens Masqeuerading til oppgitt kilde subnett" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Begrens til adresse familie" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Omskriv matchet trafikk til den oppgitte adressen." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Omskriv matchet trafikk til den oppgitte kildeport. Kan stå tom for kun " -"omskriving av IP adressen." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Omskriv til kilde %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Omskriv til kilde %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "SNAT IP adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "SNAT port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Kilde IP adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Kilde MAC adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "Kilde NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"Kilde NAT er en spesifikk form for masquerading som tillater finkornet " -"kontroll over kilde IP adressen som brukes for utgående trafikk, for " -"eksempel for å mappe flere WAN adresser til interne subnett." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Kilde adresse" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Kilde port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Kilde sone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"Brannmuren skaper soner over nettverkets grensesnitt for å styre " -"nettverkstrafikken." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Med valgene under konfigurerer man videresending mellom denne sone (%s) og " -"andre soner. Destinasjons soner omhandler videresendt trafikk " -"med opprinnelse fra %q. Kilde soner matcher " -"videresendt trafikk fra andre soner rettet mot %q. Reglene " -"ved videresending er enveis, d.v.s at videresending fra LAN til WAN " -"ikke automatisk også tillater videresending fra WAN til LAN." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Denne siden lar deg endre avanserte egenskaper til port videresending " -"oppføringer. I de fleste tilfeller er det ikke nødvendig å endre disse " -"innstillingene." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Denne siden lar deg endre de avanserte egenskapene til trafikken regel " -"oppføringer, som for eksempel matchet kilde og destinasjons vert." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -#, fuzzy -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Denne seksjonen definerer de vanligste valg for %q. Med Inndata og " -"Utdata fastsetter man vanlige regler for trafikk gjennom sonen, " -"mens videresend valget definerer regler for videresendt trafikk " -"mellom forskjellige nettverk i sonen. Gjeldene nettverk " -"spesifiserer hvilken av de tilgjengelige nettverk som er medlem av denne " -"sone." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "Til %s på %s på denne enheten" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "Til %s i %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "Til %s på denne enheten" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "Til %s, %s i %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "Til kilde IP" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "Til kilde port" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Trafikk Regler" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Trafikk regler definerer regler for sending av pakker mellom ulike soner, " -"for eksempel for å avvise trafikk mellom visse verter eller for å åpne WAN " -"porter på ruteren." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Via %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Via %s på %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Du kan spesifisere flere ved å velge \"-- egendefinert --\" og deretter " -"skrive flere protokoller atskilt med mellomrom." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Sone %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Sone = Videresendinger" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Soner" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "godta" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "enhver" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "enhver vert" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "enhver ruter IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "enhver sone" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "ikke track" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "forkast" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "avslå" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/pl/firewall.po b/luci-app-firewall/po/pl/firewall.po deleted file mode 100644 index a3c7b1f92..000000000 --- a/luci-app-firewall/po/pl/firewall.po +++ /dev/null @@ -1,949 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2013-06-22 15:49+0200\n" -"Last-Translator: obsy \n" -"Language-Team: LANGUAGE \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: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s w %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s z %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s w %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Nienazwany wpis)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Nienazwana reguła)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(Nienazwany SNAT)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d pakiet. na %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" -"%d pakiet. na %s, popsutych %d pakiet." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s i ograniczone do %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Działanie" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Dodaj" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Dodaj i edytuj..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Ustawienia zaawansowane" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Zezwól na przekazywanie z source zones:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Zezwól na przekazywanie do destination zones:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Każdy" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Objęte sieci" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Własne reguły" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Własne reguły pozwalają na arbitralne wykonanie poleceń iptables, które nie " -"są objęte składnią zapory. Polecenia wykonywane są po każdym restarcie " -"zapory, zaraz po załadowaniu zestawu reguł domyślnych." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Docelowy adres IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Adres docelowy" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Port docelowy" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Strefa docelowa" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Nie przepisuj" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Porzuć wadliwe pakiety" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Włącz" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Włącz NAT Loopback" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Włącz ochronę przed atakiem SYN-flood" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Włącz logowanie na tej strefy" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Zewnętrzne adresy IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Port zewnętrzny" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Strefa zewnętrzna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Dodatkowe argumenty" - -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -# Generated from applications/luci-fw/luasrc/model/cbi/luci_fw/zones.lua # -# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Zapora" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Zapora - Reguły własne" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Zapora - Przekazywanie portów" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Zapora - Reguły ruchu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Zapora - Ustawienia strefy" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Wymuś śledzenie połączeń" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Przekazuj" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Przekazuj do" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Z %s w %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Z %s w %s ze źródłem %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Z %s w %s ze źródłem %s i %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Ustawienia ogólne" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 i IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Tylko IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Tylko IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Ruch przychodzący" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Przekazywanie pomiędzy strefami" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Wewnętrzny adres IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Wewnętrzny port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Strefa wewnętrzna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Ograniczenie logowania" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "Dostosuj MSS" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Maskarada" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Dopasuj" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Dopasuj typ ICMP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"Dopasuj przekazywany ruch do danego docelowego portu lub zakresu portów" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Dopasuj ruch przychodzący do danego portu docelowego lub zakresu portów na " -"tym hoście" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Dopasuj przychodzący ruch pochodzący z danego portu źródłowego lub zakresu " -"portów na hoście klienta." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Nazwa" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Nowa reguła SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Nowa reguła przekazywania (forward)" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Nowa reguła wejściowa (input)" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Nowe przekierowanie portu" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Nowy NAT źródłowy" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Dopasuj tylko przychodzący ruch skierowany do danego adresu IP." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Dopasuj tylko ruch z tych adresów MAC." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Dopasuj tylko ruch przychodzący z tego adresu IP lub zakresu adresów." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Dopasuj tylko ruch przychodzący z podanego portu źródłowego lub zakresu " -"portów na hoście klienta" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Otwarte porty na routerze" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Inne..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Wyjście (Output)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" -"Przekazuje dodatkowe argumenty do iptables. Zachowaj szczególną ostrożność!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Przekierowania portów" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"Przekierowanie portów pozwala komputerom z internetu na połączenia z " -"komputerami z sieci LAN." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protokół" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Przekieruj ruch przychodzący na podany port do wskazanego hosta w sieci " -"wewnętrznej" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Przekieruj ruch przychodzący do wskazanego hosta w sieci wewnętrznej" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Ogranicz maskaradę do wskazanych sieci docelowych" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Ogranicz maskaradę do wskazanych sieci źródłowych" - -# Wstawiłem rodzinę gdyż gdzieś wcześniej było tak opisane ale klasa pasuje mi tu bardziej. -# Obsy - niestety ale "rodzina". W gui dotyczy to wyboru IPv4/IPv6, więc "rodzina" a nie klasa. -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Ogranicz do rodziny adresów" - -# Dosłownie przetłumaczone, nie bardzo wiem czy chodzi o czynność przepisywania pakietu przez usługę czy to jakieś ogólne sformułowanie... -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Przepisz dopasowany ruch do wskazanych adresów." - -# Jak wyżej chodzi o przepisanie pakietu przez usługę? -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Przepisz dopasowany ruch do danego portu źródłowego. Można zostawić puste " -"aby przepisać tylko adres IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Przepisz do źródła %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Przepisz do źródła %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "Adres IP SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Port SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Źródłowy adres IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Źródłowy adres MAC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "NAT źródłowy" - -# http://www.digipedia.pl/def/doc/id/677604507/name/SNAT/ -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"SNAT używany jest wtedy, gdy zmieniane są adresy pakietów połączenia " -"wychodzącego, czyli pakiety źródłowe. Wykonywany jest zawsze po routowaniu " -"(POSTROUTING), a więc w chwili, gdy pakiety są gotowe opuścić host. " -"IPmasquerading jest formą SNAT." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Adres źródłowy" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Port źródłowy" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Strefa źródłowa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"Firewall tworzy strefy z Twoich interfejsów sieciowych, aby kontrolować ruch " -"sieciowy." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Opcje poniżej kontrolują politykę przekazywania pomiędzy tą strefą (%s) a " -"innymi strefami. Strefy docelowe obejmują przekazywany ruch " -"pochodzący z %q. Strefy źródłowe match forwarded " -"traffic from other zones skierowane do %q. Reguła " -"przekazywania jest jednokierunkowa, np. przekazywanie z sieci LAN " -"do WAN nie implikuje pozwolenia na przekazywanie z sieci WAN do LAN." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Ta strona pozwala zmienić zaawansowane ustawienia przekierowania portów. W " -"większości przypadków nie ma potrzeby zmieniać tych ustawień." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Ta strona pozwala zmienić zaawansowane ustawienia reguły ruchu sieciowego, " -"takie jak pasujące źródło i hosty docelowe." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -#, fuzzy -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Ta sekcja definiuje ustawienia ogólne %q. Opcje \"wejście\" i " -"\"wyjście\" określają domyślną politykę dla ruchu przychodzącego i " -"wychodzącego w tej strefie, podczas gdy \"przekazywanie\" opisuje " -"politykę ruchu przekazywanego pomiędzy różnymi sieciami wewnątrz strefy. " -"Objęte sieci określają dostępne sieci będące członkami tej strefy." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "Do %s w %s na tym urządzeniu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "Do %s w %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "Do %s na tym urządzeniu" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "Do %s, %s w %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "Do źródłowego IP" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "Do źródłowego portu" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Reguły ruchu sieciowego" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Reguły ruchu sieciowego definiują politykę dla pakietów przechodzących " -"między strefami, na przykład aby odrzucać ruch między konkretnymi hostami " -"albo otworzyć porty WAN routera." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Przez %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Przez %s w %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Możesz określić kilka wybierając \"-- własne --\" i wpisując protokoły " -"rozdzielone spacją." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Strefa %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Strefa ⇒ Przekazywanie" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Strefy" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "akceptuj" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "dowolny" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "dowolny host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "dowolne IP routera" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "dowolna strefa" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "nie śledź" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "porzucaj" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "odrzucaj" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/pt-br/firewall.po b/luci-app-firewall/po/pt-br/firewall.po deleted file mode 100644 index e6be5d083..000000000 --- a/luci-app-firewall/po/pt-br/firewall.po +++ /dev/null @@ -1,941 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2018-09-20 19:57-0300\n" -"Last-Translator: Luiz Angelo Daros de Luca \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: Poedit 2.1.1\n" -"Language-Team: \n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s in %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s com %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s em %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Entrada Sem Nome)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Regra Sem Nome)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(SNAT Sem Nome)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d pcts. por %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d pcts. por %s, pico %d pcts." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s e limite a %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "Aceitar o encaminhamento" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "Aceitar a entrada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "Aceitar a saída" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Ação" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Adicionar" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Adicionar e editar..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Configurações Avançadas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Permite o encaminhamento da zona de origem:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Permite o encaminhamento para a zona de destino:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Qualquer" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Redes cobertas" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Regras Personalizadas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"As regras personalizadas permitem executar comandos iptables arbitrários não " -"cobertos por esta ferramenta. Os comandos serão executados após cada " -"reinício do firewall, logo após a carga do conjunto de regras padrão." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Endereço IP de destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Endereço de destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Porta de destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Zona de destino" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "Desabilitar" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "Descartar o encaminhamento" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "Descartar a entrada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "Descartar a saída" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Não sobrescreva" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "Não rastrear o encaminhamento" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "Não rastrear a entrada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "Não rastrear a saída" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Descartar pacotes inválidos" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Habilitar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Habilite o Loopback do NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Habilite proteção contra SYN-flood" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Habilite o registro nesta zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" -"Funcionalidade experimental. Ela não é totalmente compatível com QoS/SQM." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Endereço IP externo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Porta Externa" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Zona externa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Argumentos extras" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Firewall - Regras personalizadas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Firewall - Encaminhamento de Portas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Firewall - Regras de Tráfego" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Firewall - Configurações de Zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Force o rastreamento da conexão" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Encaminhar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Encaminhar para" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "Sexta-feira" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Vindo de %s em %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Vindo de %s em %s com origem %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Vindo de %s em %s com origem %s e %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "De %s neste dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "De %s neste dispositivo com origem %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "De %s neste dispositivo com origem %s e %s" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Configurações Gerais" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "Aceleração de fluxo de dados via Hardware" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "IP" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "Faixa IP" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "IPs" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 e IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Somente IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Somente IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Entrada" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Encaminhamento entre Zonas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Endereço IP interno" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Porta Interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Zona interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Limita as mensagens de registro" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "MAC" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "MACs" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "Ajuste do MSS" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Mascaramento" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Casa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Casa com ICMP tipo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"Casa o tráfego encaminhado para uma porta ou faixa de portas de destino " -"específica." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Casa o tráfego entrante direcionado para uma porta ou faixa de portas de " -"destino específica neste computador" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Casa o tráfego entrante originado de uma porta ou faixa de portas no " -"equipamento cliente." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "Segunda-Feira" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "Dias do mês" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Nome" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Nova regra de SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Nova regra de encaminhamento" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Nova regra de entrada" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Novo encaminhamento de porta" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Nova origem NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" -"Somente case o tráfego entrante direcionado para o endereço IP fornecido." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Somente case o tráfego entrante destes endereços MAC." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Somente case o tráfego entrante desta faixa de endereços IP." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Somente case o tráfego entrante vindo da porta de origem fornecida ou " -"intervalo de portas no equipamento cliente" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Abrir portas no roteador" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Outro..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Saída" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "Zona de saída" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "Passa argumentos adicionais para o iptables. Use com cuidado!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Encaminhamentos de Porta" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"O encaminhamento de portas permite que computadores remotos na Internet " -"conectem a um computador ou serviço específico dentro da rede local privada." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protocolo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Redireciona tráfego entrante para a porta especificada no computador interno" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Redireciona tráfego entrante para o computador interno especificado" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "Recusar encaminhamento" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "Recusar entrada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "Recusar saída" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "Requer suporte de NAT em hardware. Implementado ao menos para mt7621" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "Reiniciar o Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Restringe o mascaramento para uma subrede de destino específica" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Restringe o mascaramento para uma subrede de origem específica" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Restringe para uma família de endereços" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Reescreva o tráfego correspondente para o endereço fornecido." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Reescreva o tráfego correspondente para a porta de origem fornecida. Pode " -"ficar em branco para somente reescrever o endereço IP." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Reescrever para a origem %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Reescrever para a origem %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "Aceleração de Roteamento/NAT" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "A regra está desabilitada" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "A regra está habilitada" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "Endereço IP da SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Porta da SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "Sábado" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "Aceleração de roteamento/NAT baseada em Software" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "Aceleração de fluxo de dados via Software" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Endereço IP de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Endereço MAC de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "NAT origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"NAT origem é uma forma específica de mascaramento que permite o controle " -"fino do endereço IP de origem usado no tráfego sainte. Por exemplo, para " -"mapear múltiplos endereços WAN para subredes internas." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Endereço de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Porta de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Zona de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "Dia inicial (aaaa-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "Hora inicial (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "Dia final (aaaa-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "Hora final (hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "Domingo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"O firewall cria zonas sobre as interfaces de rede para controlar o fluxo do " -"tráfego de rede." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"As opções abaixo controlam as políticas de encaminhamento entre esta zona " -"(%s) e outras zonas. Zonas de destino incluem tráfego encaminhado " -"originado de %q. Zonas de origem casam com tráfego " -"encaminhado de outras zonas apontando para %q. A regra de " -"encaminhamento é unidirecional, ex: um encaminhamento da LAN para " -"WAN não implica na permissão de encaminhar da WAN para LAN." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"Esta página permite que você mude propriedades avançadas da entrada do " -"encaminhamento de porta. Na maioria dos casos, não é necessário modificar " -"estas configurações." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Esta página permite que você mude propriedades avançadas da entrada da regra " -"de tráfego, como os equipamentos de origem e destino." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Esta seção define as propriedades comuns de %q. As opções de entrada e saída definem as políticas padrão para o tráfego entrando e " -"saindo desta zona, enquanto a opção de encaminhamento descreve a " -"política para encaminhar o tráfego entre diferentes redes dentro da zona. " -"Redes Cobertas especificam que redes disponíveis são membros desta " -"zona." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "Quita-feira" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "Hora em UTC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "Para %s em %s neste dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "Para %s em %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "Para %s neste dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "Para %s, %s em %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "Para o endereço IP de origem" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "Para a porta de origem" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Regras de tráfego" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Regras de tráfego definem políticas para a passagem de pacotes entre as " -"diferentes zonas. Por exemplo, rejeitar o tráfego entre certos equipamentos " -"ou abrir portas WAN no roteador." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "Terça-feira" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "SNAT sem nome" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "Encaminhamento sem nome" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "Regra sem nome" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Via %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Via %s at %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "Quarta-feira" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "Dias da semana" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Você pode especificar múltiplas entradas selecionando \"-- personalizado --" -"\" e então entrando os protocolos separados por espaço." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zona %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Zona ⇒ Encaminhamentos" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zonas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "aceitar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "qualquer" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "qualquer equipamento" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "qualquer endereço IP do roteador" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "qualquer zona" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "dia" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "não rastrear" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "descartar" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "hora" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "minuto" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "não" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "porta" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "portas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "rejeitar" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "segundo" - -# 20140621: edersg: tradução -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "tráfego" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "tipo" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "tipos" diff --git a/luci-app-firewall/po/pt/firewall.po b/luci-app-firewall/po/pt/firewall.po deleted file mode 100644 index 907dd7ec0..000000000 --- a/luci-app-firewall/po/pt/firewall.po +++ /dev/null @@ -1,924 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2013-06-03 13:37+0200\n" -"Last-Translator: joao.f.vieira \n" -"Language-Team: LANGUAGE \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: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s em %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s with %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s em %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Entrada Sem Nome)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Regra Sem Nome)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(SNAT Sem Nome)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d pkts. por %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Acção" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Adicionar" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Adicionar e editar..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Definições Avançadas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Permitir encaminhamento de zonas de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Permitir encaminhamento para zonas de destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Qualquer" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Redes abrangidas" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Regras Personalizadas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"As regras personalizadas permitem-lhe executar comandos arbitrários iptables " -"os quais não são possiveis de aplicar usando a framework da firewall. Os " -"comandos são executados a seguir ao reinicio da firewall, logo a seguir ao " -"conjunto de regras predefinidas serem carregadas." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Endereço IP de destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Endereço de destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Porta de destino" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Zona de destino" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Não re-escrever" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Cancelar pacotes inválidos" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Ativar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Ativar NAT Loopback" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Ativar a Proteção SYN-flood" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Ativar registo nesta zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Endereço IP externo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Porta externa" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Zona externa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Argumentos extra" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Firewall - Regras Personalizadas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Firewall - Encaminhamento de Portas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Firewall - Regras de Tráfego" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Firewall - Definições de Zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Forçar rasto de ligação" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Encaminhar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Encaminhar para" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "De %s em %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "De %s em %s com origem %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "De %s em %s com origem %s e %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Definições Gerais" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 e IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Só IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Só IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Entrada" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Encaminhamento Inter-Zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Endereço IP interno" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Porta interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Zona Interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Limitar registo de mensagens" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -#, fuzzy -msgid "MSS clamping" -msgstr "MSS-Correction" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Corresponder" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"O tráfego encaminhado corresponde a uma determinada porta de destino ou " -"intervalo de portas." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"O tráfego de entrada corresponde a uma dada porta de destino ou intervalo de " -"portas neste host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"O tráfego de entrada corresponde a uma dada porta ou de um intervalo de " -"portas no host cliente." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Nome" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Nova regra SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Nova regra de encaminhamento" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Nova regra de entrada" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Novo encaminhamento de porta" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Nova origem de NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Só se tráfego de entrada corresponder ao endereço IP fornecido." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Só se o tráfego de entrada corresponder a um destes MACs." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Só se o tráfego de entrada corresponder a este IP ou intervalo." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Só se o tráfego de entrada corresponder à porta de origem fornecida ou de um " -"intervalo de portas no host cliente" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Abrir portas no router" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Outro..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Saída" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "Passa argumentos adicionais para o iptables. Usar com cuidado!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Encaminhamento de Portas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"O Encaminhamento de Portas permite que computadores remotos na internet se " -"liguem a um computador ou serviço especifico na rede privada (LAN)." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protocolo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Redirecionar a entrada de trafego correspondente à porta fornecida no host " -"interno" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Redirecionar o tráfego de entrada correspondente para o host interno" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Restringir a família de endereços" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Re-escrever para a origem %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Re-escrever para a origem %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "Endereço IP da SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Porta SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Endereço IP de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Endereço MAC de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "NAT de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"NAT de origem é uma forma especifica de mascarar que permite um controlo " -"melhorado sobre o IP de origem usado para o tráfego de saída, por exemplo, " -"para mapear múltiplos endereços para as sub-redes internas." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Endereço de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Porta de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Zona de origem" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"A firewall cria zonas sobre as interfaces de rede para controlar o fluxo do " -"tráfego." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"Esta página permite-lhe alterar as definições avançadas da regra de entrada " -"de tráfego, tal como correspondências de hosts de origem e destino." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "Para %s no %s em este dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "Para %s em %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "Para %s em este dispositivo" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "Para %s, %s em %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "Para o IP de origem" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "Para a porta de origem" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Regras de Tráfego" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"As Regras de Tráfego definem políticas para os pacotes que viajam entre " -"diferentes zonas, por exemplo, para rejeitar trafego entre certos hosts ou " -"para abrir portas WAN no router." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Via %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Via %s no %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Pode especificar múltiplos seleccionando \"-- personalizado --\" e depois " -"introduzir os protocolos separados por espaço." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zona %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Zona ⇒ Encaminhamentos" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zonas" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "aceitar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "qualquer" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "qualquer host" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "qualquer IP do router" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "qualquer zona" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "não seguir" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "drop" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "rejeitar" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/ro/firewall.po b/luci-app-firewall/po/ro/firewall.po deleted file mode 100644 index 555d9d7ad..000000000 --- a/luci-app-firewall/po/ro/firewall.po +++ /dev/null @@ -1,894 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-06-29 19:33+0200\n" -"Last-Translator: xxvirusxx \n" -"Language-Team: none\n" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.0.6\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s în %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s cu %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s în %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Intrare fără nume)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Regulă fără nume)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(SNAT fără nume)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Acţiune" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Adaugă" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Adaugă şi editează..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Setări avansate" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Permite trecerea din zonele sursa." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Permite trecerea catre zonele sursa." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Oricare" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Retele acoperite" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Reguli suplimentare" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Destinaţie adresă IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Destinaţie adresă" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Portul destinatie" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Zona destinatie" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Nu rescrie" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Descarcă pachetele invalide" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Activează" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Activează loopback NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Activează protecţia SYN-flood" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Activeaza log in aceasta zona" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Adresă IP externă" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Port extern" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Zonă externă" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Firewall - Reguli particularizate" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Setari zona la firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Forteaza urmarirea conexiunilor" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Forward" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Setari generale" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 şi IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "doar IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "doar IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Intrare" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Forwardare intre-zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Adresa IP interna" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Port intern" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Zonă internă" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Limitează mesaje în log" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "Ajustare MSS" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Translatare" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Potrivire" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Potriveste pe tipul de ICMP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Nume" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Regulă nouă SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Altele..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Ieşire" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protocol" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "Sursă adresă IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "Sursă adresă MAC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "Sursă NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Adresa sursa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Port sursa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Zona sursa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zona %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zone" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "accept" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "oricare" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/ru/firewall.po b/luci-app-firewall/po/ru/firewall.po deleted file mode 100644 index e049d9fba..000000000 --- a/luci-app-firewall/po/ru/firewall.po +++ /dev/null @@ -1,946 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: LuCI: firewall\n" -"POT-Creation-Date: 2013-09-05 16:02+0200\n" -"PO-Revision-Date: 2018-09-06 09:29+0300\n" -"Language-Team: http://cyber-place.ru\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.7.1\n" -"Last-Translator: Anton Kikin \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" -"Language: ru\n" -"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " -"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s в %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s с %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s в %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Запись без имени)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Правило без имени)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(SNAT без имени)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d пакетов за %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d пакетов за %s, подряд %d пакетов" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s с пределом в %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "Принимать перенаправляемый трафик" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "Принимать входящий трафик" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "Принимать исходящий трафик" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Действие" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Добавить" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Добавить и редактировать..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Дополнительные настройки" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Разрешить перенаправление из 'зон источников':" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Разрешить перенаправление в 'зоны назначения':" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Любой" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Использовать сети" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Пользовательские правила" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Пользовательские правила позволяют выполнять произвольные команды iptables, " -"которые не охвачены рамками межсетевого экрана. Команды выполняются после " -"каждой перезагрузки межсетевого экрана, сразу после загрузки набора правил " -"по умолчанию." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "IP-адрес назначения" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Адрес назначения" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Порт назначения" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Зона назначения" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "Отключить" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "Отклонять перенаправляемый трафик" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "Отклонять входящий трафик" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "Отклонять исходящий трафик" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Не перезаписывать" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "Не отслеживать перенаправляемый трафик" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "Не отслеживать входящий трафик" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "Не отслеживать исходящий трафик" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Отбрасывать некорректные пакеты" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Включить" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Включить NAT Loopback" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Включить защиту от SYN-flood атак" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Включить журналирование в этой зоне" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "Экспериментальный функционал. Не полностью совместим с QoS/SQM." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Внешний IP-адрес" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Внешний порт" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Внешняя зона" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Дополнительные аргументы" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Межсетевой экран" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Межсетевой экран - Пользовательские правила" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Межсетевой экран - Перенаправление портов" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Межсетевой экран - Правила для трафика" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Межсетевой экран - Настройка зон" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Включить отслеживание соединений" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Перенаправление" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Перенаправлять на" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "Пятница" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Из %s в %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Из %s в %s с источником %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Из %s в %s с источниками %s и %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "Из %s в это устройство" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "Из %s в это устройство с источником %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "Из %s в это устройство с источниками %s and %s" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Основные настройки" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "Аппаратный flow offloading" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "IP-адрес" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "Диапазон IP-адресов" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "IP-адреса" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 и IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Только IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Только IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Входящий трафик" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Перенаправление между зонами" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Внутренний IP-адрес" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Внутренний порт" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Внутренняя зона" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Ограничить журнал сообщений" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "MAC-адрес" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "MAC-адреса" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "Ограничение MSS" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Маскарадинг" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Входящий трафик" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Соответствовать ICMP типу" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"Перенаправлять соответствующий трафик на указанный порт или диапазон портов." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Порт или диапазон портов, входящие подключения на который будут " -"перенаправляться на внутренний порт внутреннего IP-адреса (см. ниже)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Выбирать входящий трафик, исходящий из порта или диапазона портов " -"клиентского хоста." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "Понедельник" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "Дни месяца" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Имя" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Новое правило SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Новое правило перенаправления" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Новое правило для входящего трафика" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Новое перенаправление порта" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Новый SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" -"Применять правило только для входящих подключений на указанный IP-адрес" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Применять правило только для входящего трафика от этих MAC-адресов." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" -"Применять правило только для входящего трафика от этого IP-адреса или " -"диапазона адресов." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Применять правило только для входящего трафика от указанного порта или " -"диапазона портов клиентского хоста" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Открыть порты на маршрутизаторе" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Другое..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Исходящий трафик" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "Исходящая зона" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" -"Передаёт дополнительные аргументы таблице iptables. Используйте с " -"осторожностью!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Перенаправление портов" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"Перенаправленные портов позволяет удалённым компьютерам из Интернета " -"соединяться с компьютером или службой внутри частной локальной сети." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Протокол" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Перенаправлять трафик на указанный порт или диапазон портов внутреннего IP-" -"адреса" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Перенаправлять трафик на указанный IP-адрес" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "Сбрасывать перенаправляемый трафик" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "Сбрасывать входящий трафик" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "Сбрасывать исходящий трафик" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" -"Требуется аппаратная поддержка NAT. Реализовано, по крайней мере, для mt7621" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "Перезапустить межсетевой экран" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Использовать маскарадинг только для указанных подсетей-получателей" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Использовать маскарадинг только для указанных подсетей-отправителей" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Использовать протокол" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Перенаправлять соответствующий трафик к указанному адресу." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Перенаправлять соответствующий трафик к указанному порту источника. Может " -"быть пустым в случае, если необходимо перенаправить только IP-адрес." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Перенаправлять к источнику %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "Перенаправлять к источнику %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "Маршрутизация/NAT offloading" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "Правило отключено" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "Правило включено" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "IP-адрес SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Порт SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "Суббота" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "Программная реализация offloading для маршрутизации/NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "Программный flow offloading" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "IP-адрес источника" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "MAC-адрес источника" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "NAT источника" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"SNAT - это особая форма маскарадинга (masquerading), позволяющая " -"осуществлять детальный контроль над IP-адресом источника для исходящего " -"трафика, например, перенаправление нескольких WAN-адресов во внутреннюю " -"подсеть." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Адрес источника" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Порт источника" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Зона источника" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "Дата начала (год-мес-день)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "Время начала (чч:мм:сс)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "Дата окончания (год-мес-день)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "Время окончания (чч:мм:сс)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "Воскресенье" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "Межсетевой экран создает зоны в вашей сети для контроля трафика." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Данные настройки управляют политиками перенаправления трафика между этой " -"(%s) и другими зонами. Трафиком 'зон-назначения' является " -"перенаправленный трафик 'исходящий из %q'. Трафиком " -"'зон-источников' является трафик 'направленый в %q'. Перенаправление является 'однонаправленным', то есть " -"перенаправление из lan в wan 'не' допускает перенаправление трафика " -"из wan в lan." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"На этой странице можно изменить расширенные настройки перенаправления портов." -"В большинстве случаев нет необходимости изменять эти параметры." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"На этой странице можно изменить расширенные настройки правил для трафика.В " -"большинстве случаев нет необходимости изменять эти параметры." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Страница содержит общие свойства %q. Режимы 'Входящий трафик' и " -"'Исходящий трафик' устанавливают политики по умолчанию для трафика, " -"поступающего и покидающего эту зону, в то время как режим " -"'Перенаправление' описывает политику перенаправления трафика между " -"различными сетями внутри зоны. 'Использовать сети' указывает, какие " -"доступные сети являются членами этой зоны." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "Четверг" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "Время UTC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "К %s, %s на этом устройстве" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "К %s в %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "К %s на этом устройстве" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "К %s, %s в %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "К IP-адресу источника" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "К порту источника" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Правила для трафика" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Правила для трафика определяют политику прохождения пакетов между разными " -"зонами, например, запрет трафика между некоторыми хостами или открытие WAN-" -"портов маршрутизатора." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "Вторник" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "SNAT без имени" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "Перенаправление без имени" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "Правило без имени" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Через %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Через %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "Среда" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "Дни недели" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Вы можете указать несколько, выбрав '-- пользовательский --' и перечислив " -"через пробел названия протоколов." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Зона %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Зона ⇒ Перенаправления" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Зоны" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "принимать" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "любой" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "любого хоста" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "любой IP-адрес маршрутизатора" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "любой зоны" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "день" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "не отслеживать" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "не обрабатывать" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "час" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "минута" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "нет" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "порт" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "порты" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "отвергать" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "секунда" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "трафик" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "тип" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "типы" diff --git a/luci-app-firewall/po/sk/firewall.po b/luci-app-firewall/po/sk/firewall.po deleted file mode 100644 index ee7b7c9a7..000000000 --- a/luci-app-firewall/po/sk/firewall.po +++ /dev/null @@ -1,890 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/sv/firewall.po b/luci-app-firewall/po/sv/firewall.po deleted file mode 100644 index f74da0997..000000000 --- a/luci-app-firewall/po/sv/firewall.po +++ /dev/null @@ -1,896 +0,0 @@ -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Kristoffer Grundström \n" -"Language-Team: none\n" -"Language: sv\n" -"MIME-Version: 1.0\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s i %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s med %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%2, %s i %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Namnlös post)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Namnlös regel)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(Namnlös SNAT)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d pkt. per %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d pkt. per %s, brustna %d pkt." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s och gränsen till %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Åtgärd" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Lägg till" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Lägg till och redigera..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Avancerade inställningar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Tillåt vidarebefordring från källzonerna:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Till vidarebefordring till destinationszonerna::" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Alla" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Nätverk som omfattas" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Anpassade regler" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "Destinationens IP-adress" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Destinationens adress" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Destinationsport" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Destinationens zon" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Skriv inte om igen" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Släpp ogiltiga paket" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Aktivera" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Aktivera loggning i den här zonen" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Extern IP-adress" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Extern port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Extern zon" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Extra argument" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Brandvägg" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Brandvägg - Anpassade regler" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Brandvägg - Vidarebefordring av port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Brandvägg - Trafikregler" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Brandvägg - Zoninställningar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Vidarebefordra" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "Vidarebefordra till" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "Fredag" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "Från %s i %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "Från %s i %s med källa %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "Från %s i %s med källa %s och %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Generella inställningar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 och IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Endast IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Endast IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Inmatning" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Intern IP-adress" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Intern port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Intern zon" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Begränsa loggmeddelanden" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Maskering" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Matcha" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Matchar ICMP-typ" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"Matcha vidarebefordrad trafik till den angivna destinationsporten eller " -"portens räckvidd." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Matcha inkommande trafik dirigerad till den angivna destinationsporten eller " -"portens räckvidd på den här värden" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "Måndag" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "Dagar i månaden" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Namn" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Ny SNAT-regel" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Ny regel för vidarebefordring" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Ny inmatningsregel" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Ny vidarebefordring av port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Ny käll-NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" -"Matcha endast inkommande trafik från den här IP-adressen eller räckvidden." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Öppna portar i router" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Andra..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Utmatning" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Vidarebefordringar av port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Protokoll" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "Starta om brandvägg" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Begränsa till adressfamilj" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "Skriv om igen till källan %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "IP-adress för SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "SNAT-port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "Lördag" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "IP-adress för källa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "MAC-adress för källa" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "Startdatum (åååå-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "Starttid (tt:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "Stopptid (åååå-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "Stopptid (tt:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "Söndag" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "Torsdag" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "Tid enligt UTC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "Till %s vid %s på den här enheten" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "Till %s i %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "Till %s på den här enheten" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "Till %s, %s i %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Trafikregler" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "Tisdag" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Via %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "Onsdag" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "Veckodagar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Zon %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zoner" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "acceptera" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "alla" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "alla värdar" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "alla zoner" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "spåra inte" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "släpp" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "neka" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "trafik" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/templates/firewall.pot b/luci-app-firewall/po/templates/firewall.pot deleted file mode 100644 index e08ff3ffd..000000000 --- a/luci-app-firewall/po/templates/firewall.pot +++ /dev/null @@ -1,883 +0,0 @@ -msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/tr/firewall.po b/luci-app-firewall/po/tr/firewall.po deleted file mode 100644 index f5c95b9b4..000000000 --- a/luci-app-firewall/po/tr/firewall.po +++ /dev/null @@ -1,890 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\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" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/uk/firewall.po b/luci-app-firewall/po/uk/firewall.po deleted file mode 100644 index 40b3fb993..000000000 --- a/luci-app-firewall/po/uk/firewall.po +++ /dev/null @@ -1,936 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2018-12-29 23:25+0200\n" -"Last-Translator: Yurii \n" -"Language-Team: none\n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s у %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s із %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s у %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(Запис без назви)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(Правило без назви)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(SNAT без назви)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d пакетів за %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d пакетів за %s, підряд %d пакетів" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s з лімітом %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "Приймати переспрямовування" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "Приймати вхідний" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "Приймати вихідний" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Дія" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "Додати" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "Додати та редагувати..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "Розширені настройки" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "Дозволити переспрямовування від зон джерела:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "Дозволити переспрямовування до зон призначення:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "Будь-який" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "Покриті мережі" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "Настроювані правила" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"Настроювані правила дозволяють виконувати довільні команди iptables, які в іншому випадку не охоплені в межах брандмауера. Команди " -"виконуються після кожного перезавантаження брандмауера, відразу після " -"завантаження типового набору правил." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "IP-адреса призначення" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Адреса призначення" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Порт призначення" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "Зона призначення" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "Вимкнути" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "Відкидати переспрямовування" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "Відкидати вхідний" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "Відкидати вихідний" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "Не перезаписувати" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "Не відслідковувати переспрямовування" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "Не відслідковувати вхідний" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "Не відслідковувати вихідний" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Відкидати помилкові пакети" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "Увімкнути" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "Увімкнути NAT Loopback" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "Увімкнути захист від SYN-flood" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "Увімкнути реєстрування у цій зоні" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "Експериментальна функція. Не повністю сумісно з QoS / SQM." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "Зовнішня IP-адреса" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "Зовнішній порт" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "Зовнішня зона" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "Додаткові аргументи" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Брандмауер" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "Брандмауер — Настроювані правила" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "Брандмауер — Переспрямовування портів" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "Брандмауер — Правила трафіка" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "Брандмауер — Параметри зон" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "Увімкнути відстеження з'єднань" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "Переспрямовування" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "переспрямовування до" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "П'ятниця" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "%s у %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "%s у %s з джерелом %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "%s у %s з джерелом %s та %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "Від %s на цьому пристрої" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "Від %s на цьому пристрої з джерелом %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "Від %s на цьому пристрої з джерелом %s та %s" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "Загальні настройки" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "Апаратні засоби розвантаження потоку" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "IP-адреса" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "Діапазон IP" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "IP-адреси" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 та IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "Лише IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "Лише IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Вхідний" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "Переспрямовування між зонами" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "Внутрішня IP-адреса" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "Внутрішній порт" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "Внутрішня зона" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "Обмеження повідомлень журналу" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "MAC-адреса" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "MAC-адреси" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "Затискання MSS" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "Підміна" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "Зіставляти" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "Зіставляти ICMP типу" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" -"Зіставляти трафік, що переспрямовується на заданий порт призначення або " -"діапазон портів." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" -"Зіставляти вхідний трафік, спрямований на заданий порт призначення або " -"діапазон портів цього вузла." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" -"Зіставляти вхідний трафік, що виникає на заданому порту джерела або " -"діапазоні портів вузла клієнта." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "Понеділок" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "Дні місяця" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "Ім'я" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "Нове правило SNAT" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "Нове правило переспрямовування" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "Нове вхідне правило" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "Нове переспрямовування порту" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "Новий NAT джерела" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "Зіставляти тільки вхідний трафік, спрямований на задану IP-адресу." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "Зіставляти тільки вхідний трафік від цих MAC-адрес." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "Зіставляти тільки вхідний трафік від цього IP чи діапазону." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" -"Зіставляти тільки вхідний трафік, що виникає на заданому порту джерела або " -"діапазоні портів вузла клієнта." - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "Відкрити порти на роутері" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "Інше..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Вихідний" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "Вихідна зона" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" -"Передача додаткових аргументів для IPTables. Використовуйте з обережністю!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "Переспрямовування портів" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"Переспрямовування портів дозволяє віддаленим комп'ютерам з Інтернету " -"підключатися до певного комп'ютера або служби у приватній мережі." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "Протокол" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" -"Переспрямувати відповідний вхідний трафік на заданий порт внутрішнього вузла" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Переспрямувати відповідний вхідний трафік на заданий внутрішній вузол" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "Відхиляти переспрямовування" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "Відхиляти вхідний" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "Відхиляти вихідний" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "Необхідна апаратна підтримка NAT. Упроваджено принаймні для mt7621" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "Перезавантажити брандмауер" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "Обмежити підміну заданими підмережами призначення" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "Обмежити підміну заданими підмережами джерела" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "Обмежити сімейство протоколів" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "Переписувати зіставлений трафік на вказану адресу." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" -"Переписувати зіставлений трафік на вказаний порт джерела. Може залишатися " -"порожнім, щоб переписувати тільки IP-адресу." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "перезапис на джерело %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "перезапис на джерело %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "Розвантаження маршрутизації/NAT" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "Правило вимкнено" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "Правило ввімкнено" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "IP-адреса SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "Порт SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "Субота" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "Програмне розвантаження для маршрутизації/NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "Програмне розвантаження потоку" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "IP-адреса джерела" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "MAC-адреса джерела" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "NAT джерела" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"NAT джерела є специфічною формою маскування, яка дозволяє мати детальний " -"контроль над IP джерела, що використовуються для вихідного трафіку, " -"наприклад, для зіставлення кількох WAN-адрес внутрішнім підмережам." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "Адреса джерела" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Порт джерела" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "Зона джерела" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "Дата початку (рррр-мм-дд)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "Час початку (гг:хх:сс)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "Дата зупинки (рррр-мм-дд)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "Час зупинки (гг:хх:сс)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "Неділя" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"Брандмауер створює зони поверх ваших мережевих інтерфейсів для управління " -"потоком мережевого трафіку." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"Опції, наведені нижче, керують політиками переспрямовування між цією (%s) та " -"іншими зонами. Зони призначення покриваються переспрямованим " -"трафіком, що виходить з %q. Зони джерела " -"покриваються трафіком з інших зон, переспрямованим на %q. " -"Правило переспрямовування є односпрямованим, тобто, спрямовування " -"від LAN до WAN не означає, що є також дозвіл спрямовувати від WAN " -"до LAN." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" -"На цій сторінці можна змінити додаткові властивості елемента " -"переспрямовування портів. У більшості випадків змінювати ці параметри немає " -"потреби." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" -"На цій сторінці можна змінити додаткові властивості елемента правил трафіка, " -"таких як відповідні параметри джерела та вузлів призначення." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"Цей розділ визначає загальні властивості %q. Параметри вхідний і " -"вихідний задають типову політику для трафіку на вході й виході з " -"цієї зони, а параметр \"переспрямовування\" описує політику спрямовування " -"трафіку між різними мережами в межах зони. Пункт Покриті мережі " -"визначає, які доступні мережі є членами цієї зони." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "Четвер" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "Час в UTC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "%s на %s цього пристрою" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "%s у %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "%s на цього пристрою" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "%s, %s у %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "До IP джерела" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "До порту джерела" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "Правила трафіка" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"Правила трафіка визначають політику для пакетів, що пересилаються між " -"різними зонами, наприклад, відхиляти трафік між певними вузлами або відкрити " -"порти WAN на маршрутизаторі." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "Вівторок" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "SNAT без назви" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "Переспрямовування без назви" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "Правило без назви" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "Через %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "Через %s на %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "Середа" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "Дні тижня" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" -"Ви можете вказати кілька протоколів, вибравши \"-- додатково --\", а потім " -"увівши їх, розділяючи пробілами." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "Зона %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "Зона ⇒ Переспрямовування" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Зони" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "приймати" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "будь-який" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "будь-який вузол" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "будь-який IP роутера" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "будь-якій зоні" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "день" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "не відстеж." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "опускати" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "година" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "хвилина" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "не" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "порт" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "порти" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "відкидати" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "секунда" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "трафік" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "типом" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "типами" diff --git a/luci-app-firewall/po/vi/firewall.po b/luci-app-firewall/po/vi/firewall.po deleted file mode 100644 index d25d15b08..000000000 --- a/luci-app-firewall/po/vi/firewall.po +++ /dev/null @@ -1,905 +0,0 @@ -# luci-fw.pot -# generated from ./applications/luci-fw/luasrc/i18n/luci-fw.en.lua -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2009-08-16 14:02+0200\n" -"Last-Translator: Hong Phuc Dang \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "Action" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "Địa chỉ điểm đến" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "Cổng điểm đến" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -#, fuzzy -msgid "Destination zone" -msgstr "Điểm đến" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "Bỏ qua nhưng gói không hợp lý" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -#, fuzzy -msgid "Enable SYN-flood protection" -msgstr "SYN-flood bảo vệ " - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "External port" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "Firewall" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "Input" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -#, fuzzy -msgid "Internal IP address" -msgstr "Internal address" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -#, fuzzy -msgid "Internal port" -msgstr "External port" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -#, fuzzy -msgid "MSS clamping" -msgstr "MSS Clamping" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "Output" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -#, fuzzy -msgid "Source IP address" -msgstr "Đỉa chỉ MAC nguồn" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -#, fuzzy -msgid "Source address" -msgstr "Đỉa chỉ MAC nguồn" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "Cổng nguồn" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -#, fuzzy -msgid "Source zone" -msgstr "Cổng nguồn" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "" -"The firewall tạo zones trên giao diện mạng lưới để điều triển sự dòng lưu " -"thông của mạng." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "Zones" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "chấp nhận" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "drop" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "Không chấp nhận" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "" diff --git a/luci-app-firewall/po/zh-cn/firewall.po b/luci-app-firewall/po/zh-cn/firewall.po deleted file mode 100644 index 3df951c10..000000000 --- a/luci-app-firewall/po/zh-cn/firewall.po +++ /dev/null @@ -1,907 +0,0 @@ -# -# Yangfl , 2017, 2018. -# -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Last-Translator: Yangfl \n" -"Language-Team: \n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: 2018-08-08 08:28+0800\n" -"X-Generator: Gtranslator 2.91.7\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s 位于 %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s 和 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s 位于 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(未命名条目)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(未命名规则)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(未命名 SNAT)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d 数据包/%s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d 数据包/%s,突发 %d 数据包。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s 并限制到 %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "接受转发" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "接受入站" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "接受出站" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "动作" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "添加" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "添加并编辑…" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "高级设置" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "允许从源区域转发:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "允许转发到目标区域:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "任何" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "覆盖网络" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "自定义规则" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"自定义规则允许您执行不属于防火墙框架的任意 iptables 命令。每次重启防火墙时," -"在默认的规则运行后这些命令将立即执行。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "目标 IP 地址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "目标地址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "目标端口" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "目标区域" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "禁用" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "丢弃转发" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "丢弃入站" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "丢弃出站" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "不重写" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "不跟踪转发" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "不跟踪入站" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "不跟踪出站" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "丢弃无效数据包" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "启用" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "启用 NAT 环回" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "启用 SYN-flood 防御" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "启用此区域的日志记录" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "实验特性。与 QoS/SQM 不完全兼容。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "外部 IP 地址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "外部端口" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "外部区域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "附加参数" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "防火墙" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "防火墙 - 自定义规则" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "防火墙 - 端口转发" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "防火墙 - 通信规则" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "防火墙 - 区域设置" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "强制连接追踪" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "转发" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "转发到" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "星期五" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "来自 %s 位于 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "来自 %s 位于 %s 源于 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "来自 %s 位于 %s 源端口 %s 源 MAC %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "来自 %s 位于本设备" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "来自 %s 位于本设备源于 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "来自 %s 位于本设备源端口 %s 源 MAC %s" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "基本设置" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "硬件流量分载" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "IP" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "IP 范围" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 和 IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "仅 IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "仅 IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "入站数据" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "端口触发" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "内部 IP 地址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "内部端口" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "内部区域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "限制日志信息" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "MAC" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "MAC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "MSS 钳制" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "IP 动态伪装" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "匹配规则" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "匹配 ICMP 类型" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "匹配指定目标端口或目标端口范围的转发流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "匹配指向此主机上指定目标端口或目标端口范围的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "匹配来自客户端主机上指定源端口或源端口范围的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "星期一" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "日期" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "名字" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "新建 SNAT 规则" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "新建转发规则" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "新建进入规则" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "新建端口转发" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "新建 Source NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "仅匹配指定目的 IP 地址的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "仅匹配来自这些 MAC 的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "仅匹配来自此 IP 或 IP 范围的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "仅匹配源自客户端主机上给定源端口或源端口范围的入站流量。" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "打开路由器端口" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "其它..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "出站数据" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "出站区域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "传递到 iptables 的额外参数。小心使用!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "端口转发" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "" -"端口转发允许 Internet 上的远程计算机连接到内部网络中的特定计算机或服务。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "协议" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "重定向匹配的入站流量到内部主机的端口" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "重定向匹配的入站流量到指定的内部主机" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "拒绝转发" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "拒绝入站" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "拒绝出站" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "需要硬件 NAT 支持。目前 mt7621 已实现" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "重启防火墙" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "要限制 IP 动态伪装的目标子网" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "要限制 IP 动态伪装的源子网" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "限制地址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "将匹配流量的源地址改写成指定地址。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "将匹配流量的源端口改写成指定端口。留空只改写 IP 地址。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "源地址改写成 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "源地址改写成 %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "Routing/NAT 分载" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "规则已禁用" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "规则已启用" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "SNAT IP 地址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "SNAT 端口" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "星期六" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "基于软件的 Routing/NAT 分载" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "软件流量分载" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "源 IP 地址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "源 MAC 地址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "Source NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"Source NAT 是一种特殊形式的封包伪装,它允许精细的控制传出流量的源 IP,例如:" -"将多个 WAN 地址映射到内部子网。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "源地址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "源端口" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "源区域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "开始日期(yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "开始时间(hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "停止日期(yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "停止时间(hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "星期日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "防火墙通过在网络接口上创建区域来控制网络流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"以下选项可以控制区域(%s)和其它区域间的转发规则。目标区域接收" -"源自 %q 的转发流量。源区域匹配从目标为 %q 的区域的需转发流量。转发规则的作用是单向的,例如:一条允许" -"从 lan 到 wan 的转发规则并不隐含有允许相反方向从 wan 到 lan 的流量转发。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "本页面可以更改端口转发的高级设置。大多数情况下,不需要更改这些设置。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "本页面可以更改通信规则的高级设置,比如:需匹配的源主机和目标主机。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"本节定义 %q 的通用属性,入站数据出站数据选项用于设置此区" -"域入站和出站流量的默认策略,转发选项描述该区域内不同网络之间的流量转" -"发策略。覆盖网络指定从属于这个区域的网络。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "星期四" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "UTC 时间" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "到 %s 在 %s 位于本设备" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "到 %s 位于 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "到 %s 位于本设备" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "到 %s, %s 位于 %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "到源 IP" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "到源端口" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "通信规则" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"通信规则定义了不同区域间的数据包传输策略,例如:拒绝一些主机之间的通信,开放" -"路由器 WAN 上的端口。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "星期二" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "未命名 SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "未命名转发" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "未命名规则" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "通过 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "通过 %s 在 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "星期三" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "星期" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "您也可以选择“--自定义--”来定义多个协议,在多个协议间需加空格。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "区域 %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "区域 ⇒ 转发" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "区域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "接受" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "所有" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "所有主机" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "所有路由 IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "所有区域" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "不跟踪" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "丢弃" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "小时" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "分钟" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "非" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "端口" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "端口" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "拒绝" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "秒" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "通信" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "类型" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "类型" diff --git a/luci-app-firewall/po/zh-tw/firewall.po b/luci-app-firewall/po/zh-tw/firewall.po deleted file mode 100644 index 581662642..000000000 --- a/luci-app-firewall/po/zh-tw/firewall.po +++ /dev/null @@ -1,906 +0,0 @@ -# -# Yangfl , 2017, 2018. -# -msgid "" -msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" -"Last-Translator: Yangfl \n" -"Language-Team: \n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: 2018-08-08 08:28+0800\n" -"X-Generator: Gtranslator 2.91.7\n" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:127 -msgid "%s in %s" -msgstr "%s 位於 %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:154 -msgid "%s%s with %s" -msgstr "%s%s 和 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:125 -msgid "%s, %s in %s" -msgstr "%s, %s 位於 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:26 -msgid "(Unnamed Entry)" -msgstr "(未命名條目)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:169 -msgid "(Unnamed Rule)" -msgstr "(未命名規則)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:37 -msgid "(Unnamed SNAT)" -msgstr "(未命名 SNAT)" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:195 -msgid "%d pkts. per %s" -msgstr "%d 資料包/%s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:192 -msgid "%d pkts. per %s, burst %d pkts." -msgstr "%d 資料包/%s,突發 %d 資料包。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 -msgid "%s and limit to %s" -msgstr "%s 並限制到 %s" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 -msgid "Accept forward" -msgstr "接受轉發" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:224 -msgid "Accept input" -msgstr "接受入站" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:204 -msgid "Accept output" -msgstr "接受出站" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:322 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:257 -msgid "Action" -msgstr "動作" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:68 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:31 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:69 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:58 -msgid "Add" -msgstr "新增" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:64 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:53 -msgid "Add and edit..." -msgstr "新增並編輯…" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:57 -msgid "Advanced Settings" -msgstr "高階設定" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:178 -msgid "Allow forward from source zones:" -msgstr "允許從源區域轉發:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:170 -msgid "Allow forward to destination zones:" -msgstr "允許轉發到目標區域:" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:191 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:89 -msgid "Any" -msgstr "任何" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:88 -msgid "Covered networks" -msgstr "覆蓋網路" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 -msgid "Custom Rules" -msgstr "自訂規則" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 -msgid "" -"Custom rules allow you to execute arbitrary iptables commands which are not " -"otherwise covered by the firewall framework. The commands are executed after " -"each firewall restart, right after the default ruleset has been loaded." -msgstr "" -"自訂規則允許您執行不屬於防火牆框架的任意 iptables 指令。每次重啟防火牆時,在" -"預設的規則執行後這些指令將立即執行。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 -msgid "Destination IP address" -msgstr "目標 IP 位址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:304 -msgid "Destination address" -msgstr "目標位址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:117 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:313 -msgid "Destination port" -msgstr "目標埠" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:102 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:295 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:42 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:21 -msgid "Destination zone" -msgstr "目標區域" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:242 -msgid "Disable" -msgstr "禁用" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:220 -msgid "Discard forward" -msgstr "丟棄轉發" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:230 -msgid "Discard input" -msgstr "丟棄入站" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:210 -msgid "Discard output" -msgstr "丟棄出站" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:151 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:45 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:50 -msgid "Do not rewrite" -msgstr "不重寫" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:218 -msgid "Do not track forward" -msgstr "不跟蹤轉發" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:228 -msgid "Do not track input" -msgstr "不跟蹤入站" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:208 -msgid "Do not track output" -msgstr "不跟蹤出站" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:22 -msgid "Drop invalid packets" -msgstr "丟棄無效資料包" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:131 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:270 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:246 -msgid "Enable" -msgstr "啟用" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:149 -msgid "Enable NAT Loopback" -msgstr "啟用 NAT 環回" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:20 -msgid "Enable SYN-flood protection" -msgstr "啟用 SYN-flood 防禦" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:144 -msgid "Enable logging on this zone" -msgstr "啟用此區域的日誌記錄" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:43 -msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "實驗特性。與 QoS/SQM 不完全相容。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:98 -msgid "External IP address" -msgstr "外部 IP 位址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:111 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:28 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:12 -msgid "External port" -msgstr "外部埠" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:27 -msgid "External zone" -msgstr "外部區域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:158 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:331 -msgid "Extra arguments" -msgstr "附加引數" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 -msgid "Firewall" -msgstr "防火牆" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 -msgid "Firewall - Custom Rules" -msgstr "防火牆 - 自訂規則" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 -msgid "Firewall - Port Forwards" -msgstr "防火牆 - 埠轉發" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 -msgid "Firewall - Traffic Rules" -msgstr "防火牆 - 通訊規則" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 -msgid "Firewall - Zone Settings" -msgstr "防火牆 - 區域設定" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 -msgid "Force connection tracking" -msgstr "強制連線追蹤" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:76 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:27 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:92 -msgid "Forward" -msgstr "轉發" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:116 -msgid "Forward to" -msgstr "轉發到" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:343 -msgid "Friday" -msgstr "星期五" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:106 -msgid "From %s in %s" -msgstr "來自 %s 位於 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:88 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:104 -msgid "From %s in %s with source %s" -msgstr "來自 %s 位於 %s 源於 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:102 -msgid "From %s in %s with source %s and %s" -msgstr "來自 %s 位於 %s 源埠 %s 源 MAC %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 -msgid "From %s on this device" -msgstr "來自 %s 位於本裝置" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 -msgid "From %s on this device with source %s" -msgstr "來自 %s 位於本裝置源於 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 -msgid "From %s on this device with source %s and %s" -msgstr "來自 %s 位於本裝置源埠 %s 源 MAC %s" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:16 -msgid "General Settings" -msgstr "基本設定" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 -msgid "Hardware flow offloading" -msgstr "硬體流量分載" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 -msgid "IP" -msgstr "IP" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:83 -msgid "IP range" -msgstr "IP 範圍" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:100 -msgid "IPs" -msgstr "IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:85 -msgid "IPv4" -msgstr "IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:185 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:118 -msgid "IPv4 and IPv6" -msgstr "IPv4 和 IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:186 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:119 -msgid "IPv4 only" -msgstr "僅 IPv4" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:87 -msgid "IPv6" -msgstr "IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 -msgid "IPv6 only" -msgstr "僅 IPv6" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:90 -msgid "Input" -msgstr "入站資料" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:157 -msgid "Inter-Zone Forwarding" -msgstr "埠觸發" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:127 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:30 -msgid "Internal IP address" -msgstr "內部 IP 位址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:138 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:31 -msgid "Internal port" -msgstr "內部埠" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:121 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:29 -msgid "Internal zone" -msgstr "內部區域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:150 -msgid "Limit log messages" -msgstr "限制日誌資訊" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:31 -msgid "MAC" -msgstr "MAC" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:40 -msgid "MACs" -msgstr "MAC" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:102 -msgid "MSS clamping" -msgstr "MSS 鉗制" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:85 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:101 -msgid "Masquerading" -msgstr "IP 動態偽裝" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:105 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:162 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:247 -msgid "Match" -msgstr "匹配規則" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:206 -msgid "Match ICMP type" -msgstr "匹配 ICMP 型別" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:118 -msgid "Match forwarded traffic to the given destination port or port range." -msgstr "匹配指定目標埠或目標埠範圍的轉發流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:112 -msgid "" -"Match incoming traffic directed at the given destination port or port range " -"on this host" -msgstr "匹配指向此主機上指定目標埠或目標埠範圍的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 -msgid "" -"Match incoming traffic originating from the given source port or port range " -"on the client host." -msgstr "匹配來自客戶端主機上指定源埠或源埠範圍的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 -msgid "Monday" -msgstr "星期一" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 -msgid "Month Days" -msgstr "日期" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:180 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:60 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:25 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:10 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:40 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:19 -msgid "Name" -msgstr "名字" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:28 -msgid "New SNAT rule" -msgstr "新建 SNAT 規則" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 -msgid "New forward rule" -msgstr "新建轉發規則" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 -msgid "New input rule" -msgstr "新建進入規則" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:22 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:36 -msgid "New port forward" -msgstr "新建埠轉發" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:16 -msgid "New source NAT" -msgstr "新建 Source NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:99 -msgid "Only match incoming traffic directed at the given IP address." -msgstr "僅匹配指定目的 IP 位址的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:63 -msgid "Only match incoming traffic from these MACs." -msgstr "僅匹配來自這些 MAC 的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:75 -msgid "Only match incoming traffic from this IP or range." -msgstr "僅匹配來自此 IP 或 IP 範圍的入站流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:87 -msgid "" -"Only match incoming traffic originating from the given source port or port " -"range on the client host" -msgstr "僅匹配源自客戶端主機上給定源埠或源埠範圍的入站流量。" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 -msgid "Open ports on router" -msgstr "開啟路由器埠" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:43 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:24 -msgid "Other..." -msgstr "其它..." - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:75 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:26 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:91 -msgid "Output" -msgstr "出站資料" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:288 -msgid "Output zone" -msgstr "出站區域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:159 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 -msgid "Passes additional arguments to iptables. Use with care!" -msgstr "傳遞到 iptables 的額外引數。小心使用!" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 -msgid "Port Forwards" -msgstr "埠轉發" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 -msgid "" -"Port forwarding allows remote computers on the Internet to connect to a " -"specific computer or service within the private LAN." -msgstr "埠轉發允許 Internet 上的遠端計算機連線到內部網路中的特定計算機或服務。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:39 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:190 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addforward.htm:26 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:11 -msgid "Protocol" -msgstr "協議" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:139 -msgid "" -"Redirect matched incoming traffic to the given port on the internal host" -msgstr "重定向匹配的入站流量到內部主機的埠" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 -msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "重定向匹配的入站流量到指定的內部主機" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 -msgid "Refuse forward" -msgstr "拒絕轉發" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:226 -msgid "Refuse input" -msgstr "拒絕入站" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:206 -msgid "Refuse output" -msgstr "拒絕出站" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:52 -msgid "Requires hardware NAT support. Implemented at least for mt7621" -msgstr "需要硬體 NAT 支援。目前 mt7621 已實現" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 -msgid "Restart Firewall" -msgstr "重啟防火牆" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 -msgid "Restrict Masquerading to given destination subnets" -msgstr "要限制 IP 動態偽裝的目標子網" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:123 -msgid "Restrict Masquerading to given source subnets" -msgstr "要限制 IP 動態偽裝的源子網" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:183 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:115 -msgid "Restrict to address family" -msgstr "限制位址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:132 -msgid "Rewrite matched traffic to the given address." -msgstr "將匹配流量的源位址改寫成指定位址。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:147 -msgid "" -"Rewrite matched traffic to the given source port. May be left empty to only " -"rewrite the IP address." -msgstr "將匹配流量的源埠改寫成指定埠。留空只改寫 IP 位址。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:266 -msgid "Rewrite to source %s" -msgstr "源位址改寫成 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:264 -msgid "Rewrite to source %s, %s" -msgstr "源位址改寫成 %s, %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 -msgid "Routing/NAT Offloading" -msgstr "Routing/NAT 分載" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 -msgid "Rule is disabled" -msgstr "規則已禁用" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:241 -msgid "Rule is enabled" -msgstr "規則已啟用" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:131 -msgid "SNAT IP address" -msgstr "SNAT IP 位址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:146 -msgid "SNAT port" -msgstr "SNAT 埠" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:344 -msgid "Saturday" -msgstr "星期六" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 -msgid "Software based offloading for routing/NAT" -msgstr "基於軟體的 Routing/NAT 分載" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 -msgid "Software flow offloading" -msgstr "軟體流量分載" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 -msgid "Source IP address" -msgstr "源 IP 位址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:62 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:261 -msgid "Source MAC address" -msgstr "源 MAC 位址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 -msgid "Source NAT" -msgstr "Source NAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 -msgid "" -"Source NAT is a specific form of masquerading which allows fine grained " -"control over the source IP used for outgoing traffic, for example to map " -"multiple WAN addresses to internal subnets." -msgstr "" -"Source NAT 是一種特殊形式的封包偽裝,它允許精細的控制傳出流量的源 IP,例如:" -"將多個 WAN 位址對映到內部子網。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:270 -msgid "Source address" -msgstr "源位址" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:86 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:279 -msgid "Source port" -msgstr "源埠" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:54 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:73 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:254 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:41 -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:20 -msgid "Source zone" -msgstr "源區域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:357 -msgid "Start Date (yyyy-mm-dd)" -msgstr "開始日期(yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:353 -msgid "Start Time (hh:mm:ss)" -msgstr "開始時間(hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:359 -msgid "Stop Date (yyyy-mm-dd)" -msgstr "停止日期(yyyy-mm-dd)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 -msgid "Stop Time (hh:mm:ss)" -msgstr "停止時間(hh:mm:ss)" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 -msgid "Sunday" -msgstr "星期日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:12 -msgid "" -"The firewall creates zones over your network interfaces to control network " -"traffic flow." -msgstr "防火牆通過在網路介面上建立區域來控制網路流量。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 -msgid "" -"The options below control the forwarding policies between this zone (%s) and " -"other zones. Destination zones cover forwarded traffic " -"originating from %q. Source zones match forwarded " -"traffic from other zones targeted at %q. The forwarding " -"rule is unidirectional, e.g. a forward from lan to wan does " -"not imply a permission to forward from wan to lan as well." -msgstr "" -"以下選項可以控制區域(%s)和其它區域間的轉發規則。目標區域接收" -"源自 %q 的轉發流量。源區域匹配從目標為 %q 的區域的需轉發流量。轉發規則的作用是單向的,例如:一條允許" -"從 lan 到 wan 的轉發規則並不隱含有允許相反方向從 wan 到 lan 的流量轉發。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:14 -msgid "" -"This page allows you to change advanced properties of the port forwarding " -"entry. In most cases there is no need to modify those settings." -msgstr "本頁面可以更改埠轉發的高階設定。大多數情況下,不需要更改這些設定。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:13 -msgid "" -"This page allows you to change advanced properties of the traffic rule " -"entry, such as matched source and destination hosts." -msgstr "本頁面可以更改通訊規則的高階設定,比如:需匹配的源主機和目標主機。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 -msgid "" -"This section defines common properties of %q. The input and " -"output options set the default policies for traffic entering and " -"leaving this zone while the forward option describes the policy for " -"forwarded traffic between different networks within the zone. Covered " -"networks specifies which available networks are members of this zone." -msgstr "" -"本節定義 %q 的通用屬性,入站資料出站資料選項用於設定此區" -"域入站和出站流量的預設策略,轉發選項描述該區域內不同網路之間的流量轉" -"發策略。覆蓋網路指定從屬於這個區域的網路。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:342 -msgid "Thursday" -msgstr "星期四" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:362 -msgid "Time in UTC" -msgstr "UTC 時間" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:141 -msgid "To %s at %s on this device" -msgstr "到 %s 在 %s 位於本裝置" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:132 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:157 -msgid "To %s in %s" -msgstr "到 %s 位於 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:143 -msgid "To %s on this device" -msgstr "到 %s 位於本裝置" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:130 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:155 -msgid "To %s, %s in %s" -msgstr "到 %s, %s 位於 %s" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:22 -msgid "To source IP" -msgstr "到源 IP" - -#: applications/luci-app-firewall/luasrc/view/firewall/cbi_addsnat.htm:23 -msgid "To source port" -msgstr "到源埠" - -#: applications/luci-app-firewall/luasrc/controller/firewall.lua:18 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:18 -msgid "Traffic Rules" -msgstr "通訊規則" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:10 -msgid "" -"Traffic rules define policies for packets traveling between different zones, " -"for example to reject traffic between certain hosts or to open WAN ports on " -"the router." -msgstr "" -"通訊規則定義了不同區域間的資料包傳輸策略,例如:拒絕一些主機之間的通訊,開放" -"路由器 WAN 上的埠。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 -msgid "Tuesday" -msgstr "星期二" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:244 -msgid "Unnamed SNAT" -msgstr "未命名 SNAT" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:67 -msgid "Unnamed forward" -msgstr "未命名轉發" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:76 -msgid "Unnamed rule" -msgstr "未命名規則" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:101 -msgid "Via %s" -msgstr "通過 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:99 -msgid "Via %s at %s" -msgstr "通過 %s 在 %s" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:341 -msgid "Wednesday" -msgstr "星期三" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:335 -msgid "Week Days" -msgstr "星期" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:55 -msgid "" -"You may specify multiple by selecting \"-- custom --\" and then entering " -"protocols separated by space." -msgstr "您也可以選擇“--自訂--”來定義多個協議,在多個協議間需加空格。" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:35 -msgid "Zone %q" -msgstr "區域 %q" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:83 -msgid "Zone ⇒ Forwardings" -msgstr "區域 ⇒ 轉發" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:59 -msgid "Zones" -msgstr "區域" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:325 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 -msgid "accept" -msgstr "接受" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:90 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:108 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:141 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:82 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:122 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:263 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:272 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:281 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:306 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:315 -msgid "any" -msgstr "所有" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:120 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:100 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 -msgid "any host" -msgstr "所有主機" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:138 -msgid "any router IP" -msgstr "所有路由 IP" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:119 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:149 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:110 -msgid "any zone" -msgstr "所有區域" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:189 -msgid "day" -msgstr "日" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 -msgid "don't track" -msgstr "不跟蹤" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:32 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:97 -msgid "drop" -msgstr "丟棄" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:187 -msgid "hour" -msgstr "小時" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:185 -msgid "minute" -msgstr "分鐘" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:20 -msgid "not" -msgstr "非" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:50 -msgid "port" -msgstr "埠" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:55 -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:65 -msgid "ports" -msgstr "埠" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:326 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:80 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 -msgid "reject" -msgstr "拒絕" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 -msgid "second" -msgstr "秒" - -#: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:82 -msgid "traffic" -msgstr "通訊" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:121 -msgid "type" -msgstr "型別" - -#: applications/luci-app-firewall/luasrc/tools/firewall.lua:130 -msgid "types" -msgstr "型別" diff --git a/luci-base/Makefile b/luci-base/Makefile deleted file mode 100644 index dc4681b6f..000000000 --- a/luci-base/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# -# Copyright (C) 2008-2015 The LuCI Team -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -PKG_NAME:=luci-base - -LUCI_TYPE:=mod -LUCI_BASENAME:=base - -LUCI_TITLE:=LuCI core libraries -LUCI_DEPENDS:=+lua +luci-lib-nixio +luci-lib-ip +rpcd +libubus-lua +luci-lib-jsonc +liblucihttp-lua - - -PKG_SOURCE:=v1.0.0.tar.gz -PKG_SOURCE_URL:=https://github.com/jirutka/luasrcdiet/archive/ -PKG_HASH:=48162e63e77d009f5848f18a5cabffbdfc867d0e5e73c6d407f6af5d6880151b -PKG_LICENSE:=MIT - -HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/luasrcdiet-1.0.0 - -include $(INCLUDE_DIR)/host-build.mk - -define Package/luci-base/conffiles -/etc/luci-uploads -/etc/config/luci -/etc/config/ucitrack -endef - -include ../luci/luci.mk - -define Host/Configure -endef - -define Host/Compile - $(MAKE) -C src/ clean po2lmo jsmin -endef - -define Host/Install - $(INSTALL_DIR) $(1)/bin - $(INSTALL_DIR) $(1)/lib/lua/5.1 - $(INSTALL_BIN) src/po2lmo $(1)/bin/po2lmo - $(INSTALL_BIN) src/jsmin $(1)/bin/jsmin - $(INSTALL_BIN) $(HOST_BUILD_DIR)/bin/luasrcdiet $(1)/bin/luasrcdiet - $(CP) $(HOST_BUILD_DIR)/luasrcdiet $(1)/lib/lua/5.1/ -endef - -$(eval $(call HostBuild)) - -# call BuildPackage - OpenWrt buildroot signature diff --git a/luci-base/htdocs/cgi-bin/luci b/luci-base/htdocs/cgi-bin/luci deleted file mode 100755 index 529d1d0bc..000000000 --- a/luci-base/htdocs/cgi-bin/luci +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/lua -require "luci.cacheloader" -require "luci.sgi.cgi" -luci.dispatcher.indexcache = "/tmp/luci-indexcache" -luci.sgi.cgi.run() \ No newline at end of file diff --git a/luci-base/htdocs/luci-static/resources/cbi.js b/luci-base/htdocs/luci-static/resources/cbi.js deleted file mode 100644 index d4d61eb38..000000000 --- a/luci-base/htdocs/luci-static/resources/cbi.js +++ /dev/null @@ -1,834 +0,0 @@ -/* - LuCI - Lua Configuration Interface - - Copyright 2008 Steven Barth - Copyright 2008-2018 Jo-Philipp Wich - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 -*/ - -var cbi_d = []; -var cbi_strings = { path: {}, label: {} }; - -function s8(bytes, off) { - var n = bytes[off]; - return (n > 0x7F) ? (n - 256) >>> 0 : n; -} - -function u16(bytes, off) { - return ((bytes[off + 1] << 8) + bytes[off]) >>> 0; -} - -function sfh(s) { - if (s === null || s.length === 0) - return null; - - var bytes = []; - - for (var i = 0; i < s.length; i++) { - var ch = s.charCodeAt(i); - - if (ch <= 0x7F) - bytes.push(ch); - else if (ch <= 0x7FF) - bytes.push(((ch >>> 6) & 0x1F) | 0xC0, - ( ch & 0x3F) | 0x80); - else if (ch <= 0xFFFF) - bytes.push(((ch >>> 12) & 0x0F) | 0xE0, - ((ch >>> 6) & 0x3F) | 0x80, - ( ch & 0x3F) | 0x80); - else if (code <= 0x10FFFF) - bytes.push(((ch >>> 18) & 0x07) | 0xF0, - ((ch >>> 12) & 0x3F) | 0x80, - ((ch >> 6) & 0x3F) | 0x80, - ( ch & 0x3F) | 0x80); - } - - if (!bytes.length) - return null; - - var hash = (bytes.length >>> 0), - len = (bytes.length >>> 2), - off = 0, tmp; - - while (len--) { - hash += u16(bytes, off); - tmp = ((u16(bytes, off + 2) << 11) ^ hash) >>> 0; - hash = ((hash << 16) ^ tmp) >>> 0; - hash += hash >>> 11; - off += 4; - } - - switch ((bytes.length & 3) >>> 0) { - case 3: - hash += u16(bytes, off); - hash = (hash ^ (hash << 16)) >>> 0; - hash = (hash ^ (s8(bytes, off + 2) << 18)) >>> 0; - hash += hash >>> 11; - break; - - case 2: - hash += u16(bytes, off); - hash = (hash ^ (hash << 11)) >>> 0; - hash += hash >>> 17; - break; - - case 1: - hash += s8(bytes, off); - hash = (hash ^ (hash << 10)) >>> 0; - hash += hash >>> 1; - break; - } - - hash = (hash ^ (hash << 3)) >>> 0; - hash += hash >>> 5; - hash = (hash ^ (hash << 4)) >>> 0; - hash += hash >>> 17; - hash = (hash ^ (hash << 25)) >>> 0; - hash += hash >>> 6; - - return (0x100000000 + hash).toString(16).substr(1); -} - -function _(s) { - return (window.TR && TR[sfh(s)]) || s; -} - - -function cbi_d_add(field, dep, index) { - var obj = (typeof(field) === 'string') ? document.getElementById(field) : field; - if (obj) { - var entry - for (var i=0; i entry.index) - break; - } - - if (!next) - parent.appendChild(entry.node); - else - parent.insertBefore(entry.node, next); - - state = true; - } - - // hide optionals widget if no choices remaining - if (parent && parent.parentNode && parent.getAttribute('data-optionals')) - parent.parentNode.style.display = (parent.options.length <= 1) ? 'none' : ''; - } - - if (entry && entry.parent) - cbi_tag_last(parent); - - if (state) - cbi_d_update(); - else if (parent) - parent.dispatchEvent(new CustomEvent('dependency-update', { bubbles: true })); -} - -function cbi_init() { - var nodes; - - document.querySelectorAll('.cbi-dropdown').forEach(function(node) { - cbi_dropdown_init(node); - node.addEventListener('cbi-dropdown-change', cbi_d_update); - }); - - nodes = document.querySelectorAll('[data-strings]'); - - for (var i = 0, node; (node = nodes[i]) !== undefined; i++) { - var str = JSON.parse(node.getAttribute('data-strings')); - for (var key in str) { - for (var key2 in str[key]) { - var dst = cbi_strings[key] || (cbi_strings[key] = { }); - dst[key2] = str[key][key2]; - } - } - } - - nodes = document.querySelectorAll('[data-depends]'); - - for (var i = 0, node; (node = nodes[i]) !== undefined; i++) { - var index = parseInt(node.getAttribute('data-index'), 10); - var depends = JSON.parse(node.getAttribute('data-depends')); - if (!isNaN(index) && depends.length > 0) { - for (var alt = 0; alt < depends.length; alt++) - cbi_d_add(node, depends[alt], index); - } - } - - nodes = document.querySelectorAll('[data-update]'); - - for (var i = 0, node; (node = nodes[i]) !== undefined; i++) { - var events = node.getAttribute('data-update').split(' '); - for (var j = 0, event; (event = events[j]) !== undefined; j++) - node.addEventListener(event, cbi_d_update); - } - - nodes = document.querySelectorAll('[data-choices]'); - - for (var i = 0, node; (node = nodes[i]) !== undefined; i++) { - var choices = JSON.parse(node.getAttribute('data-choices')), - options = {}; - - for (var j = 0; j < choices[0].length; j++) - options[choices[0][j]] = choices[1][j]; - - var def = (node.getAttribute('data-optional') === 'true') - ? node.placeholder || '' : null; - - var cb = new L.ui.Combobox(node.value, options, { - name: node.getAttribute('name'), - sort: choices[0], - select_placeholder: def || _('-- Please choose --'), - custom_placeholder: node.getAttribute('data-manual') || _('-- custom --') - }); - - var n = cb.render(); - n.addEventListener('cbi-dropdown-change', cbi_d_update); - node.parentNode.replaceChild(n, node); - } - - nodes = document.querySelectorAll('[data-dynlist]'); - - for (var i = 0, node; (node = nodes[i]) !== undefined; i++) { - var choices = JSON.parse(node.getAttribute('data-dynlist')), - values = JSON.parse(node.getAttribute('data-values') || '[]'), - options = null; - - if (choices[0] && choices[0].length) { - options = {}; - - for (var j = 0; j < choices[0].length; j++) - options[choices[0][j]] = choices[1][j]; - } - - var dl = new L.ui.DynamicList(values, options, { - name: node.getAttribute('data-prefix'), - sort: choices[0], - datatype: choices[2], - optional: choices[3], - placeholder: node.getAttribute('data-placeholder') - }); - - var n = dl.render(); - n.addEventListener('cbi-dynlist-change', cbi_d_update); - node.parentNode.replaceChild(n, node); - } - - nodes = document.querySelectorAll('[data-type]'); - - for (var i = 0, node; (node = nodes[i]) !== undefined; i++) { - cbi_validate_field(node, node.getAttribute('data-optional') === 'true', - node.getAttribute('data-type')); - } - - document.querySelectorAll('[data-browser]').forEach(cbi_browser_init); - - document.querySelectorAll('.cbi-tooltip:not(:empty)').forEach(function(s) { - s.parentNode.classList.add('cbi-tooltip-container'); - }); - - document.querySelectorAll('.cbi-section-remove > input[name^="cbi.rts"]').forEach(function(i) { - var handler = function(ev) { - var bits = this.name.split(/\./), - section = document.getElementById('cbi-' + bits[2] + '-' + bits[3]); - - section.style.opacity = (ev.type === 'mouseover') ? 0.5 : ''; - }; - - i.addEventListener('mouseover', handler); - i.addEventListener('mouseout', handler); - }); - - document.querySelectorAll('[data-ui-widget]').forEach(function(node) { - var args = JSON.parse(node.getAttribute('data-ui-widget') || '[]'), - widget = new (Function.prototype.bind.apply(L.ui[args[0]], args)), - markup = widget.render(); - - markup.addEventListener('widget-change', cbi_d_update); - node.parentNode.replaceChild(markup, node); - }); - - cbi_d_update(); -} - -function cbi_filebrowser(id, defpath) { - var field = L.dom.elem(id) ? id : document.getElementById(id); - var browser = window.open( - cbi_strings.path.browser + (field.value || defpath || '') + '?field=' + field.id, - "luci_filebrowser", "width=300,height=400,left=100,top=200,scrollbars=yes" - ); - - browser.focus(); -} - -function cbi_browser_init(field) -{ - field.parentNode.insertBefore( - E('img', { - 'src': L.resource('cbi/folder.gif'), - 'class': 'cbi-image-button', - 'click': function(ev) { - cbi_filebrowser(field, field.getAttribute('data-browser')); - ev.preventDefault(); - } - }), field.nextSibling); -} - -function cbi_validate_form(form, errmsg) -{ - /* if triggered by a section removal or addition, don't validate */ - if (form.cbi_state == 'add-section' || form.cbi_state == 'del-section') - return true; - - if (form.cbi_validators) { - for (var i = 0; i < form.cbi_validators.length; i++) { - var validator = form.cbi_validators[i]; - - if (!validator() && errmsg) { - alert(errmsg); - return false; - } - } - } - - return true; -} - -function cbi_validate_reset(form) -{ - window.setTimeout( - function() { cbi_validate_form(form, null) }, 100 - ); - - return true; -} - -function cbi_validate_field(cbid, optional, type) -{ - var field = isElem(cbid) ? cbid : document.getElementById(cbid); - var validatorFn; - - try { - var cbiValidator = L.validation.create(field, type, optional); - validatorFn = cbiValidator.validate.bind(cbiValidator); - } - catch(e) { - validatorFn = null; - }; - - if (validatorFn !== null) { - var form = findParent(field, 'form'); - - if (!form.cbi_validators) - form.cbi_validators = [ ]; - - form.cbi_validators.push(validatorFn); - - field.addEventListener("blur", validatorFn); - field.addEventListener("keyup", validatorFn); - field.addEventListener("cbi-dropdown-change", validatorFn); - - if (matchesElem(field, 'select')) { - field.addEventListener("change", validatorFn); - field.addEventListener("click", validatorFn); - } - - validatorFn(); - } -} - -function cbi_row_swap(elem, up, store) -{ - var tr = findParent(elem.parentNode, '.cbi-section-table-row'); - - if (!tr) - return false; - - tr.classList.remove('flash'); - - if (up) { - var prev = tr.previousElementSibling; - - if (prev && prev.classList.contains('cbi-section-table-row')) - tr.parentNode.insertBefore(tr, prev); - else - return; - } - else { - var next = tr.nextElementSibling ? tr.nextElementSibling.nextElementSibling : null; - - if (next && next.classList.contains('cbi-section-table-row')) - tr.parentNode.insertBefore(tr, next); - else if (!next) - tr.parentNode.appendChild(tr); - else - return; - } - - var ids = [ ]; - - for (var i = 0, n = 0; i < tr.parentNode.childNodes.length; i++) { - var node = tr.parentNode.childNodes[i]; - if (node.classList && node.classList.contains('cbi-section-table-row')) { - node.classList.remove('cbi-rowstyle-1'); - node.classList.remove('cbi-rowstyle-2'); - node.classList.add((n++ % 2) ? 'cbi-rowstyle-2' : 'cbi-rowstyle-1'); - - if (/-([^\-]+)$/.test(node.id)) - ids.push(RegExp.$1); - } - } - - var input = document.getElementById(store); - if (input) - input.value = ids.join(' '); - - window.scrollTo(0, tr.offsetTop); - void tr.offsetWidth; - tr.classList.add('flash'); - - return false; -} - -function cbi_tag_last(container) -{ - var last; - - for (var i = 0; i < container.childNodes.length; i++) { - var c = container.childNodes[i]; - if (matchesElem(c, 'div')) { - c.classList.remove('cbi-value-last'); - last = c; - } - } - - if (last) - last.classList.add('cbi-value-last'); -} - -function cbi_submit(elem, name, value, action) -{ - var form = elem.form || findParent(elem, 'form'); - - if (!form) - return false; - - if (action) - form.action = action; - - if (name) { - var hidden = form.querySelector('input[type="hidden"][name="%s"]'.format(name)) || - E('input', { type: 'hidden', name: name }); - - hidden.value = value || '1'; - form.appendChild(hidden); - } - - form.submit(); - return true; -} - -String.prototype.format = function() -{ - if (!RegExp) - return; - - var html_esc = [/&/g, '&', /"/g, '"', /'/g, ''', //g, '>']; - var quot_esc = [/"/g, '"', /'/g, ''']; - - function esc(s, r) { - if (typeof(s) !== 'string' && !(s instanceof String)) - return ''; - - for (var i = 0; i < r.length; i += 2) - s = s.replace(r[i], r[i+1]); - - return s; - } - - var str = this; - var out = ''; - var re = /^(([^%]*)%('.|0|\x20)?(-)?(\d+)?(\.\d+)?(%|b|c|d|u|f|o|s|x|X|q|h|j|t|m))/; - var a = b = [], numSubstitutions = 0, numMatches = 0; - - while (a = re.exec(str)) { - var m = a[1]; - var leftpart = a[2], pPad = a[3], pJustify = a[4], pMinLength = a[5]; - var pPrecision = a[6], pType = a[7]; - - numMatches++; - - if (pType == '%') { - subst = '%'; - } - else { - if (numSubstitutions < arguments.length) { - var param = arguments[numSubstitutions++]; - - var pad = ''; - if (pPad && pPad.substr(0,1) == "'") - pad = leftpart.substr(1,1); - else if (pPad) - pad = pPad; - else - pad = ' '; - - var justifyRight = true; - if (pJustify && pJustify === "-") - justifyRight = false; - - var minLength = -1; - if (pMinLength) - minLength = +pMinLength; - - var precision = -1; - if (pPrecision && pType == 'f') - precision = +pPrecision.substring(1); - - var subst = param; - - switch(pType) { - case 'b': - subst = (~~param || 0).toString(2); - break; - - case 'c': - subst = String.fromCharCode(+param || 0); - break; - - case 'd': - subst = (~~param || 0); - break; - - case 'u': - subst = ~~Math.abs(+param || 0); - break; - - case 'f': - subst = (precision > -1) - ? ((+param || 0.0)).toFixed(precision) - : (+param || 0.0); - break; - - case 'o': - subst = (~~param || 0).toString(8); - break; - - case 's': - subst = param; - break; - - case 'x': - subst = ('' + (~~param || 0).toString(16)).toLowerCase(); - break; - - case 'X': - subst = ('' + (~~param || 0).toString(16)).toUpperCase(); - break; - - case 'h': - subst = esc(param, html_esc); - break; - - case 'q': - subst = esc(param, quot_esc); - break; - - case 't': - var td = 0; - var th = 0; - var tm = 0; - var ts = (param || 0); - - if (ts > 60) { - tm = Math.floor(ts / 60); - ts = (ts % 60); - } - - if (tm > 60) { - th = Math.floor(tm / 60); - tm = (tm % 60); - } - - if (th > 24) { - td = Math.floor(th / 24); - th = (th % 24); - } - - subst = (td > 0) - ? String.format('%dd %dh %dm %ds', td, th, tm, ts) - : String.format('%dh %dm %ds', th, tm, ts); - - break; - - case 'm': - var mf = pMinLength ? +pMinLength : 1000; - var pr = pPrecision ? ~~(10 * +('0' + pPrecision)) : 2; - - var i = 0; - var val = (+param || 0); - var units = [ ' ', ' K', ' M', ' G', ' T', ' P', ' E' ]; - - for (i = 0; (i < units.length) && (val > mf); i++) - val /= mf; - - subst = (i ? val.toFixed(pr) : val) + units[i]; - pMinLength = null; - break; - } - } - } - - if (pMinLength) { - subst = subst.toString(); - for (var i = subst.length; i < pMinLength; i++) - if (pJustify == '-') - subst = subst + ' '; - else - subst = pad + subst; - } - - out += leftpart + subst; - str = str.substr(m.length); - } - - return out + str; -} - -String.prototype.nobr = function() -{ - return this.replace(/[\s\n]+/g, ' '); -} - -String.format = function() -{ - var a = [ ]; - - for (var i = 1; i < arguments.length; i++) - a.push(arguments[i]); - - return ''.format.apply(arguments[0], a); -} - -String.nobr = function() -{ - var a = [ ]; - - for (var i = 1; i < arguments.length; i++) - a.push(arguments[i]); - - return ''.nobr.apply(arguments[0], a); -} - -if (window.NodeList && !NodeList.prototype.forEach) { - NodeList.prototype.forEach = function (callback, thisArg) { - thisArg = thisArg || window; - for (var i = 0; i < this.length; i++) { - callback.call(thisArg, this[i], i, this); - } - }; -} - -if (!window.requestAnimationFrame) { - window.requestAnimationFrame = function(f) { - window.setTimeout(function() { - f(new Date().getTime()) - }, 1000/30); - }; -} - - -function isElem(e) { return L.dom.elem(e) } -function toElem(s) { return L.dom.parse(s) } -function matchesElem(node, selector) { return L.dom.matches(node, selector) } -function findParent(node, selector) { return L.dom.parent(node, selector) } -function E() { return L.dom.create.apply(L.dom, arguments) } - -if (typeof(window.CustomEvent) !== 'function') { - function CustomEvent(event, params) { - params = params || { bubbles: false, cancelable: false, detail: undefined }; - var evt = document.createEvent('CustomEvent'); - evt.initCustomEvent( event, params.bubbles, params.cancelable, params.detail ); - return evt; - } - - CustomEvent.prototype = window.Event.prototype; - window.CustomEvent = CustomEvent; -} - -function cbi_dropdown_init(sb) { - var dl = new L.ui.Dropdown(sb, null, { name: sb.getAttribute('name') }); - return dl.bind(sb); -} - -function cbi_update_table(table, data, placeholder) { - var target = isElem(table) ? table : document.querySelector(table); - - if (!isElem(target)) - return; - - target.querySelectorAll('.tr.table-titles, .cbi-section-table-titles').forEach(function(thead) { - var titles = []; - - thead.querySelectorAll('.th').forEach(function(th) { - titles.push(th); - }); - - if (Array.isArray(data)) { - var n = 0, rows = target.querySelectorAll('.tr'); - - data.forEach(function(row) { - var trow = E('div', { 'class': 'tr' }); - - for (var i = 0; i < titles.length; i++) { - var text = (titles[i].innerText || '').trim(); - var td = trow.appendChild(E('div', { - 'class': titles[i].className, - 'data-title': (text !== '') ? text : null - }, row[i] || '')); - - td.classList.remove('th'); - td.classList.add('td'); - } - - trow.classList.add('cbi-rowstyle-%d'.format((n++ % 2) ? 2 : 1)); - - if (rows[n]) - target.replaceChild(trow, rows[n]); - else - target.appendChild(trow); - }); - - while (rows[++n]) - target.removeChild(rows[n]); - - if (placeholder && target.firstElementChild === target.lastElementChild) { - var trow = target.appendChild(E('div', { 'class': 'tr placeholder' })); - var td = trow.appendChild(E('div', { 'class': titles[0].className }, placeholder)); - - td.classList.remove('th'); - td.classList.add('td'); - } - } - else { - thead.parentNode.style.display = 'none'; - - thead.parentNode.querySelectorAll('.tr, .cbi-section-table-row').forEach(function(trow) { - if (trow !== thead) { - var n = 0; - trow.querySelectorAll('.th, .td').forEach(function(td) { - if (n < titles.length) { - var text = (titles[n++].innerText || '').trim(); - if (text !== '') - td.setAttribute('data-title', text); - } - }); - } - }); - - thead.parentNode.style.display = ''; - } - }); -} - -function showModal(title, children) -{ - return L.showModal(title, children); -} - -function hideModal() -{ - return L.hideModal(); -} - - -document.addEventListener('DOMContentLoaded', function() { - document.addEventListener('validation-failure', function(ev) { - if (ev.target === document.activeElement) - L.showTooltip(ev); - }); - - document.addEventListener('validation-success', function(ev) { - if (ev.target === document.activeElement) - L.hideTooltip(ev); - }); - - document.querySelectorAll('.table').forEach(cbi_update_table); -}); diff --git a/luci-base/htdocs/luci-static/resources/cbi/add.gif b/luci-base/htdocs/luci-static/resources/cbi/add.gif deleted file mode 100644 index 0888abf85..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/add.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/apply.gif b/luci-base/htdocs/luci-static/resources/cbi/apply.gif deleted file mode 100644 index 82ae7ed82..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/apply.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/arrow.gif b/luci-base/htdocs/luci-static/resources/cbi/arrow.gif deleted file mode 100644 index 10d797e9b..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/arrow.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/down.gif b/luci-base/htdocs/luci-static/resources/cbi/down.gif deleted file mode 100644 index f0bb6a4ea..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/down.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/download.gif b/luci-base/htdocs/luci-static/resources/cbi/download.gif deleted file mode 100644 index f99a5383b..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/download.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/edit.gif b/luci-base/htdocs/luci-static/resources/cbi/edit.gif deleted file mode 100644 index e06e37c75..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/edit.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/fieldadd.gif b/luci-base/htdocs/luci-static/resources/cbi/fieldadd.gif deleted file mode 100644 index eebe0fffe..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/fieldadd.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/file.gif b/luci-base/htdocs/luci-static/resources/cbi/file.gif deleted file mode 100644 index 342a8463d..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/file.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/find.gif b/luci-base/htdocs/luci-static/resources/cbi/find.gif deleted file mode 100644 index 9ae5e3489..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/find.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/folder.gif b/luci-base/htdocs/luci-static/resources/cbi/folder.gif deleted file mode 100644 index 22b583bb5..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/folder.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/help.gif b/luci-base/htdocs/luci-static/resources/cbi/help.gif deleted file mode 100644 index 9dfa0e196..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/help.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/key.gif b/luci-base/htdocs/luci-static/resources/cbi/key.gif deleted file mode 100644 index e3853e5af..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/key.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/link.gif b/luci-base/htdocs/luci-static/resources/cbi/link.gif deleted file mode 100644 index f0bb78da6..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/link.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/reload.gif b/luci-base/htdocs/luci-static/resources/cbi/reload.gif deleted file mode 100644 index 8268958a1..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/reload.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/remove.gif b/luci-base/htdocs/luci-static/resources/cbi/remove.gif deleted file mode 100644 index bf43a0a0b..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/remove.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/reset.gif b/luci-base/htdocs/luci-static/resources/cbi/reset.gif deleted file mode 100644 index c941c1902..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/reset.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/save.gif b/luci-base/htdocs/luci-static/resources/cbi/save.gif deleted file mode 100644 index 35e949963..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/save.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/up.gif b/luci-base/htdocs/luci-static/resources/cbi/up.gif deleted file mode 100644 index e8234178e..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/up.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/cbi/user.gif b/luci-base/htdocs/luci-static/resources/cbi/user.gif deleted file mode 100644 index dcb5c2a89..000000000 Binary files a/luci-base/htdocs/luci-static/resources/cbi/user.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/firewall.js b/luci-base/htdocs/luci-static/resources/firewall.js deleted file mode 100644 index 8f6be1813..000000000 --- a/luci-base/htdocs/luci-static/resources/firewall.js +++ /dev/null @@ -1,568 +0,0 @@ -'use strict'; -'require uci'; -'require rpc'; -'require tools.prng as random'; - - -function initFirewallState() { - return uci.load('firewall'); -} - -function parseEnum(s, values) { - if (s == null) - return null; - - s = String(s).toUpperCase(); - - if (s == '') - return null; - - for (var i = 0; i < values.length; i++) - if (values[i].toUpperCase().indexOf(s) == 0) - return values[i]; - - return null; -} - -function parsePolicy(s, defaultValue) { - return parseEnum(s, ['DROP', 'REJECT', 'ACCEPT']) || (arguments.length < 2 ? null : defaultValue); -} - - -var Firewall, AbstractFirewallItem, Defaults, Zone, Forwarding, Redirect, Rule; - -function lookupZone(name) { - var z = uci.get('firewall', name); - - if (z != null && z['.type'] == 'zone') - return new Zone(z['.name']); - - var sections = uci.sections('firewall', 'zone'); - - for (var i = 0; i < sections.length; i++) { - if (sections[i].name != name) - continue; - - return new Zone(sections[i]['.name']); - } - - return null; -} - -function getColorForName(forName) { - if (forName == null) - return '#eeeeee'; - else if (forName == 'lan') - return '#90f090'; - else if (forName == 'wan') - return '#f09090'; - - random.seed(parseInt(sfh(forName), 16)); - - var r = random.get(128), - g = random.get(128), - min = 0, - max = 128; - - if ((r + g) < 128) - min = 128 - r - g; - else - max = 255 - r - g; - - var b = min + Math.floor(random.get() * (max - min)); - - return '#%02x%02x%02x'.format(0xff - r, 0xff - g, 0xff - b); -} - - -Firewall = L.Class.extend({ - getDefaults: function() { - return initFirewallState().then(function() { - return new Defaults(); - }); - }, - - newZone: function() { - return initFirewallState().then(L.bind(function() { - var name = 'newzone', - count = 1; - - while (this.getZone(name) != null) - name = 'newzone%d'.format(++count); - - return this.addZone(name); - }, this)); - }, - - addZone: function(name) { - return initFirewallState().then(L.bind(function() { - if (name == null || !/^[a-zA-Z0-9_]+$/.test(name)) - return null; - - if (lookupZone(name) != null) - return null; - - var d = new Defaults(), - z = uci.add('firewall', 'zone'); - - uci.set('firewall', z, 'name', name); - uci.set('firewall', z, 'network', ' '); - uci.set('firewall', z, 'input', d.getInput() || 'DROP'); - uci.set('firewall', z, 'output', d.getOutput() || 'DROP'); - uci.set('firewall', z, 'forward', d.getForward() || 'DROP'); - - return new Zone(z); - }, this)); - }, - - getZone: function(name) { - return initFirewallState().then(function() { - return lookupZone(name); - }); - }, - - getZones: function() { - return initFirewallState().then(function() { - var sections = uci.sections('firewall', 'zone'), - zones = []; - - for (var i = 0; i < sections.length; i++) - zones.push(new Zone(sections[i]['.name'])); - - zones.sort(function(a, b) { return a.getName() > b.getName() }); - - return zones; - }); - }, - - getZoneByNetwork: function(network) { - return initFirewallState().then(function() { - var sections = uci.sections('firewall', 'zone'); - - for (var i = 0; i < sections.length; i++) - if (L.toArray(sections[i].network || sections[i].name).indexOf(network) != -1) - return new Zone(sections[i]['.name']); - - return null; - }); - }, - - deleteZone: function(name) { - return initFirewallState().then(function() { - var section = uci.get('firewall', name), - found = false; - - if (section != null && section['.type'] == 'zone') { - found = true; - name = zone.name; - uci.remove('firewall', zone['.name']); - } - else if (name != null) { - var sections = uci.sections('firewall', 'zone'); - - for (var i = 0; i < sections.length; i++) { - if (sections[i].name != name) - continue; - - found = true; - uci.remove('firewall', sections[i]['.name']); - } - } - - if (found == true) { - sections = uci.sections('firewall'); - - for (var i = 0; i < sections.length; i++) { - if (sections[i]['.type'] != 'rule' && - sections[i]['.type'] != 'redirect' && - sections[i]['.type'] != 'forwarding') - continue; - - if (sections[i].src == name || sections[i].dest == name) - uci.remove('firewall', sections[i]['.name']); - } - } - - return found; - }); - }, - - renameZone: function(oldName, newName) { - return initFirewallState().then(L.bind(function() { - if (oldName == null || newName == null || !/^[a-zA-Z0-9_]+$/.test(newName)) - return false; - - if (lookupZone(newName) != null) - return false; - - var sections = uci.sections('firewall', 'zone'), - found = false; - - for (var i = 0; i < sections.length; i++) { - if (sections[i].name != oldName) - continue; - - if (L.toArray(sections[i].network).length == 0) - uci.set('firewall', sections[i]['.name'], 'network', oldName); - - uci.set('firewall', sections[i]['.name'], 'name', newName); - found = true; - } - - if (found == true) { - sections = uci.sections('firewall'); - - for (var i = 0; i < sections.length; i++) { - if (sections[i]['.type'] != 'rule' && - sections[i]['.type'] != 'redirect' && - sections[i]['.type'] != 'forwarding') - continue; - - if (sections[i].src == oldName) - uci.set('firewall', sections[i]['.name'], 'src', newName); - - if (sections[i].dest == oldName) - uci.set('firewall', sections[i]['.name'], 'dest', newName); - } - } - - return found; - }, this)); - }, - - deleteNetwork: function(network) { - return this.getZones().then(L.bind(function(zones) { - var rv = false; - - for (var i = 0; i < zones.length; i++) - if (zones[i].deleteNetwork(network)) - rv = true; - - return rv; - }, this)); - }, - - getColorForName: getColorForName -}); - - -AbstractFirewallItem = L.Class.extend({ - get: function(option) { - return uci.get('firewall', this.sid, option); - }, - - set: function(option, value) { - return uci.set('firewall', this.sid, option, value); - } -}); - - -Defaults = AbstractFirewallItem.extend({ - __init__: function() { - var sections = uci.sections('firewall', 'defaults'); - - for (var i = 0; i < sections.length; i++) { - this.sid = sections[i]['.name']; - break; - } - - if (this.sid == null) - this.sid = uci.add('firewall', 'defaults'); - }, - - isSynFlood: function() { - return (this.get('syn_flood') == '1'); - }, - - isDropInvalid: function() { - return (this.get('drop_invalid') == '1'); - }, - - getInput: function() { - return parsePolicy(this.get('input'), 'DROP'); - }, - - getOutput: function() { - return parsePolicy(this.get('output'), 'DROP'); - }, - - getForward: function() { - return parsePolicy(this.get('forward'), 'DROP'); - } -}); - - -Zone = AbstractFirewallItem.extend({ - __init__: function(name) { - var section = uci.get('firewall', name); - - if (section != null && section['.type'] == 'zone') { - this.sid = name; - this.data = section; - } - else if (name != null) { - var sections = uci.get('firewall', 'zone'); - - for (var i = 0; i < sections.length; i++) { - if (sections[i].name != name) - continue; - - this.sid = sections[i]['.name']; - this.data = sections[i]; - break; - } - } - }, - - isMasquerade: function() { - return (this.get('masq') == '1'); - }, - - getName: function() { - return this.get('name'); - }, - - getNetwork: function() { - return this.get('network'); - }, - - getInput: function() { - return parsePolicy(this.get('input'), (new Defaults()).getInput()); - }, - - getOutput: function() { - return parsePolicy(this.get('output'), (new Defaults()).getOutput()); - }, - - getForward: function() { - return parsePolicy(this.get('forward'), (new Defaults()).getForward()); - }, - - addNetwork: function(network) { - var section = uci.get('network', network); - - if (section == null || section['.type'] != 'interface') - return false; - - var newNetworks = this.getNetworks(); - - if (newNetworks.filter(function(net) { return net == network }).length) - return false; - - newNetworks.push(network); - this.set('network', newNetworks.join(' ')); - - return true; - }, - - deleteNetwork: function(network) { - var oldNetworks = this.getNetworks(), - newNetworks = oldNetworks.filter(function(net) { return net != network }); - - if (newNetworks.length > 0) - this.set('network', newNetworks.join(' ')); - else - this.set('network', ' '); - - return (newNetworks.length < oldNetworks.length); - }, - - getNetworks: function() { - return L.toArray(this.get('network') || this.get('name')); - }, - - clearNetworks: function() { - this.set('network', ' '); - }, - - getDevices: function() { - return L.toArray(this.get('device')); - }, - - getSubnets: function() { - return L.toArray(this.get('subnet')); - }, - - getForwardingsBy: function(what) { - var sections = uci.sections('firewall', 'forwarding'), - forwards = []; - - for (var i = 0; i < sections.length; i++) { - if (sections[i].src == null || sections[i].dest == null) - continue; - - if (sections[i][what] != this.getName()) - continue; - - forwards.push(new Forwarding(sections[i]['.name'])); - } - - return forwards; - }, - - addForwardingTo: function(dest) { - var forwards = this.getForwardingsBy('src'), - zone = lookupZone(dest); - - if (zone == null || zone.getName() == this.getName()) - return null; - - for (var i = 0; i < forwards.length; i++) - if (forwards[i].getDestination() == zone.getName()) - return null; - - var sid = uci.add('firewall', 'forwarding'); - - uci.set('firewall', sid, 'src', this.getName()); - uci.set('firewall', sid, 'dest', zone.getName()); - - return new Forwarding(sid); - }, - - addForwardingFrom: function(src) { - var forwards = this.getForwardingsBy('dest'), - zone = lookupZone(src); - - if (zone == null || zone.getName() == this.getName()) - return null; - - for (var i = 0; i < forwards.length; i++) - if (forwards[i].getSource() == zone.getName()) - return null; - - var sid = uci.add('firewall', 'forwarding'); - - uci.set('firewall', sid, 'src', zone.getName()); - uci.set('firewall', sid, 'dest', this.getName()); - - return new Forwarding(sid); - }, - - deleteForwardingsBy: function(what) { - var sections = uci.sections('firewall', 'forwarding'), - found = false; - - for (var i = 0; i < sections.length; i++) { - if (sections[i].src == null || sections[i].dest == null) - continue; - - if (sections[i][what] != this.getName()) - continue; - - uci.remove('firewall', sections[i]['.name']); - found = true; - } - - return found; - }, - - deleteForwarding: function(forwarding) { - if (!(forwarding instanceof Forwarding)) - return false; - - var section = uci.get('firewall', forwarding.sid); - - if (!section || section['.type'] != 'forwarding') - return false; - - uci.remove('firewall', section['.name']); - - return true; - }, - - addRedirect: function(options) { - var sid = uci.add('firewall', 'redirect'); - - if (options != null && typeof(options) == 'object') - for (var key in options) - if (options.hasOwnProperty(key)) - uci.set('firewall', sid, key, options[key]); - - uci.set('firewall', sid, 'src', this.getName()); - - return new Redirect(sid); - }, - - addRule: function(options) { - var sid = uci.add('firewall', 'rule'); - - if (options != null && typeof(options) == 'object') - for (var key in options) - if (options.hasOwnProperty(key)) - uci.set('firewall', sid, key, options[key]); - - uci.set('firewall', sid, 'src', this.getName()); - - return new Redirect(sid); - }, - - getColor: function(forName) { - var name = (arguments.length > 0 ? forName : this.getName()); - - return getColorForName(name); - } -}); - - -Forwarding = AbstractFirewallItem.extend({ - __init__: function(sid) { - this.sid = sid; - }, - - getSource: function() { - return this.get('src'); - }, - - getDestination: function() { - return this.get('dest'); - }, - - getSourceZone: function() { - return lookupZone(this.getSource()); - }, - - getDestinationZone: function() { - return lookupZone(this.getDestination()); - } -}); - - -Rule = AbstractFirewallItem.extend({ - getSource: function() { - return this.get('src'); - }, - - getDestination: function() { - return this.get('dest'); - }, - - getSourceZone: function() { - return lookupZone(this.getSource()); - }, - - getDestinationZone: function() { - return lookupZone(this.getDestination()); - } -}); - - -Redirect = AbstractFirewallItem.extend({ - getSource: function() { - return this.get('src'); - }, - - getDestination: function() { - return this.get('dest'); - }, - - getSourceZone: function() { - return lookupZone(this.getSource()); - }, - - getDestinationZone: function() { - return lookupZone(this.getDestination()); - } -}); - - -return Firewall; diff --git a/luci-base/htdocs/luci-static/resources/form.js b/luci-base/htdocs/luci-static/resources/form.js deleted file mode 100644 index cc72d6e48..000000000 --- a/luci-base/htdocs/luci-static/resources/form.js +++ /dev/null @@ -1,1744 +0,0 @@ -'use strict'; -'require ui'; -'require uci'; - -var scope = this; - -var CBINode = Class.extend({ - __init__: function(title, description) { - this.title = title || ''; - this.description = description || ''; - this.children = []; - }, - - append: function(obj) { - this.children.push(obj); - }, - - parse: function() { - var args = arguments; - this.children.forEach(function(child) { - child.parse.apply(child, args); - }); - }, - - render: function() { - L.error('InternalError', 'Not implemented'); - }, - - loadChildren: function(/* ... */) { - var tasks = []; - - if (Array.isArray(this.children)) - for (var i = 0; i < this.children.length; i++) - if (!this.children[i].disable) - tasks.push(this.children[i].load.apply(this.children[i], arguments)); - - return Promise.all(tasks); - }, - - renderChildren: function(tab_name /*, ... */) { - var tasks = [], - index = 0; - - if (Array.isArray(this.children)) - for (var i = 0; i < this.children.length; i++) - if (tab_name === null || this.children[i].tab === tab_name) - if (!this.children[i].disable) - tasks.push(this.children[i].render.apply( - this.children[i], this.varargs(arguments, 1, index++))); - - return Promise.all(tasks); - }, - - stripTags: function(s) { - if (!s.match(/[<>]/)) - return s; - - var x = E('div', {}, s); - return x.textContent || x.innerText || ''; - }, - - titleFn: function(attr /*, ... */) { - var s = null; - - if (typeof(this[attr]) == 'function') - s = this[attr].apply(this, this.varargs(arguments, 1)); - else if (typeof(this[attr]) == 'string') - s = (arguments.length > 1) ? ''.format.apply(this[attr], this.varargs(arguments, 1)) : this[attr]; - - if (s != null) - s = this.stripTags(String(s)).trim(); - - if (s == null || s == '') - return null; - - return s; - } -}); - -var CBIMap = CBINode.extend({ - __init__: function(config /*, ... */) { - this.super('__init__', this.varargs(arguments, 1)); - - this.config = config; - this.parsechain = [ config ]; - }, - - findElements: function(/* ... */) { - var q = null; - - if (arguments.length == 1) - q = arguments[0]; - else if (arguments.length == 2) - q = '[%s="%s"]'.format(arguments[0], arguments[1]); - else - L.error('InternalError', 'Expecting one or two arguments to findElements()'); - - return this.root.querySelectorAll(q); - }, - - findElement: function(/* ... */) { - var res = this.findElements.apply(this, arguments); - return res.length ? res[0] : null; - }, - - chain: function(config) { - if (this.parsechain.indexOf(config) == -1) - this.parsechain.push(config); - }, - - section: function(cbiClass /*, ... */) { - if (!CBIAbstractSection.isSubclass(cbiClass)) - L.error('TypeError', 'Class must be a descendent of CBIAbstractSection'); - - var obj = cbiClass.instantiate(this.varargs(arguments, 1, this)); - this.append(obj); - return obj; - }, - - load: function() { - return uci.load(this.parsechain || [ this.config ]) - .then(this.loadChildren.bind(this)); - }, - - parse: function() { - var tasks = []; - - if (Array.isArray(this.children)) - for (var i = 0; i < this.children.length; i++) - tasks.push(this.children[i].parse()); - - return Promise.all(tasks); - }, - - save: function(cb) { - this.checkDepends(); - - return this.parse() - .then(cb) - .then(uci.save.bind(uci)) - .then(this.load.bind(this)) - .then(this.renderContents.bind(this)) - .catch(function(e) { - alert('Cannot save due to invalid values') - return Promise.reject(); - }); - }, - - reset: function() { - return this.renderContents(); - }, - - render: function() { - return this.load().then(this.renderContents.bind(this)); - }, - - renderContents: function() { - var mapEl = this.root || (this.root = E('div', { - 'id': 'cbi-%s'.format(this.config), - 'class': 'cbi-map', - 'cbi-dependency-check': L.bind(this.checkDepends, this) - })); - - L.dom.bindClassInstance(mapEl, this); - - return this.renderChildren(null).then(L.bind(function(nodes) { - var initialRender = !mapEl.firstChild; - - L.dom.content(mapEl, null); - - if (this.title != null && this.title != '') - mapEl.appendChild(E('h2', { 'name': 'content' }, this.title)); - - if (this.description != null && this.description != '') - mapEl.appendChild(E('div', { 'class': 'cbi-map-descr' }, this.description)); - - if (this.tabbed) - L.dom.append(mapEl, E('div', { 'class': 'cbi-map-tabbed' }, nodes)); - else - L.dom.append(mapEl, nodes); - - if (!initialRender) { - mapEl.classList.remove('flash'); - - window.setTimeout(function() { - mapEl.classList.add('flash'); - }, 1); - } - - this.checkDepends(); - - var tabGroups = mapEl.querySelectorAll('.cbi-map-tabbed, .cbi-section-node-tabbed'); - - for (var i = 0; i < tabGroups.length; i++) - ui.tabs.initTabGroup(tabGroups[i].childNodes); - - return mapEl; - }, this)); - }, - - lookupOption: function(name, section_id, config_name) { - var id, elem, sid, inst; - - if (name.indexOf('.') > -1) - id = 'cbid.%s'.format(name); - else - id = 'cbid.%s.%s.%s'.format(config_name || this.config, section_id, name); - - elem = this.findElement('data-field', id); - sid = elem ? id.split(/\./)[2] : null; - inst = elem ? L.dom.findClassInstance(elem) : null; - - return (inst instanceof CBIAbstractValue) ? [ inst, sid ] : null; - }, - - checkDepends: function(ev, n) { - var changed = false; - - for (var i = 0, s = this.children[0]; (s = this.children[i]) != null; i++) - if (s.checkDepends(ev, n)) - changed = true; - - if (changed && (n || 0) < 10) - this.checkDepends(ev, (n || 10) + 1); - - ui.tabs.updateTabs(ev, this.root); - } -}); - -var CBIAbstractSection = CBINode.extend({ - __init__: function(map, sectionType /*, ... */) { - this.super('__init__', this.varargs(arguments, 2)); - - this.sectiontype = sectionType; - this.map = map; - this.config = map.config; - - this.optional = true; - this.addremove = false; - this.dynamic = false; - }, - - cfgsections: function() { - L.error('InternalError', 'Not implemented'); - }, - - filter: function(section_id) { - return true; - }, - - load: function() { - var section_ids = this.cfgsections(), - tasks = []; - - if (Array.isArray(this.children)) - for (var i = 0; i < section_ids.length; i++) - tasks.push(this.loadChildren(section_ids[i]) - .then(Function.prototype.bind.call(function(section_id, set_values) { - for (var i = 0; i < set_values.length; i++) - this.children[i].cfgvalue(section_id, set_values[i]); - }, this, section_ids[i]))); - - return Promise.all(tasks); - }, - - parse: function() { - var section_ids = this.cfgsections(), - tasks = []; - - if (Array.isArray(this.children)) - for (var i = 0; i < section_ids.length; i++) - for (var j = 0; j < this.children.length; j++) - tasks.push(this.children[j].parse(section_ids[i])); - - return Promise.all(tasks); - }, - - tab: function(name, title, description) { - if (this.tabs && this.tabs[name]) - throw 'Tab already declared'; - - var entry = { - name: name, - title: title, - description: description, - children: [] - }; - - this.tabs = this.tabs || []; - this.tabs.push(entry); - this.tabs[name] = entry; - - this.tab_names = this.tab_names || []; - this.tab_names.push(name); - }, - - option: function(cbiClass /*, ... */) { - if (!CBIAbstractValue.isSubclass(cbiClass)) - throw L.error('TypeError', 'Class must be a descendent of CBIAbstractValue'); - - var obj = cbiClass.instantiate(this.varargs(arguments, 1, this.map, this)); - this.append(obj); - return obj; - }, - - taboption: function(tabName /*, ... */) { - if (!this.tabs || !this.tabs[tabName]) - throw L.error('ReferenceError', 'Associated tab not declared'); - - var obj = this.option.apply(this, this.varargs(arguments, 1)); - obj.tab = tabName; - this.tabs[tabName].children.push(obj); - return obj; - }, - - renderUCISection: function(section_id) { - var renderTasks = []; - - if (!this.tabs) - return this.renderOptions(null, section_id); - - for (var i = 0; i < this.tab_names.length; i++) - renderTasks.push(this.renderOptions(this.tab_names[i], section_id)); - - return Promise.all(renderTasks) - .then(this.renderTabContainers.bind(this, section_id)); - }, - - renderTabContainers: function(section_id, nodes) { - var config_name = this.uciconfig || this.map.config, - containerEls = E([]); - - for (var i = 0; i < nodes.length; i++) { - var tab_name = this.tab_names[i], - tab_data = this.tabs[tab_name], - containerEl = E('div', { - 'id': 'container.%s.%s.%s'.format(config_name, section_id, tab_name), - 'data-tab': tab_name, - 'data-tab-title': tab_data.title, - 'data-tab-active': tab_name === this.selected_tab - }); - - if (tab_data.description != null && tab_data.description != '') - containerEl.appendChild( - E('div', { 'class': 'cbi-tab-descr' }, tab_data.description)); - - containerEl.appendChild(nodes[i]); - containerEls.appendChild(containerEl); - } - - return containerEls; - }, - - renderOptions: function(tab_name, section_id) { - var in_table = (this instanceof CBITableSection); - return this.renderChildren(tab_name, section_id, in_table).then(function(nodes) { - var optionEls = E([]); - for (var i = 0; i < nodes.length; i++) - optionEls.appendChild(nodes[i]); - return optionEls; - }); - }, - - checkDepends: function(ev, n) { - var changed = false, - sids = this.cfgsections(); - - for (var i = 0, sid = sids[0]; (sid = sids[i]) != null; i++) { - for (var j = 0, o = this.children[0]; (o = this.children[j]) != null; j++) { - var isActive = o.isActive(sid), - isSatisified = o.checkDepends(sid); - - if (isActive != isSatisified) { - o.setActive(sid, !isActive); - changed = true; - } - - if (!n && isActive) - o.triggerValidation(sid); - } - } - - return changed; - } -}); - - -var isEqual = function(x, y) { - if (x != null && y != null && typeof(x) != typeof(y)) - return false; - - if ((x == null && y != null) || (x != null && y == null)) - return false; - - if (Array.isArray(x)) { - if (x.length != y.length) - return false; - - for (var i = 0; i < x.length; i++) - if (!isEqual(x[i], y[i])) - return false; - } - else if (typeof(x) == 'object') { - for (var k in x) { - if (x.hasOwnProperty(k) && !y.hasOwnProperty(k)) - return false; - - if (!isEqual(x[k], y[k])) - return false; - } - - for (var k in y) - if (y.hasOwnProperty(k) && !x.hasOwnProperty(k)) - return false; - } - else if (x != y) { - return false; - } - - return true; -}; - -var CBIAbstractValue = CBINode.extend({ - __init__: function(map, section, option /*, ... */) { - this.super('__init__', this.varargs(arguments, 3)); - - this.section = section; - this.option = option; - this.map = map; - this.config = map.config; - - this.deps = []; - this.initial = {}; - this.rmempty = true; - this.default = null; - this.size = null; - this.optional = false; - }, - - depends: function(field, value) { - var deps; - - if (typeof(field) === 'string') - deps = {}, deps[field] = value; - else - deps = field; - - this.deps.push(deps); - }, - - transformDepList: function(section_id, deplist) { - var list = deplist || this.deps, - deps = []; - - if (Array.isArray(list)) { - for (var i = 0; i < list.length; i++) { - var dep = {}; - - for (var k in list[i]) { - if (list[i].hasOwnProperty(k)) { - if (k.charAt(0) === '!') - dep[k] = list[i][k]; - else if (k.indexOf('.') !== -1) - dep['cbid.%s'.format(k)] = list[i][k]; - else - dep['cbid.%s.%s.%s'.format( - this.uciconfig || this.section.uciconfig || this.map.config, - this.ucisection || section_id, - k - )] = list[i][k]; - } - } - - for (var k in dep) { - if (dep.hasOwnProperty(k)) { - deps.push(dep); - break; - } - } - } - } - - return deps; - }, - - transformChoices: function() { - if (!Array.isArray(this.keylist) || this.keylist.length == 0) - return null; - - var choices = {}; - - for (var i = 0; i < this.keylist.length; i++) - choices[this.keylist[i]] = this.vallist[i]; - - return choices; - }, - - checkDepends: function(section_id) { - var def = false; - - if (!Array.isArray(this.deps) || !this.deps.length) - return true; - - for (var i = 0; i < this.deps.length; i++) { - var istat = true, - reverse = false; - - for (var dep in this.deps[i]) { - if (dep == '!reverse') { - reverse = true; - } - else if (dep == '!default') { - def = true; - istat = false; - } - else { - var conf = this.uciconfig || this.section.uciconfig || this.map.config, - res = this.map.lookupOption(dep, section_id, conf), - val = res ? res[0].formvalue(res[1]) : null; - - istat = (istat && isEqual(val, this.deps[i][dep])); - } - } - - if (istat ^ reverse) - return true; - } - - return def; - }, - - cbid: function(section_id) { - if (section_id == null) - L.error('TypeError', 'Section ID required'); - - return 'cbid.%s.%s.%s'.format( - this.uciconfig || this.section.uciconfig || this.map.config, - section_id, this.option); - }, - - load: function(section_id) { - if (section_id == null) - L.error('TypeError', 'Section ID required'); - - return uci.get( - this.uciconfig || this.section.uciconfig || this.map.config, - this.ucisection || section_id, - this.ucioption || this.option); - }, - - cfgvalue: function(section_id, set_value) { - if (section_id == null) - L.error('TypeError', 'Section ID required'); - - if (arguments.length == 2) { - this.data = this.data || {}; - this.data[section_id] = set_value; - } - - return this.data ? this.data[section_id] : null; - }, - - formvalue: function(section_id) { - var node = this.map.findElement('id', this.cbid(section_id)); - return node ? L.dom.callClassMethod(node, 'getValue') : null; - }, - - textvalue: function(section_id) { - var cval = this.cfgvalue(section_id); - - if (cval == null) - cval = this.default; - - return (cval != null) ? '%h'.format(cval) : null; - }, - - validate: function(section_id, value) { - return true; - }, - - isValid: function(section_id) { - var node = this.map.findElement('id', this.cbid(section_id)); - return node ? L.dom.callClassMethod(node, 'isValid') : true; - }, - - isActive: function(section_id) { - var field = this.map.findElement('data-field', this.cbid(section_id)); - return (field != null && !field.classList.contains('hidden')); - }, - - setActive: function(section_id, active) { - var field = this.map.findElement('data-field', this.cbid(section_id)); - - if (field && field.classList.contains('hidden') == active) { - field.classList[active ? 'remove' : 'add']('hidden'); - return true; - } - - return false; - }, - - triggerValidation: function(section_id) { - var node = this.map.findElement('id', this.cbid(section_id)); - return node ? L.dom.callClassMethod(node, 'triggerValidation') : true; - }, - - parse: function(section_id) { - var active = this.isActive(section_id), - cval = this.cfgvalue(section_id), - fval = active ? this.formvalue(section_id) : null; - - if (active && !this.isValid(section_id)) - return Promise.reject(); - - if (fval != '' && fval != null) { - if (this.forcewrite || !isEqual(cval, fval)) - return Promise.resolve(this.write(section_id, fval)); - } - else { - if (this.rmempty || this.optional) { - return Promise.resolve(this.remove(section_id)); - } - else if (!isEqual(cval, fval)) { - console.log('This should have been catched by isValid()'); - return Promise.reject(); - } - } - - return Promise.resolve(); - }, - - write: function(section_id, formvalue) { - return uci.set( - this.uciconfig || this.section.uciconfig || this.map.config, - this.ucisection || section_id, - this.ucioption || this.option, - formvalue); - }, - - remove: function(section_id) { - return uci.unset( - this.uciconfig || this.section.uciconfig || this.map.config, - this.ucisection || section_id, - this.ucioption || this.option); - } -}); - -var CBITypedSection = CBIAbstractSection.extend({ - __name__: 'CBI.TypedSection', - - cfgsections: function() { - return uci.sections(this.uciconfig || this.map.config, this.sectiontype) - .map(function(s) { return s['.name'] }) - .filter(L.bind(this.filter, this)); - }, - - handleAdd: function(ev, name) { - var config_name = this.uciconfig || this.map.config; - - uci.add(config_name, this.sectiontype, name); - this.map.save(); - }, - - handleRemove: function(section_id, ev) { - var config_name = this.uciconfig || this.map.config; - - uci.remove(config_name, section_id); - this.map.save(); - }, - - renderSectionAdd: function(extra_class) { - if (!this.addremove) - return E([]); - - var createEl = E('div', { 'class': 'cbi-section-create' }), - config_name = this.uciconfig || this.map.config, - btn_title = this.titleFn('addbtntitle'); - - if (extra_class != null) - createEl.classList.add(extra_class); - - if (this.anonymous) { - createEl.appendChild(E('input', { - 'type': 'submit', - 'class': 'cbi-button cbi-button-add', - 'value': btn_title || _('Add'), - 'title': btn_title || _('Add'), - 'click': L.bind(this.handleAdd, this) - })); - } - else { - var nameEl = E('input', { - 'type': 'text', - 'class': 'cbi-section-create-name' - }); - - L.dom.append(createEl, [ - E('div', {}, nameEl), - E('input', { - 'class': 'cbi-button cbi-button-add', - 'type': 'submit', - 'value': btn_title || _('Add'), - 'title': btn_title || _('Add'), - 'click': L.bind(function(ev) { - if (nameEl.classList.contains('cbi-input-invalid')) - return; - - this.handleAdd(ev, nameEl.value); - }, this) - }) - ]); - - ui.addValidator(nameEl, 'uciname', true, 'blur', 'keyup'); - } - - return createEl; - }, - - renderSectionPlaceholder: function() { - return E([ - E('em', _('This section contains no values yet')), - E('br'), E('br') - ]); - }, - - renderContents: function(cfgsections, nodes) { - var section_id = null, - config_name = this.uciconfig || this.map.config, - sectionEl = E('div', { - 'id': 'cbi-%s-%s'.format(config_name, this.sectiontype), - 'class': 'cbi-section', - 'data-tab': this.map.tabbed ? this.sectiontype : null, - 'data-tab-title': this.map.tabbed ? this.title || this.sectiontype : null - }); - - if (this.title != null && this.title != '') - sectionEl.appendChild(E('legend', {}, this.title)); - - if (this.description != null && this.description != '') - sectionEl.appendChild(E('div', { 'class': 'cbi-section-descr' }, this.description)); - - for (var i = 0; i < nodes.length; i++) { - if (this.addremove) { - sectionEl.appendChild( - E('div', { 'class': 'cbi-section-remove right' }, - E('input', { - 'type': 'submit', - 'class': 'cbi-button', - 'name': 'cbi.rts.%s.%s'.format(config_name, cfgsections[i]), - 'value': _('Delete'), - 'data-section-id': cfgsections[i], - 'click': L.bind(this.handleRemove, this, cfgsections[i]) - }))); - } - - if (!this.anonymous) - sectionEl.appendChild(E('h3', cfgsections[i].toUpperCase())); - - sectionEl.appendChild(E('div', { - 'id': 'cbi-%s-%s'.format(config_name, cfgsections[i]), - 'class': this.tabs - ? 'cbi-section-node cbi-section-node-tabbed' : 'cbi-section-node', - 'data-section-id': cfgsections[i] - }, nodes[i])); - } - - if (nodes.length == 0) - sectionEl.appendChild(this.renderSectionPlaceholder()); - - sectionEl.appendChild(this.renderSectionAdd()); - - L.dom.bindClassInstance(sectionEl, this); - - return sectionEl; - }, - - render: function() { - var cfgsections = this.cfgsections(), - renderTasks = []; - - for (var i = 0; i < cfgsections.length; i++) - renderTasks.push(this.renderUCISection(cfgsections[i])); - - return Promise.all(renderTasks).then(this.renderContents.bind(this, cfgsections)); - } -}); - -var CBITableSection = CBITypedSection.extend({ - __name__: 'CBI.TableSection', - - tab: function() { - throw 'Tabs are not supported by TableSection'; - }, - - renderContents: function(cfgsections, nodes) { - var section_id = null, - config_name = this.uciconfig || this.map.config, - max_cols = isNaN(this.max_cols) ? this.children.length : this.max_cols, - has_more = max_cols < this.children.length, - sectionEl = E('div', { - 'id': 'cbi-%s-%s'.format(config_name, this.sectiontype), - 'class': 'cbi-section cbi-tblsection', - 'data-tab': this.map.tabbed ? this.sectiontype : null, - 'data-tab-title': this.map.tabbed ? this.title || this.sectiontype : null - }), - tableEl = E('div', { - 'class': 'table cbi-section-table' - }); - - if (this.title != null && this.title != '') - sectionEl.appendChild(E('h3', {}, this.title)); - - if (this.description != null && this.description != '') - sectionEl.appendChild(E('div', { 'class': 'cbi-section-descr' }, this.description)); - - tableEl.appendChild(this.renderHeaderRows(max_cols)); - - for (var i = 0; i < nodes.length; i++) { - var sectionname = this.titleFn('sectiontitle', cfgsections[i]); - - var trEl = E('div', { - 'id': 'cbi-%s-%s'.format(config_name, cfgsections[i]), - 'class': 'tr cbi-section-table-row', - 'data-sid': cfgsections[i], - 'draggable': this.sortable ? true : null, - 'mousedown': this.sortable ? L.bind(this.handleDragInit, this) : null, - 'dragstart': this.sortable ? L.bind(this.handleDragStart, this) : null, - 'dragover': this.sortable ? L.bind(this.handleDragOver, this) : null, - 'dragenter': this.sortable ? L.bind(this.handleDragEnter, this) : null, - 'dragleave': this.sortable ? L.bind(this.handleDragLeave, this) : null, - 'dragend': this.sortable ? L.bind(this.handleDragEnd, this) : null, - 'drop': this.sortable ? L.bind(this.handleDrop, this) : null, - 'data-title': (sectionname && (!this.anonymous || this.sectiontitle)) ? sectionname : null, - 'data-section-id': cfgsections[i] - }); - - if (this.extedit || this.rowcolors) - trEl.classList.add(!(tableEl.childNodes.length % 2) - ? 'cbi-rowstyle-1' : 'cbi-rowstyle-2'); - - for (var j = 0; j < max_cols && nodes[i].firstChild; j++) - trEl.appendChild(nodes[i].firstChild); - - trEl.appendChild(this.renderRowActions(cfgsections[i], has_more ? _('More…') : null)); - tableEl.appendChild(trEl); - } - - if (nodes.length == 0) - tableEl.appendChild(E('div', { 'class': 'tr cbi-section-table-row placeholder' }, - E('div', { 'class': 'td' }, - E('em', {}, _('This section contains no values yet'))))); - - sectionEl.appendChild(tableEl); - - sectionEl.appendChild(this.renderSectionAdd('cbi-tblsection-create')); - - L.dom.bindClassInstance(sectionEl, this); - - return sectionEl; - }, - - renderHeaderRows: function(max_cols) { - var has_titles = false, - has_descriptions = false, - anon_class = (!this.anonymous || this.sectiontitle) ? 'named' : 'anonymous', - trEls = E([]); - - for (var i = 0, opt; i < max_cols && (opt = this.children[i]) != null; i++) { - if (opt.optional || opt.modalonly) - continue; - - has_titles = has_titles || !!opt.title; - has_descriptions = has_descriptions || !!opt.description; - } - - if (has_titles) { - var trEl = E('div', { - 'class': 'tr cbi-section-table-titles ' + anon_class, - 'data-title': (!this.anonymous || this.sectiontitle) ? _('Name') : null - }); - - for (var i = 0, opt; i < max_cols && (opt = this.children[i]) != null; i++) { - if (opt.optional || opt.modalonly) - continue; - - trEl.appendChild(E('div', { - 'class': 'th cbi-section-table-cell', - 'data-type': opt.__name__ - })); - - if (opt.width != null) - trEl.lastElementChild.style.width = - (typeof(opt.width) == 'number') ? opt.width+'px' : opt.width; - - if (opt.titleref) - trEl.lastElementChild.appendChild(E('a', { - 'href': opt.titleref, - 'class': 'cbi-title-ref', - 'title': this.titledesc || _('Go to relevant configuration page') - }, opt.title)); - else - L.dom.content(trEl.lastElementChild, opt.title); - } - - if (this.sortable || this.extedit || this.addremove || has_more) - trEl.appendChild(E('div', { - 'class': 'th cbi-section-table-cell cbi-section-actions' - })); - - trEls.appendChild(trEl); - } - - if (has_descriptions) { - var trEl = E('div', { - 'class': 'tr cbi-section-table-descr ' + anon_class - }); - - for (var i = 0, opt; i < max_cols && (opt = this.children[i]) != null; i++) { - if (opt.optional || opt.modalonly) - continue; - - trEl.appendChild(E('div', { - 'class': 'th cbi-section-table-cell', - 'data-type': opt.__name__ - }, opt.description)); - - if (opt.width != null) - trEl.lastElementChild.style.width = - (typeof(opt.width) == 'number') ? opt.width+'px' : opt.width; - } - - if (this.sortable || this.extedit || this.addremove || has_more) - trEl.appendChild(E('div', { - 'class': 'th cbi-section-table-cell cbi-section-actions' - })); - - trEls.appendChild(trEl); - } - - return trEls; - }, - - renderRowActions: function(section_id, more_label) { - var config_name = this.uciconfig || this.map.config; - - if (!this.sortable && !this.extedit && !this.addremove && !more_label) - return E([]); - - var tdEl = E('div', { - 'class': 'td cbi-section-table-cell nowrap cbi-section-actions' - }, E('div')); - - if (this.sortable) { - L.dom.append(tdEl.lastElementChild, [ - E('div', { - 'title': _('Drag to reorder'), - 'class': 'cbi-button drag-handle center', - 'style': 'cursor:move' - }, '☰') - ]); - } - - if (this.extedit) { - var evFn = null; - - if (typeof(this.extedit) == 'function') - evFn = L.bind(this.extedit, this); - else if (typeof(this.extedit) == 'string') - evFn = L.bind(function(sid, ev) { - location.href = this.extedit.format(sid); - }, this, section_id); - - L.dom.append(tdEl.lastElementChild, - E('input', { - 'type': 'button', - 'value': _('Edit'), - 'title': _('Edit'), - 'class': 'cbi-button cbi-button-edit', - 'click': evFn - }) - ); - } - - if (more_label) { - L.dom.append(tdEl.lastElementChild, - E('input', { - 'type': 'button', - 'value': more_label, - 'title': more_label, - 'class': 'cbi-button cbi-button-edit', - 'click': L.bind(this.renderMoreOptionsModal, this, section_id) - }) - ); - } - - if (this.addremove) { - var btn_title = this.titleFn('removebtntitle', section_id); - - L.dom.append(tdEl.lastElementChild, - E('input', { - 'type': 'submit', - 'value': btn_title || _('Delete'), - 'title': btn_title || _('Delete'), - 'class': 'cbi-button cbi-button-remove', - 'click': L.bind(function(sid, ev) { - uci.remove(config_name, sid); - this.map.save(); - }, this, section_id) - }) - ); - } - - return tdEl; - }, - - handleDragInit: function(ev) { - scope.dragState = { node: ev.target }; - }, - - handleDragStart: function(ev) { - if (!scope.dragState || !scope.dragState.node.classList.contains('drag-handle')) { - scope.dragState = null; - ev.preventDefault(); - return false; - } - - scope.dragState.node = L.dom.parent(scope.dragState.node, '.tr'); - ev.dataTransfer.setData('text', 'drag'); - ev.target.style.opacity = 0.4; - }, - - handleDragOver: function(ev) { - var n = scope.dragState.targetNode, - r = scope.dragState.rect, - t = r.top + r.height / 2; - - if (ev.clientY <= t) { - n.classList.remove('drag-over-below'); - n.classList.add('drag-over-above'); - } - else { - n.classList.remove('drag-over-above'); - n.classList.add('drag-over-below'); - } - - ev.dataTransfer.dropEffect = 'move'; - ev.preventDefault(); - return false; - }, - - handleDragEnter: function(ev) { - scope.dragState.rect = ev.currentTarget.getBoundingClientRect(); - scope.dragState.targetNode = ev.currentTarget; - }, - - handleDragLeave: function(ev) { - ev.currentTarget.classList.remove('drag-over-above'); - ev.currentTarget.classList.remove('drag-over-below'); - }, - - handleDragEnd: function(ev) { - var n = ev.target; - - n.style.opacity = ''; - n.classList.add('flash'); - n.parentNode.querySelectorAll('.drag-over-above, .drag-over-below') - .forEach(function(tr) { - tr.classList.remove('drag-over-above'); - tr.classList.remove('drag-over-below'); - }); - }, - - handleDrop: function(ev) { - var s = scope.dragState; - - if (s.node && s.targetNode) { - var config_name = this.uciconfig || this.map.config, - ref_node = s.targetNode, - after = false; - - if (ref_node.classList.contains('drag-over-below')) { - ref_node = ref_node.nextElementSibling; - after = true; - } - - var sid1 = s.node.getAttribute('data-sid'), - sid2 = s.targetNode.getAttribute('data-sid'); - - s.node.parentNode.insertBefore(s.node, ref_node); - uci.move(config_name, sid1, sid2, after); - } - - scope.dragState = null; - ev.target.style.opacity = ''; - ev.stopPropagation(); - ev.preventDefault(); - return false; - }, - - handleModalCancel: function(modalMap, ev) { - return Promise.resolve(L.ui.hideModal()); - }, - - handleModalSave: function(modalMap, ev) { - return modalMap.save() - .then(L.bind(this.map.load, this.map)) - .then(L.bind(this.map.reset, this.map)) - .then(L.ui.hideModal) - .catch(function() {}); - }, - - addModalOptions: function(modalSection, section_id, ev) { - - }, - - renderMoreOptionsModal: function(section_id, ev) { - var parent = this.map, - title = parent.title, - name = null, - m = new CBIMap(this.map.config, null, null), - s = m.section(CBINamedSection, section_id, this.sectiontype); - - s.tabs = this.tabs; - s.tab_names = this.tab_names; - - if ((name = this.titleFn('modaltitle', section_id)) != null) - title = name; - else if ((name = this.titleFn('sectiontitle', section_id)) != null) - title = '%s - %s'.format(parent.title, name); - else if (!this.anonymous) - title = '%s - %s'.format(parent.title, section_id); - - for (var i = 0; i < this.children.length; i++) { - var o1 = this.children[i]; - - if (o1.modalonly === false) - continue; - - var o2 = s.option(o1.constructor, o1.option, o1.title, o1.description); - - for (var k in o1) { - if (!o1.hasOwnProperty(k)) - continue; - - switch (k) { - case 'map': - case 'section': - case 'option': - case 'title': - case 'description': - continue; - - default: - o2[k] = o1[k]; - } - } - } - - //ev.target.classList.add('spinning'); - Promise.resolve(this.addModalOptions(s, section_id, ev)).then(L.bind(m.render, m)).then(L.bind(function(nodes) { - //ev.target.classList.remove('spinning'); - L.ui.showModal(title, [ - nodes, - E('div', { 'class': 'right' }, [ - E('input', { - 'type': 'button', - 'class': 'btn', - 'click': L.bind(this.handleModalCancel, this, m), - 'value': _('Dismiss') - }), ' ', - E('input', { - 'type': 'button', - 'class': 'cbi-button cbi-button-positive important', - 'click': L.bind(this.handleModalSave, this, m), - 'value': _('Save') - }) - ]) - ], 'cbi-modal'); - }, this)).catch(L.error); - } -}); - -var CBIGridSection = CBITableSection.extend({ - tab: function(name, title, description) { - CBIAbstractSection.prototype.tab.call(this, name, title, description); - }, - - handleAdd: function(ev) { - var config_name = this.uciconfig || this.map.config, - section_id = uci.add(config_name, this.sectiontype); - - this.addedSection = section_id; - this.renderMoreOptionsModal(section_id); - }, - - handleModalSave: function(/* ... */) { - return this.super('handleModalSave', arguments) - .then(L.bind(function() { this.addedSection = null }, this)); - }, - - handleModalCancel: function(/* ... */) { - var config_name = this.uciconfig || this.map.config; - - if (this.addedSection != null) { - uci.remove(config_name, this.addedSection); - this.addedSection = null; - } - - return this.super('handleModalCancel', arguments); - }, - - renderUCISection: function(section_id) { - return this.renderOptions(null, section_id); - }, - - renderChildren: function(tab_name, section_id, in_table) { - var tasks = [], index = 0; - - for (var i = 0, opt; (opt = this.children[i]) != null; i++) { - if (opt.disable || opt.modalonly) - continue; - - if (opt.editable) - tasks.push(opt.render(index++, section_id, in_table)); - else - tasks.push(this.renderTextValue(section_id, opt)); - } - - return Promise.all(tasks); - }, - - renderTextValue: function(section_id, opt) { - var title = this.stripTags(opt.title).trim(), - descr = this.stripTags(opt.description).trim(), - value = opt.textvalue(section_id); - - return E('div', { - 'class': 'td cbi-value-field', - 'data-title': (title != '') ? title : opt.option, - 'data-description': (descr != '') ? descr : null, - 'data-name': opt.option, - 'data-type': opt.typename || opt.__name__ - }, (value != null) ? value : E('em', _('none'))); - }, - - renderRowActions: function(section_id) { - return this.super('renderRowActions', [ section_id, _('Edit') ]); - }, - - parse: function() { - var section_ids = this.cfgsections(), - tasks = []; - - if (Array.isArray(this.children)) { - for (var i = 0; i < section_ids.length; i++) { - for (var j = 0; j < this.children.length; j++) { - if (!this.children[j].editable || this.children[j].modalonly) - continue; - - tasks.push(this.children[j].parse(section_ids[i])); - } - } - } - - return Promise.all(tasks); - } -}); - -var CBINamedSection = CBIAbstractSection.extend({ - __name__: 'CBI.NamedSection', - __init__: function(map, section_id /*, ... */) { - this.super('__init__', this.varargs(arguments, 2, map)); - - this.section = section_id; - }, - - cfgsections: function() { - return [ this.section ]; - }, - - handleAdd: function(ev) { - var section_id = this.section, - config_name = this.uciconfig || this.map.config; - - uci.add(config_name, this.sectiontype, section_id); - this.map.save(); - }, - - handleRemove: function(ev) { - var section_id = this.section, - config_name = this.uciconfig || this.map.config; - - uci.remove(config_name, section_id); - this.map.save(); - }, - - renderContents: function(data) { - var ucidata = data[0], nodes = data[1], - section_id = this.section, - config_name = this.uciconfig || this.map.config, - sectionEl = E('div', { - 'id': ucidata ? null : 'cbi-%s-%s'.format(config_name, section_id), - 'class': 'cbi-section', - 'data-tab': this.map.tabbed ? this.sectiontype : null, - 'data-tab-title': this.map.tabbed ? this.title || this.sectiontype : null - }); - - if (typeof(this.title) === 'string' && this.title !== '') - sectionEl.appendChild(E('legend', {}, this.title)); - - if (typeof(this.description) === 'string' && this.description !== '') - sectionEl.appendChild(E('div', { 'class': 'cbi-section-descr' }, this.description)); - - if (ucidata) { - if (this.addremove) { - sectionEl.appendChild( - E('div', { 'class': 'cbi-section-remove right' }, - E('input', { - 'type': 'submit', - 'class': 'cbi-button', - 'value': _('Delete'), - 'click': L.bind(this.handleRemove, this) - }))); - } - - sectionEl.appendChild(E('div', { - 'id': 'cbi-%s-%s'.format(config_name, section_id), - 'class': this.tabs - ? 'cbi-section-node cbi-section-node-tabbed' : 'cbi-section-node', - 'data-section-id': section_id - }, nodes)); - } - else if (this.addremove) { - sectionEl.appendChild( - E('input', { - 'type': 'submit', - 'class': 'cbi-button cbi-button-add', - 'value': _('Add'), - 'click': L.bind(this.handleAdd, this) - })); - } - - L.dom.bindClassInstance(sectionEl, this); - - return sectionEl; - }, - - render: function() { - var config_name = this.uciconfig || this.map.config, - section_id = this.section; - - return Promise.all([ - uci.get(config_name, section_id), - this.renderUCISection(section_id) - ]).then(this.renderContents.bind(this)); - } -}); - -var CBIValue = CBIAbstractValue.extend({ - __name__: 'CBI.Value', - - value: function(key, val) { - this.keylist = this.keylist || []; - this.keylist.push(String(key)); - - this.vallist = this.vallist || []; - this.vallist.push(String(val != null ? val : key)); - }, - - render: function(option_index, section_id, in_table) { - return Promise.resolve(this.cfgvalue(section_id)) - .then(this.renderWidget.bind(this, section_id, option_index)) - .then(this.renderFrame.bind(this, section_id, in_table, option_index)); - }, - - renderFrame: function(section_id, in_table, option_index, nodes) { - var config_name = this.uciconfig || this.section.uciconfig || this.map.config, - depend_list = this.transformDepList(section_id), - optionEl; - - if (in_table) { - optionEl = E('div', { - 'class': 'td cbi-value-field', - 'data-title': this.stripTags(this.title).trim(), - 'data-description': this.stripTags(this.description).trim(), - 'data-name': this.option, - 'data-type': this.typename || (this.template ? this.template.replace(/^.+\//, '') : null) || this.__name__ - }, E('div', { - 'id': 'cbi-%s-%s-%s'.format(config_name, section_id, this.option), - 'data-index': option_index, - 'data-depends': depend_list, - 'data-field': this.cbid(section_id) - })); - } - else { - optionEl = E('div', { - 'class': 'cbi-value', - 'id': 'cbi-%s-%s-%s'.format(config_name, section_id, this.option), - 'data-index': option_index, - 'data-depends': depend_list, - 'data-field': this.cbid(section_id), - 'data-name': this.option, - 'data-type': this.typename || (this.template ? this.template.replace(/^.+\//, '') : null) || this.__name__ - }); - - if (this.last_child) - optionEl.classList.add('cbi-value-last'); - - if (typeof(this.title) === 'string' && this.title !== '') { - optionEl.appendChild(E('label', { - 'class': 'cbi-value-title', - 'for': 'widget.cbid.%s.%s.%s'.format(config_name, section_id, this.option) - }, - this.titleref ? E('a', { - 'class': 'cbi-title-ref', - 'href': this.titleref, - 'title': this.titledesc || _('Go to relevant configuration page') - }, this.title) : this.title)); - - optionEl.appendChild(E('div', { 'class': 'cbi-value-field' })); - } - } - - if (nodes) - (optionEl.lastChild || optionEl).appendChild(nodes); - - if (!in_table && typeof(this.description) === 'string' && this.description !== '') - L.dom.append(optionEl.lastChild || optionEl, - E('div', { 'class': 'cbi-value-description' }, this.description)); - - if (depend_list && depend_list.length) - optionEl.classList.add('hidden'); - - optionEl.addEventListener('widget-change', - L.bind(this.map.checkDepends, this.map)); - - L.dom.bindClassInstance(optionEl, this); - - return optionEl; - }, - - renderWidget: function(section_id, option_index, cfgvalue) { - var value = (cfgvalue != null) ? cfgvalue : this.default, - choices = this.transformChoices(), - widget; - - if (choices) { - var placeholder = (this.optional || this.rmempty) - ? E('em', _('unspecified')) : _('-- Please choose --'); - - widget = new ui.Combobox(Array.isArray(value) ? value.join(' ') : value, choices, { - id: this.cbid(section_id), - sort: this.keylist, - optional: this.optional || this.rmempty, - datatype: this.datatype, - select_placeholder: this.placeholder || placeholder, - validate: L.bind(this.validate, this, section_id) - }); - } - else { - widget = new ui.Textfield(Array.isArray(value) ? value.join(' ') : value, { - id: this.cbid(section_id), - password: this.password, - optional: this.optional || this.rmempty, - datatype: this.datatype, - placeholder: this.placeholder, - validate: L.bind(this.validate, this, section_id) - }); - } - - return widget.render(); - } -}); - -var CBIDynamicList = CBIValue.extend({ - __name__: 'CBI.DynamicList', - - renderWidget: function(section_id, option_index, cfgvalue) { - var value = (cfgvalue != null) ? cfgvalue : this.default, - choices = this.transformChoices(), - items = L.toArray(value); - - var widget = new ui.DynamicList(items, choices, { - id: this.cbid(section_id), - sort: this.keylist, - optional: this.optional || this.rmempty, - datatype: this.datatype, - placeholder: this.placeholder, - validate: L.bind(this.validate, this, section_id) - }); - - return widget.render(); - }, -}); - -var CBIListValue = CBIValue.extend({ - __name__: 'CBI.ListValue', - - __init__: function() { - this.super('__init__', arguments); - this.widget = 'select'; - this.deplist = []; - }, - - renderWidget: function(section_id, option_index, cfgvalue) { - var choices = this.transformChoices(); - var widget = new ui.Select((cfgvalue != null) ? cfgvalue : this.default, choices, { - id: this.cbid(section_id), - size: this.size, - sort: this.keylist, - optional: this.optional, - placeholder: this.placeholder, - validate: L.bind(this.validate, this, section_id) - }); - - return widget.render(); - }, -}); - -var CBIFlagValue = CBIValue.extend({ - __name__: 'CBI.FlagValue', - - __init__: function() { - this.super('__init__', arguments); - - this.enabled = '1'; - this.disabled = '0'; - this.default = this.disabled; - }, - - renderWidget: function(section_id, option_index, cfgvalue) { - var widget = new ui.Checkbox((cfgvalue != null) ? cfgvalue : this.default, { - id: this.cbid(section_id), - value_enabled: this.enabled, - value_disabled: this.disabled, - validate: L.bind(this.validate, this, section_id) - }); - - return widget.render(); - }, - - formvalue: function(section_id) { - var node = this.map.findElement('id', this.cbid(section_id)), - checked = node ? L.dom.callClassMethod(node, 'isChecked') : false; - - return checked ? this.enabled : this.disabled; - }, - - textvalue: function(section_id) { - var cval = this.cfgvalue(section_id); - - if (cval == null) - cval = this.default; - - return (cval == this.enabled) ? _('Yes') : _('No'); - }, - - parse: function(section_id) { - if (this.isActive(section_id)) { - var fval = this.formvalue(section_id); - - if (!this.isValid(section_id)) - return Promise.reject(); - - if (fval == this.default && (this.optional || this.rmempty)) - return Promise.resolve(this.remove(section_id)); - else - return Promise.resolve(this.write(section_id, fval)); - } - else { - return Promise.resolve(this.remove(section_id)); - } - }, -}); - -var CBIMultiValue = CBIDynamicList.extend({ - __name__: 'CBI.MultiValue', - - __init__: function() { - this.super('__init__', arguments); - this.placeholder = _('-- Please choose --'); - }, - - renderWidget: function(section_id, option_index, cfgvalue) { - var value = (cfgvalue != null) ? cfgvalue : this.default, - choices = this.transformChoices(); - - var widget = new ui.Dropdown(L.toArray(value), choices, { - id: this.cbid(section_id), - sort: this.keylist, - multiple: true, - optional: this.optional || this.rmempty, - select_placeholder: this.placeholder, - display_items: this.display_size || this.size || 3, - dropdown_items: this.dropdown_size || this.size || -1, - validate: L.bind(this.validate, this, section_id) - }); - - return widget.render(); - }, -}); - -var CBITextValue = CBIValue.extend({ - __name__: 'CBI.TextValue', - - value: null, - - renderWidget: function(section_id, option_index, cfgvalue) { - var value = (cfgvalue != null) ? cfgvalue : this.default; - - var widget = new ui.Textarea(value, { - id: this.cbid(section_id), - optional: this.optional || this.rmempty, - placeholder: this.placeholder, - monospace: this.monospace, - cols: this.cols, - rows: this.rows, - wrap: this.wrap, - validate: L.bind(this.validate, this, section_id) - }); - - return widget.render(); - } -}); - -var CBIDummyValue = CBIValue.extend({ - __name__: 'CBI.DummyValue', - - renderWidget: function(section_id, option_index, cfgvalue) { - var value = (cfgvalue != null) ? cfgvalue : this.default, - hiddenEl = new ui.Hiddenfield(value, { id: this.cbid(section_id) }), - outputEl = E('div'); - - if (this.href) - outputEl.appendChild(E('a', { 'href': this.href })); - - L.dom.append(outputEl.lastChild || outputEl, - this.rawhtml ? value : [ value ]); - - return E([ - outputEl, - hiddenEl.render() - ]); - }, -}); - -var CBIButtonValue = CBIValue.extend({ - __name__: 'CBI.ButtonValue', - - renderWidget: function(section_id, option_index, cfgvalue) { - var value = (cfgvalue != null) ? cfgvalue : this.default, - hiddenEl = new ui.Hiddenfield(value, { id: this.cbid(section_id) }), - outputEl = E('div'), - btn_title = this.titleFn('inputtitle', section_id) || this.titleFn('title', section_id); - - if (value !== false) - L.dom.content(outputEl, [ - E('input', { - 'class': 'cbi-button cbi-button-%s'.format(this.inputstyle || 'button'), - 'type': 'button', - 'value': btn_title, - 'click': L.bind(this.onclick || function(ev) { - ev.target.previousElementSibling.value = ev.target.value; - this.map.save(); - }, this) - }) - ]); - else - L.dom.content(outputEl, ' - '); - - return E([ - outputEl, - hiddenEl.render() - ]); - } -}); - -var CBIHiddenValue = CBIValue.extend({ - __name__: 'CBI.HiddenValue', - - renderWidget: function(section_id, option_index, cfgvalue) { - var widget = new ui.Hiddenfield((cfgvalue != null) ? cfgvalue : this.default, { - id: this.cbid(section_id) - }); - - return widget.render(); - } -}); - -var CBISectionValue = CBIValue.extend({ - __name__: 'CBI.ContainerValue', - __init__: function(map, section, option, cbiClass /*, ... */) { - this.super('__init__', [map, section, option]); - - if (!CBIAbstractSection.isSubclass(cbiClass)) - throw 'Sub section must be a descendent of CBIAbstractSection'; - - this.subsection = cbiClass.instantiate(this.varargs(arguments, 4, this.map)); - }, - - load: function(section_id) { - return this.subsection.load(); - }, - - parse: function(section_id) { - return this.subsection.parse(); - }, - - renderWidget: function(section_id, option_index, cfgvalue) { - return this.subsection.render(); - }, - - checkDepends: function(section_id) { - this.subsection.checkDepends(); - return CBIValue.prototype.checkDepends.apply(this, [ section_id ]); - }, - - write: function() {}, - remove: function() {}, - cfgvalue: function() { return null }, - formvalue: function() { return null } -}); - -return L.Class.extend({ - Map: CBIMap, - AbstractSection: CBIAbstractSection, - AbstractValue: CBIAbstractValue, - - TypedSection: CBITypedSection, - TableSection: CBITableSection, - GridSection: CBIGridSection, - NamedSection: CBINamedSection, - - Value: CBIValue, - DynamicList: CBIDynamicList, - ListValue: CBIListValue, - Flag: CBIFlagValue, - MultiValue: CBIMultiValue, - TextValue: CBITextValue, - DummyValue: CBIDummyValue, - Button: CBIButtonValue, - HiddenValue: CBIHiddenValue, - SectionValue: CBISectionValue -}); diff --git a/luci-base/htdocs/luci-static/resources/icons/alias.png b/luci-base/htdocs/luci-static/resources/icons/alias.png deleted file mode 100644 index 8772bbad5..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/alias.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/alias_disabled.png b/luci-base/htdocs/luci-static/resources/icons/alias_disabled.png deleted file mode 100644 index 38d0531e3..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/alias_disabled.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/bridge.png b/luci-base/htdocs/luci-static/resources/icons/bridge.png deleted file mode 100644 index 7faadecf9..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/bridge.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/bridge_disabled.png b/luci-base/htdocs/luci-static/resources/icons/bridge_disabled.png deleted file mode 100644 index b3e620b3a..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/bridge_disabled.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/ethernet.png b/luci-base/htdocs/luci-static/resources/icons/ethernet.png deleted file mode 100644 index e3d24f279..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/ethernet.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/ethernet_disabled.png b/luci-base/htdocs/luci-static/resources/icons/ethernet_disabled.png deleted file mode 100644 index d8792df54..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/ethernet_disabled.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/loading.gif b/luci-base/htdocs/luci-static/resources/icons/loading.gif deleted file mode 100644 index 715431483..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/loading.gif and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/port_down.png b/luci-base/htdocs/luci-static/resources/icons/port_down.png deleted file mode 100644 index 5a2b235d0..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/port_down.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/port_up.png b/luci-base/htdocs/luci-static/resources/icons/port_up.png deleted file mode 100644 index 8105e77d0..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/port_up.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/signal-0-25.png b/luci-base/htdocs/luci-static/resources/icons/signal-0-25.png deleted file mode 100644 index b3a8118af..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/signal-0-25.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/signal-0.png b/luci-base/htdocs/luci-static/resources/icons/signal-0.png deleted file mode 100644 index 333b1557b..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/signal-0.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/signal-25-50.png b/luci-base/htdocs/luci-static/resources/icons/signal-25-50.png deleted file mode 100644 index b465de3f5..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/signal-25-50.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/signal-50-75.png b/luci-base/htdocs/luci-static/resources/icons/signal-50-75.png deleted file mode 100644 index cd7bcaf9a..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/signal-50-75.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/signal-75-100.png b/luci-base/htdocs/luci-static/resources/icons/signal-75-100.png deleted file mode 100644 index f7a3658df..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/signal-75-100.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/signal-none.png b/luci-base/htdocs/luci-static/resources/icons/signal-none.png deleted file mode 100644 index 4a11356af..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/signal-none.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/switch.png b/luci-base/htdocs/luci-static/resources/icons/switch.png deleted file mode 100644 index be99b19ba..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/switch.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/switch_disabled.png b/luci-base/htdocs/luci-static/resources/icons/switch_disabled.png deleted file mode 100644 index 54588d24d..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/switch_disabled.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/tunnel.png b/luci-base/htdocs/luci-static/resources/icons/tunnel.png deleted file mode 100644 index 63eabfef5..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/tunnel.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/tunnel_disabled.png b/luci-base/htdocs/luci-static/resources/icons/tunnel_disabled.png deleted file mode 100644 index ca79d8170..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/tunnel_disabled.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/vlan.png b/luci-base/htdocs/luci-static/resources/icons/vlan.png deleted file mode 100644 index be99b19ba..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/vlan.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/vlan_disabled.png b/luci-base/htdocs/luci-static/resources/icons/vlan_disabled.png deleted file mode 100644 index 54588d24d..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/vlan_disabled.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/wifi.png b/luci-base/htdocs/luci-static/resources/icons/wifi.png deleted file mode 100644 index 80a23e8e9..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/wifi.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/icons/wifi_disabled.png b/luci-base/htdocs/luci-static/resources/icons/wifi_disabled.png deleted file mode 100644 index e989a2bd3..000000000 Binary files a/luci-base/htdocs/luci-static/resources/icons/wifi_disabled.png and /dev/null differ diff --git a/luci-base/htdocs/luci-static/resources/luci.js b/luci-base/htdocs/luci-static/resources/luci.js deleted file mode 100644 index d72764b11..000000000 --- a/luci-base/htdocs/luci-static/resources/luci.js +++ /dev/null @@ -1,1366 +0,0 @@ -(function(window, document, undefined) { - 'use strict'; - - /* Object.assign polyfill for IE */ - if (typeof Object.assign !== 'function') { - Object.defineProperty(Object, 'assign', { - value: function assign(target, varArgs) { - if (target == null) - throw new TypeError('Cannot convert undefined or null to object'); - - var to = Object(target); - - for (var index = 1; index < arguments.length; index++) - if (arguments[index] != null) - for (var nextKey in arguments[index]) - if (Object.prototype.hasOwnProperty.call(arguments[index], nextKey)) - to[nextKey] = arguments[index][nextKey]; - - return to; - }, - writable: true, - configurable: true - }); - } - - /* Promise.finally polyfill */ - if (typeof Promise.prototype.finally !== 'function') { - Promise.prototype.finally = function(fn) { - var onFinally = function(cb) { - return Promise.resolve(fn.call(this)).then(cb); - }; - - return this.then( - function(result) { return onFinally.call(this, function() { return result }) }, - function(reason) { return onFinally.call(this, function() { return Promise.reject(reason) }) } - ); - }; - } - - /* - * Class declaration and inheritance helper - */ - - var toCamelCase = function(s) { - return s.replace(/(?:^|[\. -])(.)/g, function(m0, m1) { return m1.toUpperCase() }); - }; - - var superContext = null, Class = Object.assign(function() {}, { - extend: function(properties) { - var props = { - __base__: { value: this.prototype }, - __name__: { value: properties.__name__ || 'anonymous' } - }; - - var ClassConstructor = function() { - if (!(this instanceof ClassConstructor)) - throw new TypeError('Constructor must not be called without "new"'); - - if (Object.getPrototypeOf(this).hasOwnProperty('__init__')) { - if (typeof(this.__init__) != 'function') - throw new TypeError('Class __init__ member is not a function'); - - this.__init__.apply(this, arguments) - } - else { - this.super('__init__', arguments); - } - }; - - for (var key in properties) - if (!props[key] && properties.hasOwnProperty(key)) - props[key] = { value: properties[key], writable: true }; - - ClassConstructor.prototype = Object.create(this.prototype, props); - ClassConstructor.prototype.constructor = ClassConstructor; - Object.assign(ClassConstructor, this); - ClassConstructor.displayName = toCamelCase(props.__name__.value + 'Class'); - - return ClassConstructor; - }, - - singleton: function(properties /*, ... */) { - return Class.extend(properties) - .instantiate(Class.prototype.varargs(arguments, 1)); - }, - - instantiate: function(args) { - return new (Function.prototype.bind.apply(this, - Class.prototype.varargs(args, 0, null)))(); - }, - - call: function(self, method) { - if (typeof(this.prototype[method]) != 'function') - throw new ReferenceError(method + ' is not defined in class'); - - return this.prototype[method].apply(self, self.varargs(arguments, 1)); - }, - - isSubclass: function(_class) { - return (_class != null && - typeof(_class) == 'function' && - _class.prototype instanceof this); - }, - - prototype: { - varargs: function(args, offset /*, ... */) { - return Array.prototype.slice.call(arguments, 2) - .concat(Array.prototype.slice.call(args, offset)); - }, - - super: function(key, callArgs) { - for (superContext = Object.getPrototypeOf(superContext || - Object.getPrototypeOf(this)); - superContext && !superContext.hasOwnProperty(key); - superContext = Object.getPrototypeOf(superContext)) { } - - if (!superContext) - return null; - - var res = superContext[key]; - - if (arguments.length > 1) { - if (typeof(res) != 'function') - throw new ReferenceError(key + ' is not a function in base class'); - - if (typeof(callArgs) != 'object') - callArgs = this.varargs(arguments, 1); - - res = res.apply(this, callArgs); - } - - superContext = null; - - return res; - }, - - toString: function() { - var s = '[' + this.constructor.displayName + ']', f = true; - for (var k in this) { - if (this.hasOwnProperty(k)) { - s += (f ? ' {\n' : '') + ' ' + k + ': ' + typeof(this[k]) + '\n'; - f = false; - } - } - return s + (f ? '' : '}'); - } - } - }); - - - /* - * HTTP Request helper - */ - - var Headers = Class.extend({ - __name__: 'LuCI.XHR.Headers', - __init__: function(xhr) { - var hdrs = this.headers = {}; - xhr.getAllResponseHeaders().split(/\r\n/).forEach(function(line) { - var m = /^([^:]+):(.*)$/.exec(line); - if (m != null) - hdrs[m[1].trim().toLowerCase()] = m[2].trim(); - }); - }, - - has: function(name) { - return this.headers.hasOwnProperty(String(name).toLowerCase()); - }, - - get: function(name) { - var key = String(name).toLowerCase(); - return this.headers.hasOwnProperty(key) ? this.headers[key] : null; - } - }); - - var Response = Class.extend({ - __name__: 'LuCI.XHR.Response', - __init__: function(xhr, url, duration, headers, content) { - this.ok = (xhr.status >= 200 && xhr.status <= 299); - this.status = xhr.status; - this.statusText = xhr.statusText; - this.headers = (headers != null) ? headers : new Headers(xhr); - this.duration = duration; - this.url = url; - this.xhr = xhr; - - if (content != null && typeof(content) == 'object') { - this.responseJSON = content; - this.responseText = null; - } - else if (content != null) { - this.responseJSON = null; - this.responseText = String(content); - } - else { - this.responseJSON = null; - this.responseText = xhr.responseText; - } - }, - - clone: function(content) { - var copy = new Response(this.xhr, this.url, this.duration, this.headers, content); - - copy.ok = this.ok; - copy.status = this.status; - copy.statusText = this.statusText; - - return copy; - }, - - json: function() { - if (this.responseJSON == null) - this.responseJSON = JSON.parse(this.responseText); - - return this.responseJSON; - }, - - text: function() { - if (this.responseText == null && this.responseJSON != null) - this.responseText = JSON.stringify(this.responseJSON); - - return this.responseText; - } - }); - - - var requestQueue = []; - - function isQueueableRequest(opt) { - if (!classes.rpc) - return false; - - if (opt.method != 'POST' || typeof(opt.content) != 'object') - return false; - - if (opt.nobatch === true) - return false; - - var rpcBaseURL = Request.expandURL(classes.rpc.getBaseURL()); - - return (rpcBaseURL != null && opt.url.indexOf(rpcBaseURL) == 0); - } - - function flushRequestQueue() { - if (!requestQueue.length) - return; - - var reqopt = Object.assign({}, requestQueue[0][0], { content: [], nobatch: true }), - batch = []; - - for (var i = 0; i < requestQueue.length; i++) { - batch[i] = requestQueue[i]; - reqopt.content[i] = batch[i][0].content; - } - - requestQueue.length = 0; - - Request.request(rpcBaseURL, reqopt).then(function(reply) { - var json = null, req = null; - - try { json = reply.json() } - catch(e) { } - - while ((req = batch.shift()) != null) - if (Array.isArray(json) && json.length) - req[2].call(reqopt, reply.clone(json.shift())); - else - req[1].call(reqopt, new Error('No related RPC reply')); - }).catch(function(error) { - var req = null; - - while ((req = batch.shift()) != null) - req[1].call(reqopt, error); - }); - } - - var Request = Class.singleton({ - __name__: 'LuCI.Request', - - interceptors: [], - - expandURL: function(url) { - if (!/^(?:[^/]+:)?\/\//.test(url)) - url = location.protocol + '//' + location.host + url; - - return url; - }, - - request: function(target, options) { - var state = { xhr: new XMLHttpRequest(), url: this.expandURL(target), start: Date.now() }, - opt = Object.assign({}, options, state), - content = null, - contenttype = null, - callback = this.handleReadyStateChange; - - return new Promise(function(resolveFn, rejectFn) { - opt.xhr.onreadystatechange = callback.bind(opt, resolveFn, rejectFn); - opt.method = String(opt.method || 'GET').toUpperCase(); - - if ('query' in opt) { - var q = (opt.query != null) ? Object.keys(opt.query).map(function(k) { - if (opt.query[k] != null) { - var v = (typeof(opt.query[k]) == 'object') - ? JSON.stringify(opt.query[k]) - : String(opt.query[k]); - - return '%s=%s'.format(encodeURIComponent(k), encodeURIComponent(v)); - } - else { - return encodeURIComponent(k); - } - }).join('&') : ''; - - if (q !== '') { - switch (opt.method) { - case 'GET': - case 'HEAD': - case 'OPTIONS': - opt.url += ((/\?/).test(opt.url) ? '&' : '?') + q; - break; - - default: - if (content == null) { - content = q; - contenttype = 'application/x-www-form-urlencoded'; - } - } - } - } - - if (!opt.cache) - opt.url += ((/\?/).test(opt.url) ? '&' : '?') + (new Date()).getTime(); - - if (isQueueableRequest(opt)) { - requestQueue.push([opt, rejectFn, resolveFn]); - requestAnimationFrame(flushRequestQueue); - return; - } - - if ('username' in opt && 'password' in opt) - opt.xhr.open(opt.method, opt.url, true, opt.username, opt.password); - else - opt.xhr.open(opt.method, opt.url, true); - - opt.xhr.responseType = 'text'; - - if ('overrideMimeType' in opt.xhr) - opt.xhr.overrideMimeType('application/octet-stream'); - - if ('timeout' in opt) - opt.xhr.timeout = +opt.timeout; - - if ('credentials' in opt) - opt.xhr.withCredentials = !!opt.credentials; - - if (opt.content != null) { - switch (typeof(opt.content)) { - case 'function': - content = opt.content(xhr); - break; - - case 'object': - content = JSON.stringify(opt.content); - contenttype = 'application/json'; - break; - - default: - content = String(opt.content); - } - } - - if ('headers' in opt) - for (var header in opt.headers) - if (opt.headers.hasOwnProperty(header)) { - if (header.toLowerCase() != 'content-type') - opt.xhr.setRequestHeader(header, opt.headers[header]); - else - contenttype = opt.headers[header]; - } - - if (contenttype != null) - opt.xhr.setRequestHeader('Content-Type', contenttype); - - try { - opt.xhr.send(content); - } - catch (e) { - rejectFn.call(opt, e); - } - }); - }, - - handleReadyStateChange: function(resolveFn, rejectFn, ev) { - var xhr = this.xhr; - - if (xhr.readyState !== 4) - return; - - if (xhr.status === 0 && xhr.statusText === '') { - rejectFn.call(this, new Error('XHR request aborted by browser')); - } - else { - var response = new Response( - xhr, xhr.responseURL || this.url, Date.now() - this.start); - - Promise.all(Request.interceptors.map(function(fn) { return fn(response) })) - .then(resolveFn.bind(this, response)) - .catch(rejectFn.bind(this)); - } - }, - - get: function(url, options) { - return this.request(url, Object.assign({ method: 'GET' }, options)); - }, - - post: function(url, data, options) { - return this.request(url, Object.assign({ method: 'POST', content: data }, options)); - }, - - addInterceptor: function(interceptorFn) { - if (typeof(interceptorFn) == 'function') - this.interceptors.push(interceptorFn); - return interceptorFn; - }, - - removeInterceptor: function(interceptorFn) { - var oldlen = this.interceptors.length, i = oldlen; - while (i--) - if (this.interceptors[i] === interceptorFn) - this.interceptors.splice(i, 1); - return (this.interceptors.length < oldlen); - }, - - poll: { - add: function(interval, url, options, callback) { - if (isNaN(interval) || interval <= 0) - throw new TypeError('Invalid poll interval'); - - var ival = interval >>> 0, - opts = Object.assign({}, options, { timeout: ival * 1000 - 5 }); - - return Poll.add(function() { - return Request.request(url, options).then(function(res) { - if (!Poll.active()) - return; - - try { - callback(res, res.json(), res.duration); - } - catch (err) { - callback(res, null, res.duration); - } - }); - }, ival); - }, - - remove: function(entry) { return Poll.remove(entry) }, - start: function() { return Poll.start() }, - stop: function() { return Poll.stop() }, - active: function() { return Poll.active() } - } - }); - - var Poll = Class.singleton({ - __name__: 'LuCI.Poll', - - queue: [], - - add: function(fn, interval) { - if (interval == null || interval <= 0) - interval = window.L ? window.L.env.pollinterval : null; - - if (isNaN(interval) || typeof(fn) != 'function') - throw new TypeError('Invalid argument to LuCI.Poll.add()'); - - for (var i = 0; i < this.queue.length; i++) - if (this.queue[i].fn === fn) - return false; - - var e = { - r: true, - i: interval >>> 0, - fn: fn - }; - - this.queue.push(e); - - if (this.tick != null && !this.active()) - this.start(); - - return true; - }, - - remove: function(entry) { - if (typeof(fn) != 'function') - throw new TypeError('Invalid argument to LuCI.Poll.remove()'); - - var len = this.queue.length; - - for (var i = len; i > 0; i--) - if (this.queue[i-1].fn === fn) - this.queue.splice(i-1, 1); - - if (!this.queue.length && this.stop()) - this.tick = 0; - - return (this.queue.length != len); - }, - - start: function() { - if (this.active()) - return false; - - this.tick = 0; - - if (this.queue.length) { - this.timer = window.setInterval(this.step, 1000); - this.step(); - document.dispatchEvent(new CustomEvent('poll-start')); - } - - return true; - }, - - stop: function() { - if (!this.active()) - return false; - - document.dispatchEvent(new CustomEvent('poll-stop')); - window.clearInterval(this.timer); - delete this.timer; - delete this.tick; - return true; - }, - - step: function() { - for (var i = 0, e = null; (e = Poll.queue[i]) != null; i++) { - if ((Poll.tick % e.i) != 0) - continue; - - if (!e.r) - continue; - - e.r = false; - - Promise.resolve(e.fn()).finally((function() { this.r = true }).bind(e)); - } - - Poll.tick = (Poll.tick + 1) % Math.pow(2, 32); - }, - - active: function() { - return (this.timer != null); - } - }); - - - var dummyElem = null, - domParser = null, - originalCBIInit = null, - rpcBaseURL = null, - sysFeatures = null, - classes = {}; - - var LuCI = Class.extend({ - __name__: 'LuCI', - __init__: function(env) { - - document.querySelectorAll('script[src*="/luci.js"]').forEach(function(s) { - if (env.base_url == null || env.base_url == '') - env.base_url = s.getAttribute('src').replace(/\/luci\.js(?:\?v=[^?]+)?$/, ''); - }); - - if (env.base_url == null) - this.error('InternalError', 'Cannot find url of luci.js'); - - Object.assign(this.env, env); - - document.addEventListener('poll-start', function(ev) { - document.querySelectorAll('[id^="xhr_poll_status"]').forEach(function(e) { - e.style.display = (e.id == 'xhr_poll_status_off') ? 'none' : ''; - }); - }); - - document.addEventListener('poll-stop', function(ev) { - document.querySelectorAll('[id^="xhr_poll_status"]').forEach(function(e) { - e.style.display = (e.id == 'xhr_poll_status_on') ? 'none' : ''; - }); - }); - - var domReady = new Promise(function(resolveFn, rejectFn) { - document.addEventListener('DOMContentLoaded', resolveFn); - }); - - Promise.all([ - domReady, - this.require('ui'), - this.require('rpc'), - this.require('form'), - this.probeRPCBaseURL() - ]).then(this.setupDOM.bind(this)).catch(this.error); - - originalCBIInit = window.cbi_init; - window.cbi_init = function() {}; - }, - - raise: function(type, fmt /*, ...*/) { - var e = null, - msg = fmt ? String.prototype.format.apply(fmt, this.varargs(arguments, 2)) : null, - stack = null; - - if (type instanceof Error) { - e = type; - stack = (e.stack || '').split(/\n/); - - if (msg) - e.message = msg + ': ' + e.message; - } - else { - e = new (window[type || 'Error'] || Error)(msg || 'Unspecified error'); - e.name = type || 'Error'; - } - - if (window.console && console.debug) - console.debug(e); - - throw e; - }, - - error: function(type, fmt /*, ...*/) { - try { - L.raise.apply(L, Array.prototype.slice.call(arguments)); - } - catch (e) { - var stack = (e.stack || '').split(/\n/).map(function(frame) { - frame = frame.replace(/(.*?)@(.+):(\d+):(\d+)/g, 'at $1 ($2:$3:$4)').trim(); - return frame ? ' ' + frame : ''; - }); - - if (!/^ at /.test(stack[0])) - stack.shift(); - - if (/\braise /.test(stack[0])) - stack.shift(); - - if (/\berror /.test(stack[0])) - stack.shift(); - - stack = stack.length ? '\n' + stack.join('\n') : ''; - - if (L.ui) - L.ui.showModal(e.name || _('Runtime error'), - E('pre', { 'class': 'alert-message error' }, e.message + stack)); - else - L.dom.content(document.querySelector('#maincontent'), - E('pre', { 'class': 'alert-message error' }, e + stack)); - - throw e; - } - }, - - bind: function(fn, self /*, ... */) { - return Function.prototype.bind.apply(fn, this.varargs(arguments, 2, self)); - }, - - /* Class require */ - require: function(name, from) { - var L = this, url = null, from = from || []; - - /* Class already loaded */ - if (classes[name] != null) { - /* Circular dependency */ - if (from.indexOf(name) != -1) - L.raise('DependencyError', - 'Circular dependency: class "%s" depends on "%s"', - name, from.join('" which depends on "')); - - return classes[name]; - } - - url = '%s/%s.js'.format(L.env.base_url, name.replace(/\./g, '/')); - from = [ name ].concat(from); - - var compileClass = function(res) { - if (!res.ok) - L.raise('NetworkError', - 'HTTP error %d while loading class file "%s"', res.status, url); - - var source = res.text(), - requirematch = /^require[ \t]+(\S+)(?:[ \t]+as[ \t]+([a-zA-Z_]\S*))?$/, - strictmatch = /^use[ \t]+strict$/, - depends = [], - args = ''; - - /* find require statements in source */ - for (var i = 0, off = -1, quote = -1, esc = false; i < source.length; i++) { - var chr = source.charCodeAt(i); - - if (esc) { - esc = false; - } - else if (chr == 92) { - esc = true; - } - else if (chr == quote) { - var s = source.substring(off, i), - m = requirematch.exec(s); - - if (m) { - var dep = m[1], as = m[2] || dep.replace(/[^a-zA-Z0-9_]/g, '_'); - depends.push(L.require(dep, from)); - args += ', ' + as; - } - else if (!strictmatch.exec(s)) { - break; - } - - off = -1; - quote = -1; - } - else if (quote == -1 && (chr == 34 || chr == 39)) { - off = i + 1; - quote = chr; - } - } - - /* load dependencies and instantiate class */ - return Promise.all(depends).then(function(instances) { - var _factory, _class; - - try { - _factory = eval( - '(function(window, document, L%s) { %s })\n\n//# sourceURL=%s\n' - .format(args, source, res.url)); - } - catch (error) { - L.raise('SyntaxError', '%s\n in %s:%s', - error.message, res.url, error.lineNumber || '?'); - } - - _factory.displayName = toCamelCase(name + 'ClassFactory'); - _class = _factory.apply(_factory, [window, document, L].concat(instances)); - - if (!Class.isSubclass(_class)) - L.error('TypeError', '"%s" factory yields invalid constructor', name); - - if (_class.displayName == 'AnonymousClass') - _class.displayName = toCamelCase(name + 'Class'); - - var ptr = Object.getPrototypeOf(L), - parts = name.split(/\./), - instance = new _class(); - - for (var i = 0; ptr && i < parts.length - 1; i++) - ptr = ptr[parts[i]]; - - if (ptr) - ptr[parts[i]] = instance; - - classes[name] = instance; - - return instance; - }); - }; - - /* Request class file */ - classes[name] = Request.get(url, { cache: true }).then(compileClass); - - return classes[name]; - }, - - /* DOM setup */ - probeRPCBaseURL: function() { - if (rpcBaseURL == null) { - try { - rpcBaseURL = window.sessionStorage.getItem('rpcBaseURL'); - } - catch (e) { } - } - - if (rpcBaseURL == null) { - var rpcFallbackURL = this.url('admin/ubus'); - - rpcBaseURL = Request.get('/ubus/').then(function(res) { - return (rpcBaseURL = (res.status == 400) ? '/ubus/' : rpcFallbackURL); - }, function() { - return (rpcBaseURL = rpcFallbackURL); - }).then(function(url) { - try { - window.sessionStorage.setItem('rpcBaseURL', url); - } - catch (e) { } - - return url; - }); - } - - return Promise.resolve(rpcBaseURL); - }, - - probeSystemFeatures: function() { - if (sysFeatures == null) { - try { - sysFeatures = JSON.parse(window.sessionStorage.getItem('sysFeatures')); - } - catch (e) {} - } - - if (!this.isObject(sysFeatures)) { - sysFeatures = classes.rpc.declare({ - object: 'luci', - method: 'getFeatures', - expect: { '': {} } - })().then(function(features) { - try { - window.sessionStorage.setItem('sysFeatures', JSON.stringify(features)); - } - catch (e) {} - - sysFeatures = features; - - return features; - }); - } - - return Promise.resolve(sysFeatures); - }, - - hasSystemFeature: function() { - var ft = sysFeatures[arguments[0]]; - - if (arguments.length == 2) - return this.isObject(ft) ? ft[arguments[1]] : null; - - return (ft != null && ft != false); - }, - - setupDOM: function(res) { - var domEv = res[0], - uiClass = res[1], - rpcClass = res[2], - formClass = res[3], - rpcBaseURL = res[4]; - - rpcClass.setBaseURL(rpcBaseURL); - - Request.addInterceptor(function(res) { - if (res.status != 403 || res.headers.get('X-LuCI-Login-Required') != 'yes') - return; - - Poll.stop(); - - L.ui.showModal(_('Session expired'), [ - E('div', { class: 'alert-message warning' }, - _('A new login is required since the authentication session expired.')), - E('div', { class: 'right' }, - E('div', { - class: 'btn primary', - click: function() { - var loc = window.location; - window.location = loc.protocol + '//' + loc.host + loc.pathname + loc.search; - } - }, _('To login…'))) - ]); - - throw 'Session expired'; - }); - - return this.probeSystemFeatures().finally(this.initDOM); - }, - - initDOM: function() { - originalCBIInit(); - Poll.start(); - document.dispatchEvent(new CustomEvent('luci-loaded')); - }, - - env: {}, - - /* URL construction helpers */ - path: function(prefix, parts) { - var url = [ prefix || '' ]; - - for (var i = 0; i < parts.length; i++) - if (/^(?:[a-zA-Z0-9_.%,;-]+\/)*[a-zA-Z0-9_.%,;-]+$/.test(parts[i])) - url.push('/', parts[i]); - - if (url.length === 1) - url.push('/'); - - return url.join(''); - }, - - url: function() { - return this.path(this.env.scriptname, arguments); - }, - - resource: function() { - return this.path(this.env.resource, arguments); - }, - - location: function() { - return this.path(this.env.scriptname, this.env.requestpath); - }, - - - /* Data helpers */ - isObject: function(val) { - return (val != null && typeof(val) == 'object'); - }, - - sortedKeys: function(obj, key, sortmode) { - if (obj == null || typeof(obj) != 'object') - return []; - - return Object.keys(obj).map(function(e) { - var v = (key != null) ? obj[e][key] : e; - - switch (sortmode) { - case 'addr': - v = (v != null) ? v.replace(/(?:^|[.:])([0-9a-fA-F]{1,4})/g, - function(m0, m1) { return ('000' + m1.toLowerCase()).substr(-4) }) : null; - break; - - case 'num': - v = (v != null) ? +v : null; - break; - } - - return [ e, v ]; - }).filter(function(e) { - return (e[1] != null); - }).sort(function(a, b) { - return (a[1] > b[1]); - }).map(function(e) { - return e[0]; - }); - }, - - toArray: function(val) { - if (val == null) - return []; - else if (Array.isArray(val)) - return val; - else if (typeof(val) == 'object') - return [ val ]; - - var s = String(val).trim(); - - if (s == '') - return []; - - return s.split(/\s+/); - }, - - - /* HTTP resource fetching */ - get: function(url, args, cb) { - return this.poll(null, url, args, cb, false); - }, - - post: function(url, args, cb) { - return this.poll(null, url, args, cb, true); - }, - - poll: function(interval, url, args, cb, post) { - if (interval !== null && interval <= 0) - interval = this.env.pollinterval; - - var data = post ? { token: this.env.token } : null, - method = post ? 'POST' : 'GET'; - - if (!/^(?:\/|\S+:\/\/)/.test(url)) - url = this.url(url); - - if (args != null) - data = Object.assign(data || {}, args); - - if (interval !== null) - return Request.poll.add(interval, url, { method: method, query: data }, cb); - else - return Request.request(url, { method: method, query: data }) - .then(function(res) { - var json = null; - if (/^application\/json\b/.test(res.headers.get('Content-Type'))) - try { json = res.json() } catch(e) {} - cb(res.xhr, json, res.duration); - }); - }, - - stop: function(entry) { return Poll.remove(entry) }, - halt: function() { return Poll.stop() }, - run: function() { return Poll.start() }, - - /* DOM manipulation */ - dom: Class.singleton({ - __name__: 'LuCI.DOM', - - elem: function(e) { - return (e != null && typeof(e) == 'object' && 'nodeType' in e); - }, - - parse: function(s) { - var elem; - - try { - domParser = domParser || new DOMParser(); - elem = domParser.parseFromString(s, 'text/html').body.firstChild; - } - catch(e) {} - - if (!elem) { - try { - dummyElem = dummyElem || document.createElement('div'); - dummyElem.innerHTML = s; - elem = dummyElem.firstChild; - } - catch (e) {} - } - - return elem || null; - }, - - matches: function(node, selector) { - var m = this.elem(node) ? node.matches || node.msMatchesSelector : null; - return m ? m.call(node, selector) : false; - }, - - parent: function(node, selector) { - if (this.elem(node) && node.closest) - return node.closest(selector); - - while (this.elem(node)) - if (this.matches(node, selector)) - return node; - else - node = node.parentNode; - - return null; - }, - - append: function(node, children) { - if (!this.elem(node)) - return null; - - if (Array.isArray(children)) { - for (var i = 0; i < children.length; i++) - if (this.elem(children[i])) - node.appendChild(children[i]); - else if (children !== null && children !== undefined) - node.appendChild(document.createTextNode('' + children[i])); - - return node.lastChild; - } - else if (typeof(children) === 'function') { - return this.append(node, children(node)); - } - else if (this.elem(children)) { - return node.appendChild(children); - } - else if (children !== null && children !== undefined) { - node.innerHTML = '' + children; - return node.lastChild; - } - - return null; - }, - - content: function(node, children) { - if (!this.elem(node)) - return null; - - var dataNodes = node.querySelectorAll('[data-idref]'); - - for (var i = 0; i < dataNodes.length; i++) - delete this.registry[dataNodes[i].getAttribute('data-idref')]; - - while (node.firstChild) - node.removeChild(node.firstChild); - - return this.append(node, children); - }, - - attr: function(node, key, val) { - if (!this.elem(node)) - return null; - - var attr = null; - - if (typeof(key) === 'object' && key !== null) - attr = key; - else if (typeof(key) === 'string') - attr = {}, attr[key] = val; - - for (key in attr) { - if (!attr.hasOwnProperty(key) || attr[key] == null) - continue; - - switch (typeof(attr[key])) { - case 'function': - node.addEventListener(key, attr[key]); - break; - - case 'object': - node.setAttribute(key, JSON.stringify(attr[key])); - break; - - default: - node.setAttribute(key, attr[key]); - } - } - }, - - create: function() { - var html = arguments[0], - attr = arguments[1], - data = arguments[2], - elem; - - if (!(attr instanceof Object) || Array.isArray(attr)) - data = attr, attr = null; - - if (Array.isArray(html)) { - elem = document.createDocumentFragment(); - for (var i = 0; i < html.length; i++) - elem.appendChild(this.create(html[i])); - } - else if (this.elem(html)) { - elem = html; - } - else if (html.charCodeAt(0) === 60) { - elem = this.parse(html); - } - else { - elem = document.createElement(html); - } - - if (!elem) - return null; - - this.attr(elem, attr); - this.append(elem, data); - - return elem; - }, - - registry: {}, - - data: function(node, key, val) { - var id = node.getAttribute('data-idref'); - - /* clear all data */ - if (arguments.length > 1 && key == null) { - if (id != null) { - node.removeAttribute('data-idref'); - val = this.registry[id] - delete this.registry[id]; - return val; - } - - return null; - } - - /* clear a key */ - else if (arguments.length > 2 && key != null && val == null) { - if (id != null) { - val = this.registry[id][key]; - delete this.registry[id][key]; - return val; - } - - return null; - } - - /* set a key */ - else if (arguments.length > 2 && key != null && val != null) { - if (id == null) { - do { id = Math.floor(Math.random() * 0xffffffff).toString(16) } - while (this.registry.hasOwnProperty(id)); - - node.setAttribute('data-idref', id); - this.registry[id] = {}; - } - - return (this.registry[id][key] = val); - } - - /* get all data */ - else if (arguments.length == 1) { - if (id != null) - return this.registry[id]; - - return null; - } - - /* get a key */ - else if (arguments.length == 2) { - if (id != null) - return this.registry[id][key]; - } - - return null; - }, - - bindClassInstance: function(node, inst) { - if (!(inst instanceof Class)) - L.error('TypeError', 'Argument must be a class instance'); - - return this.data(node, '_class', inst); - }, - - findClassInstance: function(node) { - var inst = null; - - do { - inst = this.data(node, '_class'); - node = node.parentNode; - } - while (!(inst instanceof Class) && node != null); - - return inst; - }, - - callClassMethod: function(node, method /*, ... */) { - var inst = this.findClassInstance(node); - - if (inst == null || typeof(inst[method]) != 'function') - return null; - - return inst[method].apply(inst, inst.varargs(arguments, 2)); - }, - - isEmpty: function(node) { - for (var child = node.firstElementChild; child != null; child = child.nextElementSibling) - if (!child.classList.contains('hidden')) - return false; - - return true; - } - }), - - Poll: Poll, - Class: Class, - Request: Request, - - view: Class.extend({ - __name__: 'LuCI.View', - - __init__: function() { - var vp = document.getElementById('view'); - - L.dom.content(vp, E('div', { 'class': 'spinning' }, _('Loading view…'))); - - return Promise.resolve(this.load()) - .then(L.bind(this.render, this)) - .then(L.bind(function(nodes) { - var vp = document.getElementById('view'); - - L.dom.content(vp, nodes); - L.dom.append(vp, this.addFooter()); - }, this)).catch(L.error); - }, - - load: function() {}, - render: function() {}, - - handleSave: function(ev) { - var tasks = []; - - document.getElementById('maincontent') - .querySelectorAll('.cbi-map').forEach(function(map) { - tasks.push(L.dom.callClassMethod(map, 'save')); - }); - - return Promise.all(tasks); - }, - - handleSaveApply: function(ev) { - return this.handleSave(ev).then(function() { - L.ui.changes.apply(true); - }); - }, - - handleReset: function(ev) { - var tasks = []; - - document.getElementById('maincontent') - .querySelectorAll('.cbi-map').forEach(function(map) { - tasks.push(L.dom.callClassMethod(map, 'reset')); - }); - - return Promise.all(tasks); - }, - - addFooter: function() { - var footer = E([]), - mc = document.getElementById('maincontent'); - - if (mc.querySelector('.cbi-map')) { - footer.appendChild(E('div', { 'class': 'cbi-page-actions' }, [ - E('input', { - 'class': 'cbi-button cbi-button-apply', - 'type': 'button', - 'value': _('Save & Apply'), - 'click': L.bind(this.handleSaveApply, this) - }), ' ', - E('input', { - 'class': 'cbi-button cbi-button-save', - 'type': 'submit', - 'value': _('Save'), - 'click': L.bind(this.handleSave, this) - }), ' ', - E('input', { - 'class': 'cbi-button cbi-button-reset', - 'type': 'button', - 'value': _('Reset'), - 'click': L.bind(this.handleReset, this) - }) - ])); - } - - return footer; - } - }) - }); - - var XHR = Class.extend({ - __name__: 'LuCI.XHR', - __init__: function() { - if (window.console && console.debug) - console.debug('Direct use XHR() is deprecated, please use L.Request instead'); - }, - - _response: function(cb, res, json, duration) { - if (this.active) - cb(res, json, duration); - delete this.active; - }, - - get: function(url, data, callback, timeout) { - this.active = true; - L.get(url, data, this._response.bind(this, callback), timeout); - }, - - post: function(url, data, callback, timeout) { - this.active = true; - L.post(url, data, this._response.bind(this, callback), timeout); - }, - - cancel: function() { delete this.active }, - busy: function() { return (this.active === true) }, - abort: function() {}, - send_form: function() { L.error('InternalError', 'Not implemented') }, - }); - - XHR.get = function() { return window.L.get.apply(window.L, arguments) }; - XHR.post = function() { return window.L.post.apply(window.L, arguments) }; - XHR.poll = function() { return window.L.poll.apply(window.L, arguments) }; - XHR.stop = Request.poll.remove.bind(Request.poll); - XHR.halt = Request.poll.stop.bind(Request.poll); - XHR.run = Request.poll.start.bind(Request.poll); - XHR.running = Request.poll.active.bind(Request.poll); - - window.XHR = XHR; - window.LuCI = LuCI; -})(window, document); diff --git a/luci-base/htdocs/luci-static/resources/network.js b/luci-base/htdocs/luci-static/resources/network.js deleted file mode 100644 index fb23fba85..000000000 --- a/luci-base/htdocs/luci-static/resources/network.js +++ /dev/null @@ -1,2172 +0,0 @@ -'use strict'; -'require uci'; -'require rpc'; -'require validation'; - -var proto_errors = { - CONNECT_FAILED: _('Connection attempt failed'), - INVALID_ADDRESS: _('IP address in invalid'), - INVALID_GATEWAY: _('Gateway address is invalid'), - INVALID_LOCAL_ADDRESS: _('Local IP address is invalid'), - MISSING_ADDRESS: _('IP address is missing'), - MISSING_PEER_ADDRESS: _('Peer address is missing'), - NO_DEVICE: _('Network device is not present'), - NO_IFACE: _('Unable to determine device name'), - NO_IFNAME: _('Unable to determine device name'), - NO_WAN_ADDRESS: _('Unable to determine external IP address'), - NO_WAN_LINK: _('Unable to determine upstream interface'), - PEER_RESOLVE_FAIL: _('Unable to resolve peer host name'), - PIN_FAILED: _('PIN code rejected') -}; - -var iface_patterns_ignore = [ - /^wmaster\d+/, - /^wifi\d+/, - /^hwsim\d+/, - /^imq\d+/, - /^ifb\d+/, - /^mon\.wlan\d+/, - /^sit\d+/, - /^gre\d+/, - /^gretap\d+/, - /^ip6gre\d+/, - /^ip6tnl\d+/, - /^tunl\d+/, - /^lo$/ -]; - -var iface_patterns_wireless = [ - /^wlan\d+/, - /^wl\d+/, - /^ath\d+/, - /^\w+\.network\d+/ -]; - -var iface_patterns_virtual = [ ]; - -var callNetworkWirelessStatus = rpc.declare({ - object: 'network.wireless', - method: 'status' -}); - -var callLuciNetdevs = rpc.declare({ - object: 'luci', - method: 'getNetworkDevices', - expect: { '': {} } -}); - -var callLuciIfaddrs = rpc.declare({ - object: 'luci', - method: 'getIfaddrs', - expect: { result: [] } -}); - -var callLuciBoardjson = rpc.declare({ - object: 'luci', - method: 'getBoardJSON' -}); - -var callIwinfoInfo = rpc.declare({ - object: 'iwinfo', - method: 'info', - params: [ 'device' ] -}); - -var callNetworkInterfaceStatus = rpc.declare({ - object: 'network.interface', - method: 'dump', - expect: { 'interface': [] } -}); - -var callNetworkDeviceStatus = rpc.declare({ - object: 'network.device', - method: 'status', - expect: { '': {} } -}); - -var callGetProtoHandlers = rpc.declare({ - object: 'network', - method: 'get_proto_handlers', - expect: { '': {} } -}); - -var _init = null, - _state = null, - _protocols = {}, - _protospecs = {}; - -function getWifiState(cache) { - return callNetworkWirelessStatus().then(function(state) { - if (!L.isObject(state)) - throw !1; - return state; - }).catch(function() { - return {}; - }); -} - -function getInterfaceState(cache) { - return callNetworkInterfaceStatus().then(function(state) { - if (!Array.isArray(state)) - throw !1; - return state; - }).catch(function() { - return []; - }); -} - -function getDeviceState(cache) { - return callNetworkDeviceStatus().then(function(state) { - if (!L.isObject(state)) - throw !1; - return state; - }).catch(function() { - return {}; - }); -} - -function getIfaddrState(cache) { - return callLuciIfaddrs().then(function(addrs) { - if (!Array.isArray(addrs)) - throw !1; - return addrs; - }).catch(function() { - return []; - }); -} - -function getNetdevState(cache) { - return callLuciNetdevs().then(function(state) { - if (!L.isObject(state)) - throw !1; - return state; - }).catch(function() { - return {}; - }); -} - -function getBoardState(cache) { - return callLuciBoardjson().then(function(state) { - if (!L.isObject(state)) - throw !1; - return state; - }).catch(function() { - return {}; - }); -} - -function getProtocolHandlers(cache) { - return callGetProtoHandlers().then(function(protos) { - if (!L.isObject(protos)) - throw !1; - - Object.assign(_protospecs, protos); - - return Promise.all(Object.keys(protos).map(function(p) { - return Promise.resolve(L.require('protocol.%s'.format(p))).catch(function(err) { - if (L.isObject(err) && err.name != 'NetworkError') - L.error(err); - }); - })).then(function() { - return protos; - }); - }).catch(function() { - return {}; - }); -} - -function getWifiStateBySid(sid) { - var s = uci.get('wireless', sid); - - if (s != null && s['.type'] == 'wifi-iface') { - for (var radioname in _state.radios) { - for (var i = 0; i < _state.radios[radioname].interfaces.length; i++) { - var netstate = _state.radios[radioname].interfaces[i]; - - if (typeof(netstate.section) != 'string') - continue; - - var s2 = uci.get('wireless', netstate.section); - - if (s2 != null && s['.type'] == s2['.type'] && s['.name'] == s2['.name']) - return [ radioname, _state.radios[radioname], netstate ]; - } - } - } - - return null; -} - -function getWifiStateByIfname(ifname) { - for (var radioname in _state.radios) { - for (var i = 0; i < _state.radios[radioname].interfaces.length; i++) { - var netstate = _state.radios[radioname].interfaces[i]; - - if (typeof(netstate.ifname) != 'string') - continue; - - if (netstate.ifname == ifname) - return [ radioname, _state.radios[radioname], netstate ]; - } - } - - return null; -} - -function isWifiIfname(ifname) { - for (var i = 0; i < iface_patterns_wireless.length; i++) - if (iface_patterns_wireless[i].test(ifname)) - return true; - - return false; -} - -function getWifiIwinfoByIfname(ifname, forcePhyOnly) { - var tasks = [ callIwinfoInfo(ifname) ]; - - if (!forcePhyOnly) - tasks.push(getNetdevState()); - - return Promise.all(tasks).then(function(info) { - var iwinfo = info[0], - devstate = info[1], - phyonly = forcePhyOnly || !devstate[ifname] || (devstate[ifname].type != 1); - - if (L.isObject(iwinfo)) { - if (phyonly) { - delete iwinfo.bitrate; - delete iwinfo.quality; - delete iwinfo.quality_max; - delete iwinfo.mode; - delete iwinfo.ssid; - delete iwinfo.bssid; - delete iwinfo.encryption; - } - - iwinfo.ifname = ifname; - } - - return iwinfo; - }).catch(function() { - return null; - }); -} - -function getWifiSidByNetid(netid) { - var m = /^(\w+)\.network(\d+)$/.exec(netid); - if (m) { - var sections = uci.sections('wireless', 'wifi-iface'); - for (var i = 0, n = 0; i < sections.length; i++) { - if (sections[i].device != m[1]) - continue; - - if (++n == +m[2]) - return sections[i]['.name']; - } - } - - return null; -} - -function getWifiSidByIfname(ifname) { - var sid = getWifiSidByNetid(ifname); - - if (sid != null) - return sid; - - var res = getWifiStateByIfname(ifname); - - if (res != null && L.isObject(res[2]) && typeof(res[2].section) == 'string') - return res[2].section; - - return null; -} - -function getWifiNetidBySid(sid) { - var s = uci.get('wireless', sid); - if (s != null && s['.type'] == 'wifi-iface') { - var radioname = s.device; - if (typeof(s.device) == 'string') { - var i = 0, netid = null, sections = uci.sections('wireless', 'wifi-iface'); - for (var i = 0, n = 0; i < sections.length; i++) { - if (sections[i].device != s.device) - continue; - - n++; - - if (sections[i]['.name'] != s['.name']) - continue; - - return [ '%s.network%d'.format(s.device, n), s.device ]; - } - - } - } - - return null; -} - -function getWifiNetidByNetname(name) { - var sections = uci.sections('wireless', 'wifi-iface'); - for (var i = 0; i < sections.length; i++) { - if (typeof(sections[i].network) != 'string') - continue; - - var nets = sections[i].network.split(/\s+/); - for (var j = 0; j < nets.length; j++) { - if (nets[j] != name) - continue; - - return getWifiNetidBySid(sections[i]['.name']); - } - } - - return null; -} - -function isVirtualIfname(ifname) { - for (var i = 0; i < iface_patterns_virtual.length; i++) - if (iface_patterns_virtual[i].test(ifname)) - return true; - - return false; -} - -function isIgnoredIfname(ifname) { - for (var i = 0; i < iface_patterns_ignore.length; i++) - if (iface_patterns_ignore[i].test(ifname)) - return true; - - return false; -} - -function appendValue(config, section, option, value) { - var values = uci.get(config, section, option), - isArray = Array.isArray(values), - rv = false; - - if (isArray == false) - values = L.toArray(values); - - if (values.indexOf(value) == -1) { - values.push(value); - rv = true; - } - - uci.set(config, section, option, isArray ? values : values.join(' ')); - - return rv; -} - -function removeValue(config, section, option, value) { - var values = uci.get(config, section, option), - isArray = Array.isArray(values), - rv = false; - - if (isArray == false) - values = L.toArray(values); - - for (var i = values.length - 1; i >= 0; i--) { - if (values[i] == value) { - values.splice(i, 1); - rv = true; - } - } - - if (values.length > 0) - uci.set(config, section, option, isArray ? values : values.join(' ')); - else - uci.unset(config, section, option); - - return rv; -} - -function prefixToMask(bits, v6) { - var w = v6 ? 128 : 32, - m = []; - - if (bits > w) - return null; - - for (var i = 0; i < w / 16; i++) { - var b = Math.min(16, bits); - m.push((0xffff << (16 - b)) & 0xffff); - bits -= b; - } - - if (v6) - return String.prototype.format.apply('%x:%x:%x:%x:%x:%x:%x:%x', m).replace(/:0(?::0)+$/, '::'); - else - return '%d.%d.%d.%d'.format(m[0] >>> 8, m[0] & 0xff, m[1] >>> 8, m[1] & 0xff); -} - -function maskToPrefix(mask, v6) { - var m = v6 ? validation.parseIPv6(mask) : validation.parseIPv4(mask); - - if (!m) - return null; - - var bits = 0; - - for (var i = 0, z = false; i < m.length; i++) { - z = z || !m[i]; - - while (!z && (m[i] & (v6 ? 0x8000 : 0x80))) { - m[i] = (m[i] << 1) & (v6 ? 0xffff : 0xff); - bits++; - } - - if (m[i]) - return null; - } - - return bits; -} - -function initNetworkState(refresh) { - if (_state == null || refresh) { - _init = _init || Promise.all([ - getInterfaceState(), getDeviceState(), getBoardState(), - getWifiState(), getIfaddrState(), getNetdevState(), getProtocolHandlers(), - uci.load('network'), uci.load('wireless'), uci.load('luci') - ]).then(function(data) { - var board = data[2], ifaddrs = data[4], devices = data[5]; - var s = { - isTunnel: {}, isBridge: {}, isSwitch: {}, isWifi: {}, - ifaces: data[0], devices: data[1], radios: data[3], - netdevs: {}, bridges: {}, switches: {} - }; - - for (var i = 0, a; (a = ifaddrs[i]) != null; i++) { - var name = a.name.replace(/:.+$/, ''); - - if (isVirtualIfname(name)) - s.isTunnel[name] = true; - - if (s.isTunnel[name] || !(isIgnoredIfname(name) || isVirtualIfname(name))) { - s.netdevs[name] = s.netdevs[name] || { - idx: a.ifindex || i, - name: name, - rawname: a.name, - flags: [], - ipaddrs: [], - ip6addrs: [] - }; - - if (a.family == 'packet') { - s.netdevs[name].flags = a.flags; - s.netdevs[name].stats = a.data; - s.netdevs[name].macaddr = a.addr; - } - else if (a.family == 'inet') { - s.netdevs[name].ipaddrs.push(a.addr + '/' + a.netmask); - } - else if (a.family == 'inet6') { - s.netdevs[name].ip6addrs.push(a.addr + '/' + a.netmask); - } - } - } - - for (var devname in devices) { - var dev = devices[devname]; - - if (dev.bridge) { - var b = { - name: devname, - id: dev.id, - stp: dev.stp, - ifnames: [] - }; - - for (var i = 0; dev.ports && i < dev.ports.length; i++) { - var subdev = s.netdevs[dev.ports[i]]; - - if (subdev == null) - continue; - - b.ifnames.push(subdev); - subdev.bridge = b; - } - - s.bridges[devname] = b; - s.isBridge[devname] = true; - } - - if (s.netdevs.hasOwnProperty(devname)) { - Object.assign(s.netdevs[devname], { - macaddr: dev.mac, - type: dev.type, - mtu: dev.mtu, - qlen: dev.qlen - }); - } - } - - if (L.isObject(board.switch)) { - for (var switchname in board.switch) { - var layout = board.switch[switchname], - netdevs = {}, - nports = {}, - ports = [], - pnum = null, - role = null; - - if (L.isObject(layout) && Array.isArray(layout.ports)) { - for (var i = 0, port; (port = layout.ports[i]) != null; i++) { - if (typeof(port) == 'object' && typeof(port.num) == 'number' && - (typeof(port.role) == 'string' || typeof(port.device) == 'string')) { - var spec = { - num: port.num, - role: port.role || 'cpu', - index: (port.index != null) ? port.index : port.num - }; - - if (port.device != null) { - spec.device = port.device; - spec.tagged = spec.need_tag; - netdevs[port.num] = port.device; - } - - ports.push(spec); - - if (port.role != null) - nports[port.role] = (nports[port.role] || 0) + 1; - } - } - - ports.sort(function(a, b) { - if (a.role != b.role) - return (a.role < b.role) ? -1 : 1; - - return (a.index - b.index); - }); - - for (var i = 0, port; (port = ports[i]) != null; i++) { - if (port.role != role) { - role = port.role; - pnum = 1; - } - - if (role == 'cpu') - port.label = 'CPU (%s)'.format(port.device); - else if (nports[role] > 1) - port.label = '%s %d'.format(role.toUpperCase(), pnum++); - else - port.label = role.toUpperCase(); - - delete port.role; - delete port.index; - } - - s.switches[switchname] = { - ports: ports, - netdevs: netdevs - }; - } - } - } - - if (L.isObject(board.dsl) && L.isObject(board.dsl.modem)) { - s.hasDSLModem = board.dsl.modem; - } - - _init = null; - - return (_state = s); - }); - } - - return (_state != null ? Promise.resolve(_state) : _init); -} - -function ifnameOf(obj) { - if (obj instanceof Protocol) - return obj.getIfname(); - else if (obj instanceof Device) - return obj.getName(); - else if (obj instanceof WifiDevice) - return obj.getName(); - else if (obj instanceof WifiNetwork) - return obj.getIfname(); - else if (typeof(obj) == 'string') - return obj.replace(/:.+$/, ''); - - return null; -} - -function networkSort(a, b) { - return a.getName() > b.getName(); -} - -function deviceSort(a, b) { - var typeWeigth = { wifi: 2, alias: 3 }, - weightA = typeWeigth[a.getType()] || 1, - weightB = typeWeigth[b.getType()] || 1; - - if (weightA != weightB) - return weightA - weightB; - - return a.getName() > b.getName(); -} - - -var Network, Protocol, Device, WifiDevice, WifiNetwork; - -Network = L.Class.extend({ - prefixToMask: prefixToMask, - maskToPrefix: maskToPrefix, - - flushCache: function() { - initNetworkState(true); - return _init; - }, - - getProtocol: function(protoname, netname) { - var v = _protocols[protoname]; - if (v != null) - return new v(netname || '__dummy__'); - - return null; - }, - - getProtocols: function() { - var rv = []; - - for (var protoname in _protocols) - rv.push(new _protocols[protoname]('__dummy__')); - - return rv; - }, - - registerProtocol: function(protoname, methods) { - var spec = L.isObject(_protospecs) ? _protospecs[protoname] : null; - var proto = Protocol.extend(Object.assign({ - getI18n: function() { - return protoname; - }, - - isFloating: function() { - return false; - }, - - isVirtual: function() { - return (L.isObject(spec) && spec.no_device == true); - }, - - renderFormOptions: function(section) { - - } - }, methods, { - __init__: function(name) { - this.sid = name; - }, - - getProtocol: function() { - return protoname; - } - })); - - _protocols[protoname] = proto; - - return proto; - }, - - registerPatternVirtual: function(pat) { - iface_patterns_virtual.push(pat); - }, - - registerErrorCode: function(code, message) { - if (typeof(code) == 'string' && - typeof(message) == 'string' && - !proto_errors.hasOwnProperty(code)) { - proto_errors[code] = message; - return true; - } - - return false; - }, - - addNetwork: function(name, options) { - return this.getNetwork(name).then(L.bind(function(existingNetwork) { - if (name != null && /^[a-zA-Z0-9_]+$/.test(name) && existingNetwork == null) { - var sid = uci.add('network', 'interface', name); - - if (sid != null) { - if (L.isObject(options)) - for (var key in options) - if (options.hasOwnProperty(key)) - uci.set('network', sid, key, options[key]); - - return this.instantiateNetwork(sid); - } - } - else if (existingNetwork != null && existingNetwork.isEmpty()) { - if (L.isObject(options)) - for (var key in options) - if (options.hasOwnProperty(key)) - existingNetwork.set(key, options[key]); - - return existingNetwork; - } - }, this)); - }, - - getNetwork: function(name) { - return initNetworkState().then(L.bind(function() { - var section = (name != null) ? uci.get('network', name) : null; - - if (section != null && section['.type'] == 'interface') { - return this.instantiateNetwork(name); - } - else if (name != null) { - for (var i = 0; i < _state.ifaces.length; i++) - if (_state.ifaces[i].interface == name) - return this.instantiateNetwork(name, _state.ifaces[i].proto); - } - - return null; - }, this)); - }, - - getNetworks: function() { - return initNetworkState().then(L.bind(function() { - var uciInterfaces = uci.sections('network', 'interface'), - networks = {}; - - for (var i = 0; i < uciInterfaces.length; i++) - networks[uciInterfaces[i]['.name']] = this.instantiateNetwork(uciInterfaces[i]['.name']); - - for (var i = 0; i < _state.ifaces.length; i++) - if (networks[_state.ifaces[i].interface] == null) - networks[_state.ifaces[i].interface] = - this.instantiateNetwork(_state.ifaces[i].interface, _state.ifaces[i].proto); - - var rv = []; - - for (var network in networks) - if (networks.hasOwnProperty(network)) - rv.push(networks[network]); - - rv.sort(networkSort); - - return rv; - }, this)); - }, - - deleteNetwork: function(name) { - return Promise.all([ L.require('firewall').catch(function() { return null }), initNetworkState() ]).then(function() { - var uciInterface = uci.get('network', name); - - if (uciInterface != null && uciInterface['.type'] == 'interface') { - uci.remove('network', name); - - uci.sections('luci', 'ifstate', function(s) { - if (s.interface == name) - uci.remove('luci', s['.name']); - }); - - uci.sections('network', 'alias', function(s) { - if (s.interface == name) - uci.remove('network', s['.name']); - }); - - uci.sections('network', 'route', function(s) { - if (s.interface == name) - uci.remove('network', s['.name']); - }); - - uci.sections('network', 'route6', function(s) { - if (s.interface == name) - uci.remove('network', s['.name']); - }); - - uci.sections('wireless', 'wifi-iface', function(s) { - var networks = L.toArray(s.network).filter(function(network) { return network != name }); - - if (networks.length > 0) - uci.set('wireless', s['.name'], 'network', networks.join(' ')); - else - uci.unset('wireless', s['.name'], 'network'); - }); - - if (L.firewall) - return L.firewall.deleteNetwork(name).then(function() { return true }); - - return true; - } - - return false; - }); - }, - - renameNetwork: function(oldName, newName) { - return initNetworkState().then(function() { - if (newName == null || !/^[a-zA-Z0-9_]+$/.test(newName) || uci.get('network', newName) != null) - return false; - - var oldNetwork = uci.get('network', oldName); - - if (oldNetwork == null || oldNetwork['.type'] != 'interface') - return false; - - var sid = uci.add('network', 'interface', newName); - - for (var key in oldNetwork) - if (oldNetwork.hasOwnProperty(key) && key.charAt(0) != '.') - uci.set('network', sid, key, oldNetwork[key]); - - uci.sections('luci', 'ifstate', function(s) { - if (s.interface == oldName) - uci.set('luci', s['.name'], 'interface', newName); - }); - - uci.sections('network', 'alias', function(s) { - if (s.interface == oldName) - uci.set('network', s['.name'], 'interface', newName); - }); - - uci.sections('network', 'route', function(s) { - if (s.interface == oldName) - uci.set('network', s['.name'], 'interface', newName); - }); - - uci.sections('network', 'route6', function(s) { - if (s.interface == oldName) - uci.set('network', s['.name'], 'interface', newName); - }); - - uci.sections('wireless', 'wifi-iface', function(s) { - var networks = L.toArray(s.network).map(function(network) { return (network == oldName ? newName : network) }); - - if (networks.length > 0) - uci.set('wireless', s['.name'], 'network', networks.join(' ')); - }); - - uci.remove('network', oldName); - - return true; - }); - }, - - getDevice: function(name) { - return initNetworkState().then(L.bind(function() { - if (name == null) - return null; - - if (_state.netdevs.hasOwnProperty(name) || isWifiIfname(name)) - return this.instantiateDevice(name); - - var netid = getWifiNetidBySid(name); - if (netid != null) - return this.instantiateDevice(netid[0]); - - return null; - }, this)); - }, - - getDevices: function() { - return initNetworkState().then(L.bind(function() { - var devices = {}; - - /* find simple devices */ - var uciInterfaces = uci.sections('network', 'interface'); - for (var i = 0; i < uciInterfaces.length; i++) { - var ifnames = L.toArray(uciInterfaces[i].ifname); - - for (var j = 0; j < ifnames.length; j++) { - if (ifnames[j].charAt(0) == '@') - continue; - - if (isIgnoredIfname(ifnames[j]) || isVirtualIfname(ifnames[j]) || isWifiIfname(ifnames[j])) - continue; - - devices[ifnames[j]] = this.instantiateDevice(ifnames[j]); - } - } - - for (var ifname in _state.netdevs) { - if (devices.hasOwnProperty(ifname)) - continue; - - if (isIgnoredIfname(ifname) || isVirtualIfname(ifname) || isWifiIfname(ifname)) - continue; - - devices[ifname] = this.instantiateDevice(ifname); - } - - /* find VLAN devices */ - var uciSwitchVLANs = uci.sections('network', 'switch_vlan'); - for (var i = 0; i < uciSwitchVLANs.length; i++) { - if (typeof(uciSwitchVLANs[i].ports) != 'string' || - typeof(uciSwitchVLANs[i].device) != 'string' || - !_state.switches.hasOwnProperty(uciSwitchVLANs[i].device)) - continue; - - var ports = uciSwitchVLANs[i].ports.split(/\s+/); - for (var j = 0; j < ports.length; j++) { - var m = ports[j].match(/^(\d+)([tu]?)$/); - if (m == null) - continue; - - var netdev = _state.switches[uciSwitchVLANs[i].device].netdevs[m[1]]; - if (netdev == null) - continue; - - if (!devices.hasOwnProperty(netdev)) - devices[netdev] = this.instantiateDevice(netdev); - - _state.isSwitch[netdev] = true; - - if (m[2] != 't') - continue; - - var vid = uciSwitchVLANs[i].vid || uciSwitchVLANs[i].vlan; - vid = (vid != null ? +vid : null); - - if (vid == null || vid < 0 || vid > 4095) - continue; - - var vlandev = '%s.%d'.format(netdev, vid); - - if (!devices.hasOwnProperty(vlandev)) - devices[vlandev] = this.instantiateDevice(vlandev); - - _state.isSwitch[vlandev] = true; - } - } - - /* find wireless interfaces */ - var uciWifiIfaces = uci.sections('wireless', 'wifi-iface'), - networkCount = {}; - - for (var i = 0; i < uciWifiIfaces.length; i++) { - if (typeof(uciWifiIfaces[i].device) != 'string') - continue; - - networkCount[uciWifiIfaces[i].device] = (networkCount[uciWifiIfaces[i].device] || 0) + 1; - - var netid = '%s.network%d'.format(uciWifiIfaces[i].device, networkCount[uciWifiIfaces[i].device]); - - devices[netid] = this.instantiateDevice(netid); - } - - var rv = []; - - for (var netdev in devices) - if (devices.hasOwnProperty(netdev)) - rv.push(devices[netdev]); - - rv.sort(deviceSort); - - return rv; - }, this)); - }, - - isIgnoredDevice: function(name) { - return isIgnoredIfname(name); - }, - - getWifiDevice: function(devname) { - return Promise.all([ getWifiIwinfoByIfname(devname, true), initNetworkState() ]).then(L.bind(function(res) { - var existingDevice = uci.get('wireless', devname); - - if (existingDevice == null || existingDevice['.type'] != 'wifi-device') - return null; - - return this.instantiateWifiDevice(devname, res[0]); - }, this)); - }, - - getWifiDevices: function() { - var deviceNames = []; - - return initNetworkState().then(L.bind(function() { - var uciWifiDevices = uci.sections('wireless', 'wifi-device'), - tasks = []; - - for (var i = 0; i < uciWifiDevices.length; i++) { - tasks.push(callIwinfoInfo(uciWifiDevices['.name'], true)); - deviceNames.push(uciWifiDevices['.name']); - } - - return Promise.all(tasks); - }, this)).then(L.bind(function(iwinfos) { - var rv = []; - - for (var i = 0; i < deviceNames.length; i++) - if (L.isObject(iwinfos[i])) - rv.push(this.instantiateWifiDevice(deviceNames[i], iwinfos[i])); - - rv.sort(function(a, b) { return a.getName() < b.getName() }); - - return rv; - }, this)); - }, - - getWifiNetwork: function(netname) { - var sid, res, netid, radioname, radiostate, netstate; - - return initNetworkState().then(L.bind(function() { - sid = getWifiSidByNetid(netname); - - if (sid != null) { - res = getWifiStateBySid(sid); - netid = netname; - radioname = res ? res[0] : null; - radiostate = res ? res[1] : null; - netstate = res ? res[2] : null; - } - else { - res = getWifiStateByIfname(netname); - - if (res != null) { - radioname = res[0]; - radiostate = res[1]; - netstate = res[2]; - sid = netstate.section; - netid = L.toArray(getWifiNetidBySid(sid))[0]; - } - else { - res = getWifiStateBySid(netname); - - if (res != null) { - radioname = res[0]; - radiostate = res[1]; - netstate = res[2]; - sid = netname; - netid = L.toArray(getWifiNetidBySid(sid))[0]; - } - else { - res = getWifiNetidBySid(netname); - - if (res != null) { - netid = res[0]; - radioname = res[1]; - sid = netname; - } - } - } - } - - return (netstate ? getWifiIwinfoByIfname(netstate.ifname) : Promise.reject()) - .catch(function() { return radioname ? getWifiIwinfoByIfname(radioname) : Promise.reject() }) - .catch(function() { return Promise.resolve({ ifname: netid || sid || netname }) }); - }, this)).then(L.bind(function(iwinfo) { - return this.instantiateWifiNetwork(sid || netname, radioname, radiostate, netid, netstate, iwinfo); - }, this)); - }, - - addWifiNetwork: function(options) { - return initNetworkState().then(L.bind(function() { - if (options == null || - typeof(options) != 'object' || - typeof(options.device) != 'string') - return null; - - var existingDevice = uci.get('wireless', options.device); - if (existingDevice == null || existingDevice['.type'] != 'wifi-device') - return null; - - var sid = uci.add('wireless', 'wifi-iface'); - for (var key in options) - if (options.hasOwnProperty(key)) - uci.set('wireless', sid, key, options[key]); - - var radioname = existingDevice['.name'], - netid = getWifiNetidBySid(sid) || []; - - return this.instantiateWifiNetwork(sid, radioname, _state.radios[radioname], netid[0], null, { ifname: netid }); - }, this)); - }, - - deleteWifiNetwork: function(netname) { - return initNetworkState().then(L.bind(function() { - var sid = getWifiSidByIfname(netname); - - if (sid == null) - return false; - - uci.remove('wireless', sid); - return true; - }, this)); - }, - - getStatusByRoute: function(addr, mask) { - return initNetworkState().then(L.bind(function() { - var rv = []; - - for (var i = 0; i < _state.ifaces.length; i++) { - if (!Array.isArray(_state.ifaces[i].route)) - continue; - - for (var j = 0; j < _state.ifaces[i].route.length; j++) { - if (typeof(_state.ifaces[i].route[j]) != 'object' || - typeof(_state.ifaces[i].route[j].target) != 'string' || - typeof(_state.ifaces[i].route[j].mask) != 'number') - continue; - - if (_state.ifaces[i].route[j].table) - continue; - - if (_state.ifaces[i].route[j].target != addr || - _state.ifaces[i].route[j].mask != mask) - continue; - - rv.push(_state.ifaces[i]); - } - } - - return rv; - }, this)); - }, - - getStatusByAddress: function(addr) { - return initNetworkState().then(L.bind(function() { - var rv = []; - - for (var i = 0; i < _state.ifaces.length; i++) { - if (Array.isArray(_state.ifaces[i]['ipv4-address'])) - for (var j = 0; j < _state.ifaces[i]['ipv4-address'].length; j++) - if (typeof(_state.ifaces[i]['ipv4-address'][j]) == 'object' && - _state.ifaces[i]['ipv4-address'][j].address == addr) - return _state.ifaces[i]; - - if (Array.isArray(_state.ifaces[i]['ipv6-address'])) - for (var j = 0; j < _state.ifaces[i]['ipv6-address'].length; j++) - if (typeof(_state.ifaces[i]['ipv6-address'][j]) == 'object' && - _state.ifaces[i]['ipv6-address'][j].address == addr) - return _state.ifaces[i]; - - if (Array.isArray(_state.ifaces[i]['ipv6-prefix-assignment'])) - for (var j = 0; j < _state.ifaces[i]['ipv6-prefix-assignment'].length; j++) - if (typeof(_state.ifaces[i]['ipv6-prefix-assignment'][j]) == 'object' && - typeof(_state.ifaces[i]['ipv6-prefix-assignment'][j]['local-address']) == 'object' && - _state.ifaces[i]['ipv6-prefix-assignment'][j]['local-address'].address == addr) - return _state.ifaces[i]; - } - - return null; - }, this)); - }, - - getWANNetworks: function() { - return this.getStatusByRoute('0.0.0.0', 0).then(L.bind(function(statuses) { - var rv = []; - - for (var i = 0; i < statuses.length; i++) - rv.push(this.instantiateNetwork(statuses[i].interface, statuses[i].proto)); - - return rv; - }, this)); - }, - - getWAN6Networks: function() { - return this.getStatusByRoute('::', 0).then(L.bind(function(statuses) { - var rv = []; - - for (var i = 0; i < statuses.length; i++) - rv.push(this.instantiateNetwork(statuses[i].interface, statuses[i].proto)); - - return rv; - }, this)); - }, - - getSwitchTopologies: function() { - return initNetworkState().then(function() { - return _state.switches; - }); - }, - - instantiateNetwork: function(name, proto) { - if (name == null) - return null; - - proto = (proto == null ? uci.get('network', name, 'proto') : proto); - - var protoClass = _protocols[proto] || Protocol; - return new protoClass(name); - }, - - instantiateDevice: function(name, network) { - return new Device(name, network); - }, - - instantiateWifiDevice: function(radioname, iwinfo) { - return new WifiDevice(radioname, iwinfo); - }, - - instantiateWifiNetwork: function(sid, radioname, radiostate, netid, netstate, iwinfo) { - return new WifiNetwork(sid, radioname, radiostate, netid, netstate, iwinfo); - }, - - getIfnameOf: function(obj) { - return ifnameOf(obj); - }, - - getDSLModemType: function() { - return initNetworkState().then(function() { - return _state.hasDSLModem ? _state.hasDSLModem.type : null; - }); - } -}); - -Protocol = L.Class.extend({ - __init__: function(name) { - this.sid = name; - }, - - _get: function(opt) { - var val = uci.get('network', this.sid, opt); - - if (Array.isArray(val)) - return val.join(' '); - - return val || ''; - }, - - _ubus: function(field) { - for (var i = 0; i < _state.ifaces.length; i++) { - if (_state.ifaces[i].interface != this.sid) - continue; - - return (field != null ? _state.ifaces[i][field] : _state.ifaces[i]); - } - }, - - get: function(opt) { - return uci.get('network', this.sid, opt); - }, - - set: function(opt, val) { - return uci.set('network', this.sid, opt, val); - }, - - getIfname: function() { - var ifname; - - if (this.isFloating()) - ifname = this._ubus('l3_device'); - else - ifname = this._ubus('device') || this._ubus('l3_device'); - - if (ifname != null) - return ifname; - - var res = getWifiNetidByNetname(this.sid); - return (res != null ? res[0] : null); - }, - - getProtocol: function() { - return null; - }, - - getI18n: function() { - switch (this.getProtocol()) { - case 'none': return _('Unmanaged'); - case 'static': return _('Static address'); - case 'dhcp': return _('DHCP client'); - default: return _('Unknown'); - } - }, - - getType: function() { - return this._get('type'); - }, - - getName: function() { - return this.sid; - }, - - getUptime: function() { - return this._ubus('uptime') || 0; - }, - - getExpiry: function() { - var u = this._ubus('uptime'), - d = this._ubus('data'); - - if (typeof(u) == 'number' && d != null && - typeof(d) == 'object' && typeof(d.leasetime) == 'number') { - var r = d.leasetime - (u % d.leasetime); - return (r > 0 ? r : 0); - } - - return -1; - }, - - getMetric: function() { - return this._ubus('metric') || 0; - }, - - getZoneName: function() { - var d = this._ubus('data'); - - if (L.isObject(d) && typeof(d.zone) == 'string') - return d.zone; - - return null; - }, - - getIPAddr: function() { - var addrs = this._ubus('ipv4-address'); - return ((Array.isArray(addrs) && addrs.length) ? addrs[0].address : null); - }, - - getIPAddrs: function() { - var addrs = this._ubus('ipv4-address'), - rv = []; - - if (Array.isArray(addrs)) - for (var i = 0; i < addrs.length; i++) - rv.push('%s/%d'.format(addrs[i].address, addrs[i].mask)); - - return rv; - }, - - getNetmask: function() { - var addrs = this._ubus('ipv4-address'); - if (Array.isArray(addrs) && addrs.length) - return prefixToMask(addrs[0].mask, false); - }, - - getGatewayAddr: function() { - var routes = this._ubus('route'); - - if (Array.isArray(routes)) - for (var i = 0; i < routes.length; i++) - if (typeof(routes[i]) == 'object' && - routes[i].target == '0.0.0.0' && - routes[i].mask == 0) - return routes[i].nexthop; - - return null; - }, - - getDNSAddrs: function() { - var addrs = this._ubus('dns-server'), - rv = []; - - if (Array.isArray(addrs)) - for (var i = 0; i < addrs.length; i++) - if (!/:/.test(addrs[i])) - rv.push(addrs[i]); - - return rv; - }, - - getIP6Addr: function() { - var addrs = this._ubus('ipv6-address'); - - if (Array.isArray(addrs) && L.isObject(addrs[0])) - return '%s/%d'.format(addrs[0].address, addrs[0].mask); - - addrs = this._ubus('ipv6-prefix-assignment'); - - if (Array.isArray(addrs) && L.isObject(addrs[0]) && L.isObject(addrs[0]['local-address'])) - return '%s/%d'.format(addrs[0]['local-address'].address, addrs[0]['local-address'].mask); - - return null; - }, - - getIP6Addrs: function() { - var addrs = this._ubus('ipv6-address'), - rv = []; - - if (Array.isArray(addrs)) - for (var i = 0; i < addrs.length; i++) - if (L.isObject(addrs[i])) - rv.push('%s/%d'.format(addrs[i].address, addrs[i].mask)); - - addrs = this._ubus('ipv6-prefix-assignment'); - - if (Array.isArray(addrs)) - for (var i = 0; i < addrs.length; i++) - if (L.isObject(addrs[i]) && L.isObject(addrs[i]['local-address'])) - rv.push('%s/%d'.format(addrs[i]['local-address'].address, addrs[i]['local-address'].mask)); - - return rv; - }, - - getDNS6Addrs: function() { - var addrs = this._ubus('dns-server'), - rv = []; - - if (Array.isArray(addrs)) - for (var i = 0; i < addrs.length; i++) - if (/:/.test(addrs[i])) - rv.push(addrs[i]); - - return rv; - }, - - getIP6Prefix: function() { - var prefixes = this._ubus('ipv6-prefix'); - - if (Array.isArray(prefixes) && L.isObject(prefixes[0])) - return '%s/%d'.format(prefixes[0].address, prefixes[0].mask); - - return null; - }, - - getErrors: function() { - var errors = this._ubus('errors'), - rv = null; - - if (Array.isArray(errors)) { - for (var i = 0; i < errors.length; i++) { - if (!L.isObject(errors[i]) || typeof(errors[i].code) != 'string') - continue; - - rv = rv || []; - rv.push(proto_errors[errors[i].code] || _('Unknown error (%s)').format(errors[i].code)); - } - } - - return rv; - }, - - isBridge: function() { - return (!this.isVirtual() && this.getType() == 'bridge'); - }, - - getOpkgPackage: function() { - return null; - }, - - isInstalled: function() { - return true; - }, - - isVirtual: function() { - return false; - }, - - isFloating: function() { - return false; - }, - - isDynamic: function() { - return (this._ubus('dynamic') == true); - }, - - isAlias: function() { - var ifnames = L.toArray(uci.get('network', this.sid, 'ifname')), - parent = null; - - for (var i = 0; i < ifnames.length; i++) - if (ifnames[i].charAt(0) == '@') - parent = ifnames[i].substr(1); - else if (parent != null) - parent = null; - - return parent; - }, - - isEmpty: function() { - if (this.isFloating()) - return false; - - var empty = true, - ifname = this._get('ifname'); - - if (ifname != null && ifname.match(/\S+/)) - empty = false; - - if (empty == true && getWifiNetidBySid(this.sid) != null) - empty = false; - - return empty; - }, - - isUp: function() { - return (this._ubus('up') == true); - }, - - addDevice: function(ifname) { - ifname = ifnameOf(ifname); - - if (ifname == null || this.isFloating()) - return false; - - var wif = getWifiSidByIfname(ifname); - - if (wif != null) - return appendValue('wireless', wif, 'network', this.sid); - - return appendValue('network', this.sid, 'ifname', ifname); - }, - - deleteDevice: function(ifname) { - var rv = false; - - ifname = ifnameOf(ifname); - - if (ifname == null || this.isFloating()) - return false; - - var wif = getWifiSidByIfname(ifname); - - if (wif != null) - rv = removeValue('wireless', wif, 'network', this.sid); - - if (removeValue('network', this.sid, 'ifname', ifname)) - rv = true; - - return rv; - }, - - getDevice: function() { - if (this.isVirtual()) { - var ifname = '%s-%s'.format(this.getProtocol(), this.sid); - _state.isTunnel[this.getProtocol() + '-' + this.sid] = true; - return L.network.instantiateDevice(ifname, this); - } - else if (this.isBridge()) { - var ifname = 'br-%s'.format(this.sid); - _state.isBridge[ifname] = true; - return new Device(ifname, this); - } - else { - var ifnames = L.toArray(uci.get('network', this.sid, 'ifname')); - - for (var i = 0; i < ifnames.length; i++) { - var m = ifnames[i].match(/^([^:/]+)/); - return ((m && m[1]) ? L.network.instantiateDevice(m[1], this) : null); - } - - ifname = getWifiNetidByNetname(this.sid); - - return (ifname != null ? L.network.instantiateDevice(ifname[0], this) : null); - } - }, - - getL2Device: function() { - var ifname = this._ubus('device'); - return (ifname != null ? L.network.instantiateDevice(ifname, this) : null); - }, - - getL3Device: function() { - var ifname = this._ubus('l3_device'); - return (ifname != null ? L.network.instantiateDevice(ifname, this) : null); - }, - - getDevices: function() { - var rv = []; - - if (!this.isBridge() && !(this.isVirtual() && !this.isFloating())) - return null; - - var ifnames = L.toArray(uci.get('network', this.sid, 'ifname')); - - for (var i = 0; i < ifnames.length; i++) { - if (ifnames[i].charAt(0) == '@') - continue; - - var m = ifnames[i].match(/^([^:/]+)/); - if (m != null) - rv.push(L.network.instantiateDevice(m[1], this)); - } - - var uciWifiIfaces = uci.sections('wireless', 'wifi-iface'); - - for (var i = 0; i < uciWifiIfaces.length; i++) { - if (typeof(uciWifiIfaces[i].device) != 'string') - continue; - - var networks = L.toArray(uciWifiIfaces[i].network); - - for (var j = 0; j < networks.length; j++) { - if (networks[j] != this.sid) - continue; - - var netid = getWifiNetidBySid(uciWifiIfaces[i]['.name']); - - if (netid != null) - rv.push(L.network.instantiateDevice(netid[0], this)); - } - } - - rv.sort(deviceSort); - - return rv; - }, - - containsDevice: function(ifname) { - ifname = ifnameOf(ifname); - - if (ifname == null) - return false; - else if (this.isVirtual() && '%s-%s'.format(this.getProtocol(), this.sid) == ifname) - return true; - else if (this.isBridge() && 'br-%s'.format(this.sid) == ifname) - return true; - - var ifnames = L.toArray(uci.get('network', this.sid, 'ifname')); - - for (var i = 0; i < ifnames.length; i++) { - var m = ifnames[i].match(/^([^:/]+)/); - if (m != null && m[1] == ifname) - return true; - } - - var wif = getWifiSidByIfname(ifname); - - if (wif != null) { - var networks = L.toArray(uci.get('wireless', wif, 'network')); - - for (var i = 0; i < networks.length; i++) - if (networks[i] == this.sid) - return true; - } - - return false; - } -}); - -Device = L.Class.extend({ - __init__: function(ifname, network) { - var wif = getWifiSidByIfname(ifname); - - if (wif != null) { - var res = getWifiStateBySid(wif) || [], - netid = getWifiNetidBySid(wif) || []; - - this.wif = new WifiNetwork(wif, res[0], res[1], netid[0], res[2], { ifname: ifname }); - this.ifname = this.wif.getIfname(); - } - - this.ifname = this.ifname || ifname; - this.dev = _state.netdevs[this.ifname]; - this.network = network; - }, - - _ubus: function(field) { - var dump = _state.devices[this.ifname] || {}; - - return (field != null ? dump[field] : dump); - }, - - getName: function() { - return (this.wif != null ? this.wif.getIfname() : this.ifname); - }, - - getMAC: function() { - var mac = (this.dev != null ? this.dev.macaddr : null); - if (mac == null) - mac = this._ubus('macaddr'); - - return mac ? mac.toUpperCase() : null; - }, - - getMTU: function() { - return this.dev ? this.dev.mtu : null; - }, - - getIPAddrs: function() { - var addrs = (this.dev != null ? this.dev.ipaddrs : null); - return (Array.isArray(addrs) ? addrs : []); - }, - - getIP6Addrs: function() { - var addrs = (this.dev != null ? this.dev.ip6addrs : null); - return (Array.isArray(addrs) ? addrs : []); - }, - - getType: function() { - if (this.ifname != null && this.ifname.charAt(0) == '@') - return 'alias'; - else if (this.wif != null || isWifiIfname(this.ifname)) - return 'wifi'; - else if (_state.isBridge[this.ifname]) - return 'bridge'; - else if (_state.isTunnel[this.ifname]) - return 'tunnel'; - else if (this.ifname.indexOf('.') > -1) - return 'vlan'; - else if (_state.isSwitch[this.ifname]) - return 'switch'; - else - return 'ethernet'; - }, - - getShortName: function() { - if (this.wif != null) - return this.wif.getShortName(); - - return this.ifname; - }, - - getI18n: function() { - if (this.wif != null) { - return '%s: %s "%s"'.format( - _('Wireless Network'), - this.wif.getActiveMode(), - this.wif.getActiveSSID() || this.wif.getActiveBSSID() || this.wif.getID() || '?'); - } - - return '%s: "%s"'.format(this.getTypeI18n(), this.getName()); - }, - - getTypeI18n: function() { - switch (this.getType()) { - case 'alias': - return _('Alias Interface'); - - case 'wifi': - return _('Wireless Adapter'); - - case 'bridge': - return _('Bridge'); - - case 'switch': - return _('Ethernet Switch'); - - case 'vlan': - return (_state.isSwitch[this.ifname] ? _('Switch VLAN') : _('Software VLAN')); - - case 'tunnel': - return _('Tunnel Interface'); - - default: - return _('Ethernet Adapter'); - } - }, - - getPorts: function() { - var br = _state.bridges[this.ifname], - rv = []; - - if (br == null || !Array.isArray(br.ifnames)) - return null; - - for (var i = 0; i < br.ifnames.length; i++) - rv.push(L.network.instantiateDevice(br.ifnames[i].name)); - - rv.sort(deviceSort); - - return rv; - }, - - getBridgeID: function() { - var br = _state.bridges[this.ifname]; - return (br != null ? br.id : null); - }, - - getBridgeSTP: function() { - var br = _state.bridges[this.ifname]; - return (br != null ? !!br.stp : false); - }, - - isUp: function() { - var up = this._ubus('up'); - - if (up == null) - up = (this.getType() == 'alias'); - - return up; - }, - - isBridge: function() { - return (this.getType() == 'bridge'); - }, - - isBridgePort: function() { - return (this.dev != null && this.dev.bridge != null); - }, - - getTXBytes: function() { - var stat = this._ubus('statistics'); - return (stat != null ? stat.tx_bytes || 0 : 0); - }, - - getRXBytes: function() { - var stat = this._ubus('statistics'); - return (stat != null ? stat.rx_bytes || 0 : 0); - }, - - getTXPackets: function() { - var stat = this._ubus('statistics'); - return (stat != null ? stat.tx_packets || 0 : 0); - }, - - getRXPackets: function() { - var stat = this._ubus('statistics'); - return (stat != null ? stat.rx_packets || 0 : 0); - }, - - getNetwork: function() { - return this.getNetworks()[0]; - }, - - getNetworks: function() { - if (this.networks == null) { - this.networks = []; - - var networks = L.network.getNetworks(); - - for (var i = 0; i < networks.length; i++) - if (networks[i].containsDevice(this.ifname) || networks[i].getIfname() == this.ifname) - this.networks.push(networks[i]); - - this.networks.sort(networkSort); - } - - return this.networks; - }, - - getWifiNetwork: function() { - return (this.wif != null ? this.wif : null); - } -}); - -WifiDevice = L.Class.extend({ - __init__: function(name, iwinfo) { - var uciWifiDevice = uci.get('wireless', name); - - if (uciWifiDevice != null && - uciWifiDevice['.type'] == 'wifi-device' && - uciWifiDevice['.name'] != null) { - this.sid = uciWifiDevice['.name']; - this.iwinfo = iwinfo; - } - - this.sid = this.sid || name; - this.iwinfo = this.iwinfo || { ifname: this.sid }; - }, - - get: function(opt) { - return uci.get('wireless', this.sid, opt); - }, - - set: function(opt, value) { - return uci.set('wireless', this.sid, opt, value); - }, - - getName: function() { - return this.sid; - }, - - getHWModes: function() { - if (L.isObject(this.iwinfo.hwmodelist)) - for (var k in this.iwinfo.hwmodelist) - return this.iwinfo.hwmodelist; - - return { b: true, g: true }; - }, - - getI18n: function() { - var type = this.iwinfo.hardware_name || 'Generic'; - - if (this.iwinfo.type == 'wl') - type = 'Broadcom'; - - var hwmodes = this.getHWModes(), - modestr = ''; - - if (hwmodes.a) modestr += 'a'; - if (hwmodes.b) modestr += 'b'; - if (hwmodes.g) modestr += 'g'; - if (hwmodes.n) modestr += 'n'; - if (hwmodes.ad) modestr += 'ac'; - - return '%s 802.11%s Wireless Controller (%s)'.format(type, modestr, this.getName()); - }, - - isUp: function() { - if (L.isObject(_state.radios[this.sid])) - return (_state.radios[this.sid].up == true); - - return false; - }, - - getWifiNetwork: function(network) { - return L.network.getWifiNetwork(network).then(L.bind(function(networkInstance) { - var uciWifiIface = (networkInstance.sid ? uci.get('wireless', networkInstance.sid) : null); - - if (uciWifiIface == null || uciWifiIface['.type'] != 'wifi-iface' || uciWifiIface.device != this.sid) - return Promise.reject(); - - return networkInstance; - }, this)); - }, - - getWifiNetworks: function() { - var uciWifiIfaces = uci.sections('wireless', 'wifi-iface'), - tasks = []; - - for (var i = 0; i < uciWifiIfaces.length; i++) - if (uciWifiIfaces[i].device == this.sid) - tasks.push(L.network.getWifiNetwork(uciWifiIfaces[i]['.name'])); - - return Promise.all(tasks); - }, - - addWifiNetwork: function(options) { - if (!L.isObject(options)) - options = {}; - - options.device = this.sid; - - return L.network.addWifiNetwork(options); - }, - - deleteWifiNetwork: function(network) { - var sid = null; - - if (network instanceof WifiNetwork) { - sid = network.sid; - } - else { - var uciWifiIface = uci.get('wireless', network); - - if (uciWifiIface == null || uciWifiIface['.type'] != 'wifi-iface') - sid = getWifiSidByIfname(network); - } - - if (sid == null || uci.get('wireless', sid, 'device') != this.sid) - return Promise.resolve(false); - - uci.delete('wireless', network); - - return Promise.resolve(true); - } -}); - -WifiNetwork = L.Class.extend({ - __init__: function(sid, radioname, radiostate, netid, netstate, iwinfo) { - this.sid = sid; - this.wdev = iwinfo.ifname; - this.iwinfo = iwinfo; - this.netid = netid; - this._ubusdata = { - radio: radioname, - dev: radiostate, - net: netstate - }; - }, - - ubus: function(/* ... */) { - var v = this._ubusdata; - - for (var i = 0; i < arguments.length; i++) - if (L.isObject(v)) - v = v[arguments[i]]; - else - return null; - - return v; - }, - - get: function(opt) { - return uci.get('wireless', this.sid, opt); - }, - - set: function(opt, value) { - return uci.set('wireless', this.sid, opt, value); - }, - - getMode: function() { - return this.ubus('net', 'config', 'mode') || this.get('mode') || 'ap'; - }, - - getSSID: function() { - return this.ubus('net', 'config', 'ssid') || this.get('ssid'); - }, - - getBSSID: function() { - return this.ubus('net', 'config', 'bssid') || this.get('bssid'); - }, - - getNetworkNames: function() { - return L.toArray(this.ubus('net', 'config', 'network') || this.get('network')); - }, - - getID: function() { - return this.netid; - }, - - getName: function() { - return this.sid; - }, - - getIfname: function() { - var ifname = this.ubus('net', 'ifname') || this.iwinfo.ifname; - - if (ifname == null || ifname.match(/^(wifi|radio)\d/)) - ifname = this.netid; - - return ifname; - }, - - getWifiDevice: function() { - var radioname = this.ubus('radio') || this.get('device'); - - if (radioname == null) - return Promise.reject(); - - return L.network.getWifiDevice(radioname); - }, - - isUp: function() { - var device = this.getDevice(); - - if (device == null) - return false; - - return device.isUp(); - }, - - getActiveMode: function() { - var mode = this.iwinfo.mode || this.ubus('net', 'config', 'mode') || this.get('mode') || 'ap'; - - switch (mode) { - case 'ap': return 'Master'; - case 'sta': return 'Client'; - case 'adhoc': return 'Ad-Hoc'; - case 'mesh': return 'Mesh'; - case 'monitor': return 'Monitor'; - default: return mode; - } - }, - - getActiveModeI18n: function() { - var mode = this.getActiveMode(); - - switch (mode) { - case 'Master': return _('Master'); - case 'Client': return _('Client'); - case 'Ad-Hoc': return _('Ad-Hoc'); - case 'Mash': return _('Mesh'); - case 'Monitor': return _('Monitor'); - default: return mode; - } - }, - - getActiveSSID: function() { - return this.iwinfo.ssid || this.ubus('net', 'config', 'ssid') || this.get('ssid'); - }, - - getActiveBSSID: function() { - return this.iwinfo.bssid || this.ubus('net', 'config', 'bssid') || this.get('bssid'); - }, - - getActiveEncryption: function() { - var encryption = this.iwinfo.encryption; - - return (L.isObject(encryption) ? encryption.description || '-' : '-'); - }, - - getAssocList: function() { - // XXX tbd - }, - - getFrequency: function() { - var freq = this.iwinfo.frequency; - - if (freq != null && freq > 0) - return '%.03f'.format(freq / 1000); - - return null; - }, - - getBitRate: function() { - var rate = this.iwinfo.bitrate; - - if (rate != null && rate > 0) - return (rate / 1000); - - return null; - }, - - getChannel: function() { - return this.iwinfo.channel || this.ubus('dev', 'config', 'channel') || this.get('channel'); - }, - - getSignal: function() { - return this.iwinfo.signal || 0; - }, - - getNoise: function() { - return this.iwinfo.noise || 0; - }, - - getCountryCode: function() { - return this.iwinfo.country || this.ubus('dev', 'config', 'country') || '00'; - }, - - getTXPower: function() { - var pwr = this.iwinfo.txpower || 0; - return (pwr + this.getTXPowerOffset()); - }, - - getTXPowerOffset: function() { - return this.iwinfo.txpower_offset || 0; - }, - - getSignalLevel: function(signal, noise) { - if (this.getActiveBSSID() == '00:00:00:00:00:00') - return -1; - - signal = signal || this.getSignal(); - noise = noise || this.getNoise(); - - if (signal < 0 && noise < 0) { - var snr = -1 * (noise - signal); - return Math.floor(snr / 5); - } - - return 0; - }, - - getSignalPercent: function() { - var qc = this.iwinfo.quality || 0, - qm = this.iwinfo.quality_max || 0; - - if (qc > 0 && qm > 0) - return Math.floor((100 / qm) * qc); - - return 0; - }, - - getShortName: function() { - return '%s "%s"'.format( - this.getActiveModeI18n(), - this.getActiveSSID() || this.getActiveBSSID() || this.getID()); - }, - - getI18n: function() { - return '%s: %s "%s" (%s)'.format( - _('Wireless Network'), - this.getActiveModeI18n(), - this.getActiveSSID() || this.getActiveBSSID() || this.getID(), - this.getIfname()); - }, - - getNetwork: function() { - return this.getNetworks()[0]; - }, - - getNetworks: function() { - var networkNames = this.getNetworkNames(), - networks = []; - - for (var i = 0; i < networkNames.length; i++) { - var uciInterface = uci.get('network', networkNames[i]); - - if (uciInterface == null || uciInterface['.type'] != 'interface') - continue; - - networks.push(L.network.instantiateNetwork(networkNames[i])); - } - - networks.sort(networkSort); - - return networks; - }, - - getDevice: function() { - return L.network.instantiateDevice(this.getIfname()); - } -}); - -return Network; diff --git a/luci-base/htdocs/luci-static/resources/promis.min.js b/luci-base/htdocs/luci-static/resources/promis.min.js deleted file mode 100644 index ff71b6999..000000000 --- a/luci-base/htdocs/luci-static/resources/promis.min.js +++ /dev/null @@ -1,5 +0,0 @@ -/* Licensed under the BSD license. Copyright 2014 - Bram Stein. All rights reserved. - * https://github.com/bramstein/promis */ -(function(){'use strict';var f,g=[];function l(a){g.push(a);1==g.length&&f()}function m(){for(;g.length;)g[0](),g.shift()}f=function(){setTimeout(m)};function n(a){this.a=p;this.b=void 0;this.f=[];var b=this;try{a(function(a){q(b,a)},function(a){r(b,a)})}catch(c){r(b,c)}}var p=2;function t(a){return new n(function(b,c){c(a)})}function u(a){return new n(function(b){b(a)})}function q(a,b){if(a.a==p){if(b==a)throw new TypeError;var c=!1;try{var d=b&&b.then;if(null!=b&&"object"==typeof b&&"function"==typeof d){d.call(b,function(b){c||q(a,b);c=!0},function(b){c||r(a,b);c=!0});return}}catch(e){c||r(a,e);return}a.a=0;a.b=b;v(a)}} -function r(a,b){if(a.a==p){if(b==a)throw new TypeError;a.a=1;a.b=b;v(a)}}function v(a){l(function(){if(a.a!=p)for(;a.f.length;){var b=a.f.shift(),c=b[0],d=b[1],e=b[2],b=b[3];try{0==a.a?"function"==typeof c?e(c.call(void 0,a.b)):e(a.b):1==a.a&&("function"==typeof d?e(d.call(void 0,a.b)):b(a.b))}catch(h){b(h)}}})}n.prototype.g=function(a){return this.c(void 0,a)};n.prototype.c=function(a,b){var c=this;return new n(function(d,e){c.f.push([a,b,d,e]);v(c)})}; -function w(a){return new n(function(b,c){function d(c){return function(d){h[c]=d;e+=1;e==a.length&&b(h)}}var e=0,h=[];0==a.length&&b(h);for(var k=0;k 1) ? msg.result[1] : msg.result[0]; - } - else { - req.reject(new Error('Invalid message frame received')); - } - - if (req.expect) { - for (var key in req.expect) { - if (ret != null && key != '') - ret = ret[key]; - - if (ret == null || type.call(ret) != type.call(req.expect[key])) - ret = req.expect[key]; - - break; - } - } - - /* apply filter */ - if (typeof(req.filter) == 'function') { - req.priv[0] = ret; - req.priv[1] = req.params; - ret = req.filter.apply(this, req.priv); - } - - req.resolve(ret); - }, - - list: function() { - var msg = { - jsonrpc: '2.0', - id: rpcRequestID++, - method: 'list', - params: arguments.length ? this.varargs(arguments) : undefined - }; - - return this.call(msg, this.handleListReply); - }, - - declare: function(options) { - return Function.prototype.bind.call(function(rpc, options) { - var args = this.varargs(arguments, 2); - return new Promise(function(resolveFn, rejectFn) { - /* build parameter object */ - var p_off = 0; - var params = { }; - if (Array.isArray(options.params)) - for (p_off = 0; p_off < options.params.length; p_off++) - params[options.params[p_off]] = args[p_off]; - - /* all remaining arguments are private args */ - var priv = [ undefined, undefined ]; - for (; p_off < args.length; p_off++) - priv.push(args[p_off]); - - /* store request info */ - var req = { - expect: options.expect, - filter: options.filter, - resolve: resolveFn, - reject: rejectFn, - params: params, - priv: priv - }; - - /* build message object */ - var msg = { - jsonrpc: '2.0', - id: rpcRequestID++, - method: 'call', - params: [ - rpcSessionID, - options.object, - options.method, - params - ] - }; - - /* call rpc */ - rpc.call(msg, rpc.handleCallReply.bind(rpc, req)); - }); - }, this, this, options); - }, - - getSessionID: function() { - return rpcSessionID; - }, - - setSessionID: function(sid) { - rpcSessionID = sid; - }, - - getBaseURL: function() { - return rpcBaseURL; - }, - - setBaseURL: function(url) { - rpcBaseURL = url; - } -}); diff --git a/luci-base/htdocs/luci-static/resources/tools/prng.js b/luci-base/htdocs/luci-static/resources/tools/prng.js deleted file mode 100644 index 752dc75ce..000000000 --- a/luci-base/htdocs/luci-static/resources/tools/prng.js +++ /dev/null @@ -1,93 +0,0 @@ -'use strict'; - -var s = [0x0000, 0x0000, 0x0000, 0x0000]; - -function mul(a, b) { - var r = [0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000]; - - for (var j = 0; j < 4; j++) { - var k = 0; - for (var i = 0; i < 4; i++) { - var t = a[i] * b[j] + r[i+j] + k; - r[i+j] = t & 0xffff; - k = t >>> 16; - } - r[j+4] = k; - } - - r.length = 4; - - return r; -} - -function add(a, n) { - var r = [0x0000, 0x0000, 0x0000, 0x0000], - k = n; - - for (var i = 0; i < 4; i++) { - var t = a[i] + k; - r[i] = t & 0xffff; - k = t >>> 16; - } - - return r; -} - -function shr(a, n) { - var r = [a[0], a[1], a[2], a[3], 0x0000], - i = 4, - k = 0; - - for (; n > 16; n -= 16, i--) - for (var j = 0; j < 4; j++) - r[j] = r[j+1]; - - for (; i > 0; i--) { - var s = r[i-1]; - r[i-1] = (s >>> n) | k; - k = ((s & ((1 << n) - 1)) << (16 - n)); - } - - r.length = 4; - - return r; -} - -return L.Class.extend({ - seed: function(n) { - n = (n - 1)|0; - s[0] = n & 0xffff; - s[1] = n >>> 16; - s[2] = 0; - s[3] = 0; - }, - - int: function() { - s = mul(s, [0x7f2d, 0x4c95, 0xf42d, 0x5851]); - s = add(s, 1); - - var r = shr(s, 33); - return (r[1] << 16) | r[0]; - }, - - get: function() { - var r = (this.int() % 0x7fffffff) / 0x7fffffff, l, u; - - switch (arguments.length) { - case 0: - return r; - - case 1: - l = 1; - u = arguments[0]|0; - break; - - case 2: - l = arguments[0]|0; - u = arguments[1]|0; - break; - } - - return Math.floor(r * (u - l + 1)) + l; - } -}); diff --git a/luci-base/htdocs/luci-static/resources/tools/widgets.js b/luci-base/htdocs/luci-static/resources/tools/widgets.js deleted file mode 100644 index 861d8c8ce..000000000 --- a/luci-base/htdocs/luci-static/resources/tools/widgets.js +++ /dev/null @@ -1,568 +0,0 @@ -'use strict'; -'require ui'; -'require form'; -'require network'; -'require firewall'; - -var CBIZoneSelect = form.ListValue.extend({ - __name__: 'CBI.ZoneSelect', - - load: function(section_id) { - return Promise.all([ firewall.getZones(), network.getNetworks() ]).then(L.bind(function(zn) { - this.zones = zn[0]; - this.networks = zn[1]; - - return this.super('load', section_id); - }, this)); - }, - - filter: function(section_id, value) { - return true; - }, - - lookupZone: function(name) { - return this.zones.filter(function(zone) { return zone.getName() == name })[0]; - }, - - lookupNetwork: function(name) { - return this.networks.filter(function(network) { return network.getName() == name })[0]; - }, - - renderWidget: function(section_id, option_index, cfgvalue) { - var values = L.toArray((cfgvalue != null) ? cfgvalue : this.default), - isOutputOnly = false, - choices = {}; - - if (this.option == 'dest') { - for (var i = 0; i < this.section.children.length; i++) { - var opt = this.section.children[i]; - if (opt.option == 'src') { - var val = opt.cfgvalue(section_id) || opt.default; - isOutputOnly = (val == null || val == ''); - break; - } - } - - this.title = isOutputOnly ? _('Output zone') : _('Destination zone'); - } - - if (this.allowlocal) { - choices[''] = E('span', { - 'class': 'zonebadge', - 'style': 'background-color:' + firewall.getColorForName(null) - }, [ - E('strong', _('Device')), - (this.allowany || this.allowlocal) - ? ' (%s)'.format(this.option != 'dest' ? _('output') : _('input')) : '' - ]); - } - else if (!this.multiple && (this.rmempty || this.optional)) { - choices[''] = E('span', { - 'class': 'zonebadge', - 'style': 'background-color:' + firewall.getColorForName(null) - }, E('em', _('unspecified'))); - } - - if (this.allowany) { - choices['*'] = E('span', { - 'class': 'zonebadge', - 'style': 'background-color:' + firewall.getColorForName(null) - }, [ - E('strong', _('Any zone')), - (this.allowany && this.allowlocal && !isOutputOnly) ? ' (%s)'.format(_('forward')) : '' - ]); - } - - for (var i = 0; i < this.zones.length; i++) { - var zone = this.zones[i], - name = zone.getName(), - networks = zone.getNetworks(), - ifaces = []; - - if (!this.filter(section_id, name)) - continue; - - for (var j = 0; j < networks.length; j++) { - var network = this.lookupNetwork(networks[j]); - - if (!network) - continue; - - var span = E('span', { - 'class': 'ifacebadge' + (network.getName() == this.network ? ' ifacebadge-active' : '') - }, network.getName() + ': '); - - var devices = network.isBridge() ? network.getDevices() : L.toArray(network.getDevice()); - - for (var k = 0; k < devices.length; k++) { - span.appendChild(E('img', { - 'title': devices[k].getI18n(), - 'src': L.resource('icons/%s%s.png'.format(devices[k].getType(), devices[k].isUp() ? '' : '_disabled')) - })); - } - - if (!devices.length) - span.appendChild(E('em', _('(empty)'))); - - ifaces.push(span); - } - - if (!ifaces.length) - ifaces.push(E('em', _('(empty)'))); - - choices[name] = E('span', { - 'class': 'zonebadge', - 'style': 'background-color:' + zone.getColor() - }, [ E('strong', name) ].concat(ifaces)); - } - - var widget = new ui.Dropdown(values, choices, { - id: this.cbid(section_id), - sort: true, - multiple: this.multiple, - optional: this.optional || this.rmempty, - select_placeholder: E('em', _('unspecified')), - display_items: this.display_size || this.size || 3, - dropdown_items: this.dropdown_size || this.size || 5, - validate: L.bind(this.validate, this, section_id), - create: !this.nocreate, - create_markup: '' + - '
  • ' + - '' + - '{{value}}: ('+_('create')+')' + - '' + - '
  • ' - }); - - var elem = widget.render(); - - if (this.option == 'src') { - elem.addEventListener('cbi-dropdown-change', L.bind(function(ev) { - var opt = this.map.lookupOption('dest', section_id), - val = ev.detail.instance.getValue(); - - if (opt == null) - return; - - var cbid = opt[0].cbid(section_id), - label = document.querySelector('label[for="widget.%s"]'.format(cbid)), - node = document.getElementById(cbid); - - L.dom.content(label, val == '' ? _('Output zone') : _('Destination zone')); - - if (val == '') { - if (L.dom.callClassMethod(node, 'getValue') == '') - L.dom.callClassMethod(node, 'setValue', '*'); - - var emptyval = node.querySelector('[data-value=""]'), - anyval = node.querySelector('[data-value="*"]'); - - L.dom.content(anyval.querySelector('span'), E('strong', _('Any zone'))); - - if (emptyval != null) - emptyval.parentNode.removeChild(emptyval); - } - else { - var anyval = node.querySelector('[data-value="*"]'), - emptyval = node.querySelector('[data-value=""]'); - - if (emptyval == null) { - emptyval = anyval.cloneNode(true); - emptyval.removeAttribute('display'); - emptyval.removeAttribute('selected'); - emptyval.setAttribute('data-value', ''); - } - - L.dom.content(emptyval.querySelector('span'), [ - E('strong', _('Device')), ' (%s)'.format(_('input')) - ]); - - L.dom.content(anyval.querySelector('span'), [ - E('strong', _('Any zone')), ' (%s)'.format(_('forward')) - ]); - - anyval.parentNode.insertBefore(emptyval, anyval); - } - - }, this)); - } - else if (isOutputOnly) { - var emptyval = elem.querySelector('[data-value=""]'); - emptyval.parentNode.removeChild(emptyval); - } - - return elem; - }, -}); - -var CBIZoneForwards = form.DummyValue.extend({ - __name__: 'CBI.ZoneForwards', - - load: function(section_id) { - return Promise.all([ - firewall.getDefaults(), - firewall.getZones(), - network.getNetworks(), - network.getDevices() - ]).then(L.bind(function(dznd) { - this.defaults = dznd[0]; - this.zones = dznd[1]; - this.networks = dznd[2]; - this.devices = dznd[3]; - - return this.super('load', section_id); - }, this)); - }, - - renderZone: function(zone) { - var name = zone.getName(), - networks = zone.getNetworks(), - devices = zone.getDevices(), - subnets = zone.getSubnets(), - ifaces = []; - - for (var j = 0; j < networks.length; j++) { - var network = this.networks.filter(function(net) { return net.getName() == networks[j] })[0]; - - if (!network) - continue; - - var span = E('span', { - 'class': 'ifacebadge' + (network.getName() == this.network ? ' ifacebadge-active' : '') - }, network.getName() + ': '); - - var subdevs = network.isBridge() ? network.getDevices() : L.toArray(network.getDevice()); - - for (var k = 0; k < subdevs.length && subdevs[k]; k++) { - span.appendChild(E('img', { - 'title': subdevs[k].getI18n(), - 'src': L.resource('icons/%s%s.png'.format(subdevs[k].getType(), subdevs[k].isUp() ? '' : '_disabled')) - })); - } - - if (!subdevs.length) - span.appendChild(E('em', _('(empty)'))); - - ifaces.push(span); - } - - for (var i = 0; i < devices.length; i++) { - var device = this.devices.filter(function(dev) { return dev.getName() == devices[i] })[0], - title = device ? device.getI18n() : _('Absent Interface'), - type = device ? device.getType() : 'ethernet', - up = device ? device.isUp() : false; - - ifaces.push(E('span', { 'class': 'ifacebadge' }, [ - E('img', { - 'title': title, - 'src': L.resource('icons/%s%s.png'.format(type, up ? '' : '_disabled')) - }), - device ? device.getName() : devices[i] - ])); - } - - if (subnets.length > 0) - ifaces.push(E('span', { 'class': 'ifacebadge' }, [ '{ %s }'.format(subnets.join('; ')) ])); - - if (!ifaces.length) - ifaces.push(E('span', { 'class': 'ifacebadge' }, E('em', _('(empty)')))); - - return E('label', { - 'class': 'zonebadge cbi-tooltip-container', - 'style': 'background-color:' + zone.getColor() - }, [ - E('strong', name), - E('div', { 'class': 'cbi-tooltip' }, ifaces) - ]); - }, - - renderWidget: function(section_id, option_index, cfgvalue) { - var value = (cfgvalue != null) ? cfgvalue : this.default, - zone = this.zones.filter(function(z) { return z.getName() == value })[0]; - - if (!zone) - return E([]); - - var forwards = zone.getForwardingsBy('src'), - dzones = []; - - for (var i = 0; i < forwards.length; i++) { - var dzone = forwards[i].getDestinationZone(); - - if (!dzone) - continue; - - dzones.push(this.renderZone(dzone)); - } - - if (!dzones.length) - dzones.push(E('label', { 'class': 'zonebadge zonebadge-empty' }, - E('strong', this.defaults.getForward()))); - - return E('div', { 'class': 'zone-forwards' }, [ - E('div', { 'class': 'zone-src' }, this.renderZone(zone)), - E('span', '⇒'), - E('div', { 'class': 'zone-dest' }, dzones) - ]); - }, -}); - -var CBINetworkSelect = form.ListValue.extend({ - __name__: 'CBI.NetworkSelect', - - load: function(section_id) { - return network.getNetworks().then(L.bind(function(networks) { - this.networks = networks; - - return this.super('load', section_id); - }, this)); - }, - - filter: function(section_id, value) { - return true; - }, - - renderIfaceBadge: function(network) { - var span = E('span', { 'class': 'ifacebadge' }, network.getName() + ': '), - devices = network.isBridge() ? network.getDevices() : L.toArray(network.getDevice()); - - for (var j = 0; j < devices.length && devices[j]; j++) { - span.appendChild(E('img', { - 'title': devices[j].getI18n(), - 'src': L.resource('icons/%s%s.png'.format(devices[j].getType(), devices[j].isUp() ? '' : '_disabled')) - })); - } - - if (!devices.length) { - span.appendChild(E('em', { 'class': 'hide-close' }, _('(no interfaces attached)'))); - span.appendChild(E('em', { 'class': 'hide-open' }, '-')); - } - - return span; - }, - - renderWidget: function(section_id, option_index, cfgvalue) { - var values = L.toArray((cfgvalue != null) ? cfgvalue : this.default), - choices = {}, - checked = {}; - - for (var i = 0; i < values.length; i++) - checked[values[i]] = true; - - values = []; - - if (!this.multiple && (this.rmempty || this.optional)) - choices[''] = E('em', _('unspecified')); - - for (var i = 0; i < this.networks.length; i++) { - var network = this.networks[i], - name = network.getName(); - - if (name == 'loopback' || name == this.exclude || !this.filter(section_id, name)) - continue; - - if (this.novirtual && network.isVirtual()) - continue; - - if (checked[name]) - values.push(name); - - choices[name] = this.renderIfaceBadge(network); - } - - var widget = new ui.Dropdown(this.multiple ? values : values[0], choices, { - id: this.cbid(section_id), - sort: true, - multiple: this.multiple, - optional: this.optional || this.rmempty, - select_placeholder: E('em', _('unspecified')), - display_items: this.display_size || this.size || 3, - dropdown_items: this.dropdown_size || this.size || 5, - validate: L.bind(this.validate, this, section_id), - create: !this.nocreate, - create_markup: '' + - '
  • ' + - '' + - '{{value}}: ('+_('create')+')' + - '' + - '
  • ' - }); - - return widget.render(); - }, - - textvalue: function(section_id) { - var cfgvalue = this.cfgvalue(section_id), - values = L.toArray((cfgvalue != null) ? cfgvalue : this.default), - rv = E([]); - - for (var i = 0; i < (this.networks || []).length; i++) { - var network = this.networks[i], - name = network.getName(); - - if (values.indexOf(name) == -1) - continue; - - if (rv.length) - L.dom.append(rv, ' '); - - L.dom.append(rv, this.renderIfaceBadge(network)); - } - - if (!rv.firstChild) - rv.appendChild(E('em', _('unspecified'))); - - return rv; - }, -}); - -var CBIDeviceSelect = form.ListValue.extend({ - __name__: 'CBI.DeviceSelect', - - load: function(section_id) { - return Promise.all([ - network.getDevices(), - this.noaliases ? null : network.getNetworks() - ]).then(L.bind(function(data) { - this.devices = data[0]; - this.networks = data[1]; - - return this.super('load', section_id); - }, this)); - }, - - filter: function(section_id, value) { - return true; - }, - - renderWidget: function(section_id, option_index, cfgvalue) { - var values = L.toArray((cfgvalue != null) ? cfgvalue : this.default), - choices = {}, - checked = {}, - order = []; - - for (var i = 0; i < values.length; i++) - checked[values[i]] = true; - - values = []; - - if (!this.multiple && (this.rmempty || this.optional)) - choices[''] = E('em', _('unspecified')); - - for (var i = 0; i < this.devices.length; i++) { - var device = this.devices[i], - name = device.getName(), - type = device.getType(); - - if (name == 'lo' || name == this.exclude || !this.filter(section_id, name)) - continue; - - if (this.noaliases && type == 'alias') - continue; - - if (this.nobridges && type == 'bridge') - continue; - - if (this.noinactive && device.isUp() == false) - continue; - - var item = E([ - E('img', { - 'title': device.getI18n(), - 'src': L.resource('icons/%s%s.png'.format(type, device.isUp() ? '' : '_disabled')) - }), - E('span', { 'class': 'hide-open' }, [ name ]), - E('span', { 'class': 'hide-close'}, [ device.getI18n() ]) - ]); - - var networks = device.getNetworks(); - - if (networks.length > 0) - L.dom.append(item.lastChild, [ ' (', networks.join(', '), ')' ]); - - if (checked[name]) - values.push(name); - - choices[name] = item; - order.push(name); - } - - if (this.networks != null) { - for (var i = 0; i < this.networks.length; i++) { - var net = this.networks[i], - device = network.instantiateDevice('@%s'.format(net.getName()), net), - name = device.getName(); - - if (name == '@loopback' || name == this.exclude || !this.filter(section_id, name)) - continue; - - if (this.noinactive && net.isUp() == false) - continue; - - var item = E([ - E('img', { - 'title': device.getI18n(), - 'src': L.resource('icons/alias%s.png'.format(net.isUp() ? '' : '_disabled')) - }), - E('span', { 'class': 'hide-open' }, [ name ]), - E('span', { 'class': 'hide-close'}, [ device.getI18n() ]) - ]); - - if (checked[name]) - values.push(name); - - choices[name] = item; - order.push(name); - } - } - - if (!this.nocreate) { - var keys = Object.keys(checked).sort(); - - for (var i = 0; i < keys.length; i++) { - if (choices.hasOwnProperty(keys[i])) - continue; - - choices[keys[i]] = E([ - E('img', { - 'title': _('Absent Interface'), - 'src': L.resource('icons/ethernet_disabled.png') - }), - E('span', { 'class': 'hide-open' }, [ keys[i] ]), - E('span', { 'class': 'hide-close'}, [ '%s: "%h"'.format(_('Absent Interface'), keys[i]) ]) - ]); - - values.push(keys[i]); - order.push(keys[i]); - } - } - - var widget = new ui.Dropdown(this.multiple ? values : values[0], choices, { - id: this.cbid(section_id), - sort: order, - multiple: this.multiple, - optional: this.optional || this.rmempty, - select_placeholder: E('em', _('unspecified')), - display_items: this.display_size || this.size || 3, - dropdown_items: this.dropdown_size || this.size || 5, - validate: L.bind(this.validate, this, section_id), - create: !this.nocreate, - create_markup: '' + - '
  • ' + - '' + - '{{value}}' + - ''+_('Custom Interface')+': "{{value}}"' + - '
  • ' - }); - - return widget.render(); - }, -}); - - -return L.Class.extend({ - ZoneSelect: CBIZoneSelect, - ZoneForwards: CBIZoneForwards, - NetworkSelect: CBINetworkSelect, - DeviceSelect: CBIDeviceSelect, -}); diff --git a/luci-base/htdocs/luci-static/resources/uci.js b/luci-base/htdocs/luci-static/resources/uci.js deleted file mode 100644 index 17f11eecb..000000000 --- a/luci-base/htdocs/luci-static/resources/uci.js +++ /dev/null @@ -1,540 +0,0 @@ -'use strict'; -'require rpc'; - -return L.Class.extend({ - __init__: function() { - this.state = { - newidx: 0, - values: { }, - creates: { }, - changes: { }, - deletes: { }, - reorder: { } - }; - - this.loaded = {}; - }, - - callLoad: rpc.declare({ - object: 'uci', - method: 'get', - params: [ 'config' ], - expect: { values: { } } - }), - - callOrder: rpc.declare({ - object: 'uci', - method: 'order', - params: [ 'config', 'sections' ] - }), - - callAdd: rpc.declare({ - object: 'uci', - method: 'add', - params: [ 'config', 'type', 'name', 'values' ], - expect: { section: '' } - }), - - callSet: rpc.declare({ - object: 'uci', - method: 'set', - params: [ 'config', 'section', 'values' ] - }), - - callDelete: rpc.declare({ - object: 'uci', - method: 'delete', - params: [ 'config', 'section', 'options' ] - }), - - callApply: rpc.declare({ - object: 'uci', - method: 'apply', - params: [ 'timeout', 'rollback' ] - }), - - callConfirm: rpc.declare({ - object: 'uci', - method: 'confirm' - }), - - createSID: function(conf) { - var v = this.state.values, - n = this.state.creates, - sid; - - do { - sid = "new%06x".format(Math.random() * 0xFFFFFF); - } while ((n[conf] && n[conf][sid]) || (v[conf] && v[conf][sid])); - - return sid; - }, - - resolveSID: function(conf, sid) { - if (typeof(sid) != 'string') - return sid; - - var m = /^@([a-zA-Z0-9_-]+)\[(-?[0-9]+)\]$/.exec(sid); - - if (m) { - var type = m[1], - pos = +m[2], - sections = this.sections(conf, type), - section = sections[pos >= 0 ? pos : sections.length + pos]; - - return section ? section['.name'] : null; - } - - return sid; - }, - - reorderSections: function() { - var v = this.state.values, - n = this.state.creates, - r = this.state.reorder, - tasks = []; - - if (Object.keys(r).length === 0) - return Promise.resolve(); - - /* - gather all created and existing sections, sort them according - to their index value and issue an uci order call - */ - for (var c in r) { - var o = [ ]; - - if (n[c]) - for (var s in n[c]) - o.push(n[c][s]); - - for (var s in v[c]) - o.push(v[c][s]); - - if (o.length > 0) { - o.sort(function(a, b) { - return (a['.index'] - b['.index']); - }); - - var sids = [ ]; - - for (var i = 0; i < o.length; i++) - sids.push(o[i]['.name']); - - tasks.push(this.callOrder(c, sids)); - } - } - - this.state.reorder = { }; - return Promise.all(tasks); - }, - - loadPackage: function(packageName) { - if (this.loaded[packageName] == null) - return (this.loaded[packageName] = this.callLoad(packageName)); - - return Promise.resolve(this.loaded[packageName]); - }, - - load: function(packages) { - var self = this, - pkgs = [ ], - tasks = []; - - if (!Array.isArray(packages)) - packages = [ packages ]; - - for (var i = 0; i < packages.length; i++) - if (!self.state.values[packages[i]]) { - pkgs.push(packages[i]); - tasks.push(self.loadPackage(packages[i])); - } - - return Promise.all(tasks).then(function(responses) { - for (var i = 0; i < responses.length; i++) - self.state.values[pkgs[i]] = responses[i]; - - if (responses.length) - document.dispatchEvent(new CustomEvent('uci-loaded')); - - return pkgs; - }); - }, - - unload: function(packages) { - if (!Array.isArray(packages)) - packages = [ packages ]; - - for (var i = 0; i < packages.length; i++) { - delete this.state.values[packages[i]]; - delete this.state.creates[packages[i]]; - delete this.state.changes[packages[i]]; - delete this.state.deletes[packages[i]]; - - delete this.loaded[packages[i]]; - } - }, - - add: function(conf, type, name) { - var n = this.state.creates, - sid = name || this.createSID(conf); - - if (!n[conf]) - n[conf] = { }; - - n[conf][sid] = { - '.type': type, - '.name': sid, - '.create': name, - '.anonymous': !name, - '.index': 1000 + this.state.newidx++ - }; - - return sid; - }, - - remove: function(conf, sid) { - var n = this.state.creates, - c = this.state.changes, - d = this.state.deletes; - - /* requested deletion of a just created section */ - if (n[conf] && n[conf][sid]) { - delete n[conf][sid]; - } - else { - if (c[conf]) - delete c[conf][sid]; - - if (!d[conf]) - d[conf] = { }; - - d[conf][sid] = true; - } - }, - - sections: function(conf, type, cb) { - var sa = [ ], - v = this.state.values[conf], - n = this.state.creates[conf], - c = this.state.changes[conf], - d = this.state.deletes[conf]; - - if (!v) - return sa; - - for (var s in v) - if (!d || d[s] !== true) - if (!type || v[s]['.type'] == type) - sa.push(Object.assign({ }, v[s], c ? c[s] : undefined)); - - if (n) - for (var s in n) - if (!type || n[s]['.type'] == type) - sa.push(Object.assign({ }, n[s])); - - sa.sort(function(a, b) { - return a['.index'] - b['.index']; - }); - - for (var i = 0; i < sa.length; i++) - sa[i]['.index'] = i; - - if (typeof(cb) == 'function') - for (var i = 0; i < sa.length; i++) - cb.call(this, sa[i], sa[i]['.name']); - - return sa; - }, - - get: function(conf, sid, opt) { - var v = this.state.values, - n = this.state.creates, - c = this.state.changes, - d = this.state.deletes; - - sid = this.resolveSID(conf, sid); - - if (sid == null) - return null; - - /* requested option in a just created section */ - if (n[conf] && n[conf][sid]) { - if (!n[conf]) - return undefined; - - if (opt == null) - return n[conf][sid]; - - return n[conf][sid][opt]; - } - - /* requested an option value */ - if (opt != null) { - /* check whether option was deleted */ - if (d[conf] && d[conf][sid]) { - if (d[conf][sid] === true) - return undefined; - - for (var i = 0; i < d[conf][sid].length; i++) - if (d[conf][sid][i] == opt) - return undefined; - } - - /* check whether option was changed */ - if (c[conf] && c[conf][sid] && c[conf][sid][opt] != null) - return c[conf][sid][opt]; - - /* return base value */ - if (v[conf] && v[conf][sid]) - return v[conf][sid][opt]; - - return undefined; - } - - /* requested an entire section */ - if (v[conf]) - return v[conf][sid]; - - return undefined; - }, - - set: function(conf, sid, opt, val) { - var v = this.state.values, - n = this.state.creates, - c = this.state.changes, - d = this.state.deletes; - - sid = this.resolveSID(conf, sid); - - if (sid == null || opt == null || opt.charAt(0) == '.') - return; - - if (n[conf] && n[conf][sid]) { - if (val != null) - n[conf][sid][opt] = val; - else - delete n[conf][sid][opt]; - } - else if (val != null && val !== '') { - /* do not set within deleted section */ - if (d[conf] && d[conf][sid] === true) - return; - - /* only set in existing sections */ - if (!v[conf] || !v[conf][sid]) - return; - - if (!c[conf]) - c[conf] = {}; - - if (!c[conf][sid]) - c[conf][sid] = {}; - - /* undelete option */ - if (d[conf] && d[conf][sid]) - d[conf][sid] = d[conf][sid].filter(function(o) { return o !== opt }); - - c[conf][sid][opt] = val; - } - else { - /* only delete in existing sections */ - if (!(v[conf] && v[conf][sid] && v[conf][sid].hasOwnProperty(opt)) && - !(c[conf] && c[conf][sid] && c[conf][sid].hasOwnProperty(opt))) - return; - - if (!d[conf]) - d[conf] = { }; - - if (!d[conf][sid]) - d[conf][sid] = [ ]; - - if (d[conf][sid] !== true) - d[conf][sid].push(opt); - } - }, - - unset: function(conf, sid, opt) { - return this.set(conf, sid, opt, null); - }, - - get_first: function(conf, type, opt) { - var sid = null; - - this.sections(conf, type, function(s) { - if (sid == null) - sid = s['.name']; - }); - - return this.get(conf, sid, opt); - }, - - set_first: function(conf, type, opt, val) { - var sid = null; - - this.sections(conf, type, function(s) { - if (sid == null) - sid = s['.name']; - }); - - return this.set(conf, sid, opt, val); - }, - - unset_first: function(conf, type, opt) { - return this.set_first(conf, type, opt, null); - }, - - move: function(conf, sid1, sid2, after) { - var sa = this.sections(conf), - s1 = null, s2 = null; - - sid1 = this.resolveSID(conf, sid1); - sid2 = this.resolveSID(conf, sid2); - - for (var i = 0; i < sa.length; i++) { - if (sa[i]['.name'] != sid1) - continue; - - s1 = sa[i]; - sa.splice(i, 1); - break; - } - - if (s1 == null) - return false; - - if (sid2 == null) { - sa.push(s1); - } - else { - for (var i = 0; i < sa.length; i++) { - if (sa[i]['.name'] != sid2) - continue; - - s2 = sa[i]; - sa.splice(i + !!after, 0, s1); - break; - } - - if (s2 == null) - return false; - } - - for (var i = 0; i < sa.length; i++) - this.get(conf, sa[i]['.name'])['.index'] = i; - - this.state.reorder[conf] = true; - - return true; - }, - - save: function() { - var v = this.state.values, - n = this.state.creates, - c = this.state.changes, - d = this.state.deletes, - r = this.state.reorder, - self = this, - snew = [ ], - pkgs = { }, - tasks = []; - - if (n) - for (var conf in n) { - for (var sid in n[conf]) { - var r = { - config: conf, - values: { } - }; - - for (var k in n[conf][sid]) { - if (k == '.type') - r.type = n[conf][sid][k]; - else if (k == '.create') - r.name = n[conf][sid][k]; - else if (k.charAt(0) != '.') - r.values[k] = n[conf][sid][k]; - } - - snew.push(n[conf][sid]); - tasks.push(self.callAdd(r.config, r.type, r.name, r.values)); - } - - pkgs[conf] = true; - } - - if (c) - for (var conf in c) { - for (var sid in c[conf]) - tasks.push(self.callSet(conf, sid, c[conf][sid])); - - pkgs[conf] = true; - } - - if (d) - for (var conf in d) { - for (var sid in d[conf]) { - var o = d[conf][sid]; - tasks.push(self.callDelete(conf, sid, (o === true) ? null : o)); - } - - pkgs[conf] = true; - } - - if (r) - for (var conf in r) - pkgs[conf] = true; - - return Promise.all(tasks).then(function(responses) { - /* - array "snew" holds references to the created uci sections, - use it to assign the returned names of the new sections - */ - for (var i = 0; i < snew.length; i++) - snew[i]['.name'] = responses[i]; - - return self.reorderSections(); - }).then(function() { - pkgs = Object.keys(pkgs); - - self.unload(pkgs); - - return self.load(pkgs); - }); - }, - - apply: function(timeout) { - var self = this, - date = new Date(); - - if (typeof(timeout) != 'number' || timeout < 1) - timeout = 10; - - return self.callApply(timeout, true).then(function(rv) { - if (rv != 0) - return Promise.reject(rv); - - var try_deadline = date.getTime() + 1000 * timeout; - var try_confirm = function() { - return self.callConfirm().then(function(rv) { - if (rv != 0) { - if (date.getTime() < try_deadline) - window.setTimeout(try_confirm, 250); - else - return Promise.reject(rv); - } - - return rv; - }); - }; - - window.setTimeout(try_confirm, 1000); - }); - }, - - changes: rpc.declare({ - object: 'uci', - method: 'changes', - expect: { changes: { } } - }) -}); diff --git a/luci-base/htdocs/luci-static/resources/ui.js b/luci-base/htdocs/luci-static/resources/ui.js deleted file mode 100644 index 4706f2838..000000000 --- a/luci-base/htdocs/luci-static/resources/ui.js +++ /dev/null @@ -1,2171 +0,0 @@ -'use strict'; -'require uci'; -'require validation'; - -var modalDiv = null, - tooltipDiv = null, - tooltipTimeout = null; - -var UIElement = L.Class.extend({ - getValue: function() { - if (L.dom.matches(this.node, 'select') || L.dom.matches(this.node, 'input')) - return this.node.value; - - return null; - }, - - setValue: function(value) { - if (L.dom.matches(this.node, 'select') || L.dom.matches(this.node, 'input')) - this.node.value = value; - }, - - isValid: function() { - return (this.validState !== false); - }, - - triggerValidation: function() { - if (typeof(this.vfunc) != 'function') - return false; - - var wasValid = this.isValid(); - - this.vfunc(); - - return (wasValid != this.isValid()); - }, - - registerEvents: function(targetNode, synevent, events) { - var dispatchFn = L.bind(function(ev) { - this.node.dispatchEvent(new CustomEvent(synevent, { bubbles: true })); - }, this); - - for (var i = 0; i < events.length; i++) - targetNode.addEventListener(events[i], dispatchFn); - }, - - setUpdateEvents: function(targetNode /*, ... */) { - var datatype = this.options.datatype, - optional = this.options.hasOwnProperty('optional') ? this.options.optional : true, - validate = this.options.validate, - events = this.varargs(arguments, 1); - - this.registerEvents(targetNode, 'widget-update', events); - - if (!datatype && !validate) - return; - - this.vfunc = L.ui.addValidator.apply(L.ui, [ - targetNode, datatype || 'string', - optional, validate - ].concat(events)); - - this.node.addEventListener('validation-success', L.bind(function(ev) { - this.validState = true; - }, this)); - - this.node.addEventListener('validation-failure', L.bind(function(ev) { - this.validState = false; - }, this)); - }, - - setChangeEvents: function(targetNode /*, ... */) { - this.registerEvents(targetNode, 'widget-change', this.varargs(arguments, 1)); - } -}); - -var UITextfield = UIElement.extend({ - __init__: function(value, options) { - this.value = value; - this.options = Object.assign({ - optional: true, - password: false - }, options); - }, - - render: function() { - var frameEl = E('div', { 'id': this.options.id }); - - if (this.options.password) { - frameEl.classList.add('nowrap'); - frameEl.appendChild(E('input', { - 'type': 'password', - 'style': 'position:absolute; left:-100000px', - 'aria-hidden': true, - 'tabindex': -1, - 'name': this.options.name ? 'password.%s'.format(this.options.name) : null - })); - } - - frameEl.appendChild(E('input', { - 'id': this.options.id ? 'widget.' + this.options.id : null, - 'name': this.options.name, - 'type': this.options.password ? 'password' : 'text', - 'class': this.options.password ? 'cbi-input-password' : 'cbi-input-text', - 'readonly': this.options.readonly ? '' : null, - 'maxlength': this.options.maxlength, - 'placeholder': this.options.placeholder, - 'value': this.value, - })); - - if (this.options.password) - frameEl.appendChild(E('button', { - 'class': 'cbi-button cbi-button-neutral', - 'title': _('Reveal/hide password'), - 'aria-label': _('Reveal/hide password'), - 'click': function(ev) { - var e = this.previousElementSibling; - e.type = (e.type === 'password') ? 'text' : 'password'; - ev.preventDefault(); - } - }, '∗')); - - return this.bind(frameEl); - }, - - bind: function(frameEl) { - var inputEl = frameEl.childNodes[+!!this.options.password]; - - this.node = frameEl; - - this.setUpdateEvents(inputEl, 'keyup', 'blur'); - this.setChangeEvents(inputEl, 'change'); - - L.dom.bindClassInstance(frameEl, this); - - return frameEl; - }, - - getValue: function() { - var inputEl = this.node.childNodes[+!!this.options.password]; - return inputEl.value; - }, - - setValue: function(value) { - var inputEl = this.node.childNodes[+!!this.options.password]; - inputEl.value = value; - } -}); - -var UITextarea = UIElement.extend({ - __init__: function(value, options) { - this.value = value; - this.options = Object.assign({ - optional: true, - wrap: false, - cols: null, - rows: null - }, options); - }, - - render: function() { - var frameEl = E('div', { 'id': this.options.id }), - value = (this.value != null) ? String(this.value) : ''; - - frameEl.appendChild(E('textarea', { - 'id': this.options.id ? 'widget.' + this.options.id : null, - 'name': this.options.name, - 'class': 'cbi-input-textarea', - 'readonly': this.options.readonly ? '' : null, - 'placeholder': this.options.placeholder, - 'style': !this.options.cols ? 'width:100%' : null, - 'cols': this.options.cols, - 'rows': this.options.rows, - 'wrap': this.options.wrap ? '' : null - }, [ value ])); - - if (this.options.monospace) - frameEl.firstElementChild.style.fontFamily = 'monospace'; - - return this.bind(frameEl); - }, - - bind: function(frameEl) { - var inputEl = frameEl.firstElementChild; - - this.node = frameEl; - - this.setUpdateEvents(inputEl, 'keyup', 'blur'); - this.setChangeEvents(inputEl, 'change'); - - L.dom.bindClassInstance(frameEl, this); - - return frameEl; - }, - - getValue: function() { - return this.node.firstElementChild.value; - }, - - setValue: function(value) { - this.node.firstElementChild.value = value; - } -}); - -var UICheckbox = UIElement.extend({ - __init__: function(value, options) { - this.value = value; - this.options = Object.assign({ - value_enabled: '1', - value_disabled: '0' - }, options); - }, - - render: function() { - var frameEl = E('div', { - 'id': this.options.id, - 'class': 'cbi-checkbox' - }); - - if (this.options.hiddenname) - frameEl.appendChild(E('input', { - 'type': 'hidden', - 'name': this.options.hiddenname, - 'value': 1 - })); - - frameEl.appendChild(E('input', { - 'id': this.options.id ? 'widget.' + this.options.id : null, - 'name': this.options.name, - 'type': 'checkbox', - 'value': this.options.value_enabled, - 'checked': (this.value == this.options.value_enabled) ? '' : null - })); - - return this.bind(frameEl); - }, - - bind: function(frameEl) { - this.node = frameEl; - - this.setUpdateEvents(frameEl.lastElementChild, 'click', 'blur'); - this.setChangeEvents(frameEl.lastElementChild, 'change'); - - L.dom.bindClassInstance(frameEl, this); - - return frameEl; - }, - - isChecked: function() { - return this.node.lastElementChild.checked; - }, - - getValue: function() { - return this.isChecked() - ? this.options.value_enabled - : this.options.value_disabled; - }, - - setValue: function(value) { - this.node.lastElementChild.checked = (value == this.options.value_enabled); - } -}); - -var UISelect = UIElement.extend({ - __init__: function(value, choices, options) { - if (!L.isObject(choices)) - choices = {}; - - if (!Array.isArray(value)) - value = (value != null && value != '') ? [ value ] : []; - - if (!options.multiple && value.length > 1) - value.length = 1; - - this.values = value; - this.choices = choices; - this.options = Object.assign({ - multiple: false, - widget: 'select', - orientation: 'horizontal' - }, options); - - if (this.choices.hasOwnProperty('')) - this.options.optional = true; - }, - - render: function() { - var frameEl = E('div', { 'id': this.options.id }), - keys = Object.keys(this.choices); - - if (this.options.sort === true) - keys.sort(); - else if (Array.isArray(this.options.sort)) - keys = this.options.sort; - - if (this.options.widget == 'select') { - frameEl.appendChild(E('select', { - 'id': this.options.id ? 'widget.' + this.options.id : null, - 'name': this.options.name, - 'size': this.options.size, - 'class': 'cbi-input-select', - 'multiple': this.options.multiple ? '' : null - })); - - if (this.options.optional) - frameEl.lastChild.appendChild(E('option', { - 'value': '', - 'selected': (this.values.length == 0 || this.values[0] == '') ? '' : null - }, this.choices[''] || this.options.placeholder || _('-- Please choose --'))); - - for (var i = 0; i < keys.length; i++) { - if (keys[i] == null || keys[i] == '') - continue; - - frameEl.lastChild.appendChild(E('option', { - 'value': keys[i], - 'selected': (this.values.indexOf(keys[i]) > -1) ? '' : null - }, this.choices[keys[i]] || keys[i])); - } - } - else { - var brEl = (this.options.orientation === 'horizontal') ? document.createTextNode(' ') : E('br'); - - for (var i = 0; i < keys.length; i++) { - frameEl.appendChild(E('label', {}, [ - E('input', { - 'id': this.options.id ? 'widget.' + this.options.id : null, - 'name': this.options.id || this.options.name, - 'type': this.options.multiple ? 'checkbox' : 'radio', - 'class': this.options.multiple ? 'cbi-input-checkbox' : 'cbi-input-radio', - 'value': keys[i], - 'checked': (this.values.indexOf(keys[i]) > -1) ? '' : null - }), - this.choices[keys[i]] || keys[i] - ])); - - if (i + 1 == this.options.size) - frameEl.appendChild(brEl); - } - } - - return this.bind(frameEl); - }, - - bind: function(frameEl) { - this.node = frameEl; - - if (this.options.widget == 'select') { - this.setUpdateEvents(frameEl.firstChild, 'change', 'click', 'blur'); - this.setChangeEvents(frameEl.firstChild, 'change'); - } - else { - var radioEls = frameEl.querySelectorAll('input[type="radio"]'); - for (var i = 0; i < radioEls.length; i++) { - this.setUpdateEvents(radioEls[i], 'change', 'click', 'blur'); - this.setChangeEvents(radioEls[i], 'change', 'click', 'blur'); - } - } - - L.dom.bindClassInstance(frameEl, this); - - return frameEl; - }, - - getValue: function() { - if (this.options.widget == 'select') - return this.node.firstChild.value; - - var radioEls = frameEl.querySelectorAll('input[type="radio"]'); - for (var i = 0; i < radioEls.length; i++) - if (radioEls[i].checked) - return radioEls[i].value; - - return null; - }, - - setValue: function(value) { - if (this.options.widget == 'select') { - if (value == null) - value = ''; - - for (var i = 0; i < this.node.firstChild.options.length; i++) - this.node.firstChild.options[i].selected = (this.node.firstChild.options[i].value == value); - - return; - } - - var radioEls = frameEl.querySelectorAll('input[type="radio"]'); - for (var i = 0; i < radioEls.length; i++) - radioEls[i].checked = (radioEls[i].value == value); - } -}); - -var UIDropdown = UIElement.extend({ - __init__: function(value, choices, options) { - if (typeof(choices) != 'object') - choices = {}; - - if (!Array.isArray(value)) - this.values = (value != null && value != '') ? [ value ] : []; - else - this.values = value; - - this.choices = choices; - this.options = Object.assign({ - sort: true, - multiple: Array.isArray(value), - optional: true, - select_placeholder: _('-- Please choose --'), - custom_placeholder: _('-- custom --'), - display_items: 3, - dropdown_items: -1, - create: false, - create_query: '.create-item-input', - create_template: 'script[type="item-template"]' - }, options); - }, - - render: function() { - var sb = E('div', { - 'id': this.options.id, - 'class': 'cbi-dropdown', - 'multiple': this.options.multiple ? '' : null, - 'optional': this.options.optional ? '' : null, - }, E('ul')); - - var keys = Object.keys(this.choices); - - if (this.options.sort === true) - keys.sort(); - else if (Array.isArray(this.options.sort)) - keys = this.options.sort; - - if (this.options.create) - for (var i = 0; i < this.values.length; i++) - if (!this.choices.hasOwnProperty(this.values[i])) - keys.push(this.values[i]); - - for (var i = 0; i < keys.length; i++) - sb.lastElementChild.appendChild(E('li', { - 'data-value': keys[i], - 'selected': (this.values.indexOf(keys[i]) > -1) ? '' : null - }, this.choices[keys[i]] || keys[i])); - - if (this.options.create) { - var createEl = E('input', { - 'type': 'text', - 'class': 'create-item-input', - 'readonly': this.options.readonly ? '' : null, - 'maxlength': this.options.maxlength, - 'placeholder': this.options.custom_placeholder || this.options.placeholder - }); - - if (this.options.datatype) - L.ui.addValidator(createEl, this.options.datatype, - true, null, 'blur', 'keyup'); - - sb.lastElementChild.appendChild(E('li', { 'data-value': '-' }, createEl)); - } - - if (this.options.create_markup) - sb.appendChild(E('script', { type: 'item-template' }, - this.options.create_markup)); - - return this.bind(sb); - }, - - bind: function(sb) { - var o = this.options; - - o.multiple = sb.hasAttribute('multiple'); - o.optional = sb.hasAttribute('optional'); - o.placeholder = sb.getAttribute('placeholder') || o.placeholder; - o.display_items = parseInt(sb.getAttribute('display-items') || o.display_items); - o.dropdown_items = parseInt(sb.getAttribute('dropdown-items') || o.dropdown_items); - o.create_query = sb.getAttribute('item-create') || o.create_query; - o.create_template = sb.getAttribute('item-template') || o.create_template; - - var ul = sb.querySelector('ul'), - more = sb.appendChild(E('span', { class: 'more', tabindex: -1 }, '···')), - open = sb.appendChild(E('span', { class: 'open', tabindex: -1 }, '▾')), - canary = sb.appendChild(E('div')), - create = sb.querySelector(this.options.create_query), - ndisplay = this.options.display_items, - n = 0; - - if (this.options.multiple) { - var items = ul.querySelectorAll('li'); - - for (var i = 0; i < items.length; i++) { - this.transformItem(sb, items[i]); - - if (items[i].hasAttribute('selected') && ndisplay-- > 0) - items[i].setAttribute('display', n++); - } - } - else { - if (this.options.optional && !ul.querySelector('li[data-value=""]')) { - var placeholder = E('li', { placeholder: '' }, - this.options.select_placeholder || this.options.placeholder); - - ul.firstChild - ? ul.insertBefore(placeholder, ul.firstChild) - : ul.appendChild(placeholder); - } - - var items = ul.querySelectorAll('li'), - sel = sb.querySelectorAll('[selected]'); - - sel.forEach(function(s) { - s.removeAttribute('selected'); - }); - - var s = sel[0] || items[0]; - if (s) { - s.setAttribute('selected', ''); - s.setAttribute('display', n++); - } - - ndisplay--; - } - - this.saveValues(sb, ul); - - ul.setAttribute('tabindex', -1); - sb.setAttribute('tabindex', 0); - - if (ndisplay < 0) - sb.setAttribute('more', '') - else - sb.removeAttribute('more'); - - if (ndisplay == this.options.display_items) - sb.setAttribute('empty', '') - else - sb.removeAttribute('empty'); - - L.dom.content(more, (ndisplay == this.options.display_items) - ? (this.options.select_placeholder || this.options.placeholder) : '···'); - - - sb.addEventListener('click', this.handleClick.bind(this)); - sb.addEventListener('keydown', this.handleKeydown.bind(this)); - sb.addEventListener('cbi-dropdown-close', this.handleDropdownClose.bind(this)); - sb.addEventListener('cbi-dropdown-select', this.handleDropdownSelect.bind(this)); - - if ('ontouchstart' in window) { - sb.addEventListener('touchstart', function(ev) { ev.stopPropagation(); }); - window.addEventListener('touchstart', this.closeAllDropdowns); - } - else { - sb.addEventListener('mouseover', this.handleMouseover.bind(this)); - sb.addEventListener('focus', this.handleFocus.bind(this)); - - canary.addEventListener('focus', this.handleCanaryFocus.bind(this)); - - window.addEventListener('mouseover', this.setFocus); - window.addEventListener('click', this.closeAllDropdowns); - } - - if (create) { - create.addEventListener('keydown', this.handleCreateKeydown.bind(this)); - create.addEventListener('focus', this.handleCreateFocus.bind(this)); - create.addEventListener('blur', this.handleCreateBlur.bind(this)); - - var li = findParent(create, 'li'); - - li.setAttribute('unselectable', ''); - li.addEventListener('click', this.handleCreateClick.bind(this)); - } - - this.node = sb; - - this.setUpdateEvents(sb, 'cbi-dropdown-open', 'cbi-dropdown-close'); - this.setChangeEvents(sb, 'cbi-dropdown-change', 'cbi-dropdown-close'); - - L.dom.bindClassInstance(sb, this); - - return sb; - }, - - openDropdown: function(sb) { - var st = window.getComputedStyle(sb, null), - ul = sb.querySelector('ul'), - li = ul.querySelectorAll('li'), - fl = findParent(sb, '.cbi-value-field'), - sel = ul.querySelector('[selected]'), - rect = sb.getBoundingClientRect(), - items = Math.min(this.options.dropdown_items, li.length); - - document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) { - s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {})); - }); - - sb.setAttribute('open', ''); - - var pv = ul.cloneNode(true); - pv.classList.add('preview'); - - if (fl) - fl.classList.add('cbi-dropdown-open'); - - if ('ontouchstart' in window) { - var vpWidth = Math.max(document.documentElement.clientWidth, window.innerWidth || 0), - vpHeight = Math.max(document.documentElement.clientHeight, window.innerHeight || 0), - scrollFrom = window.pageYOffset, - scrollTo = scrollFrom + rect.top - vpHeight * 0.5, - start = null; - - ul.style.top = sb.offsetHeight + 'px'; - ul.style.left = -rect.left + 'px'; - ul.style.right = (rect.right - vpWidth) + 'px'; - ul.style.maxHeight = (vpHeight * 0.5) + 'px'; - ul.style.WebkitOverflowScrolling = 'touch'; - - var scrollStep = function(timestamp) { - if (!start) { - start = timestamp; - ul.scrollTop = sel ? Math.max(sel.offsetTop - sel.offsetHeight, 0) : 0; - } - - var duration = Math.max(timestamp - start, 1); - if (duration < 100) { - document.body.scrollTop = scrollFrom + (scrollTo - scrollFrom) * (duration / 100); - window.requestAnimationFrame(scrollStep); - } - else { - document.body.scrollTop = scrollTo; - } - }; - - window.requestAnimationFrame(scrollStep); - } - else { - ul.style.maxHeight = '1px'; - ul.style.top = ul.style.bottom = ''; - - window.requestAnimationFrame(function() { - var itemHeight = li[Math.max(0, li.length - 2)].getBoundingClientRect().height, - fullHeight = 0, - spaceAbove = rect.top, - spaceBelow = window.innerHeight - rect.height - rect.top; - - for (var i = 0; i < (items == -1 ? li.length : items); i++) - fullHeight += li[i].getBoundingClientRect().height; - - if (fullHeight <= spaceBelow) { - ul.style.top = rect.height + 'px'; - ul.style.maxHeight = spaceBelow + 'px'; - } - else if (fullHeight <= spaceAbove) { - ul.style.bottom = rect.height + 'px'; - ul.style.maxHeight = spaceAbove + 'px'; - } - else if (spaceBelow >= spaceAbove) { - ul.style.top = rect.height + 'px'; - ul.style.maxHeight = (spaceBelow - (spaceBelow % itemHeight)) + 'px'; - } - else { - ul.style.bottom = rect.height + 'px'; - ul.style.maxHeight = (spaceAbove - (spaceAbove % itemHeight)) + 'px'; - } - - ul.scrollTop = sel ? Math.max(sel.offsetTop - sel.offsetHeight, 0) : 0; - }); - } - - var cboxes = ul.querySelectorAll('[selected] input[type="checkbox"]'); - for (var i = 0; i < cboxes.length; i++) { - cboxes[i].checked = true; - cboxes[i].disabled = (cboxes.length == 1 && !this.options.optional); - }; - - ul.classList.add('dropdown'); - - sb.insertBefore(pv, ul.nextElementSibling); - - li.forEach(function(l) { - l.setAttribute('tabindex', 0); - }); - - sb.lastElementChild.setAttribute('tabindex', 0); - - this.setFocus(sb, sel || li[0], true); - }, - - closeDropdown: function(sb, no_focus) { - if (!sb.hasAttribute('open')) - return; - - var pv = sb.querySelector('ul.preview'), - ul = sb.querySelector('ul.dropdown'), - li = ul.querySelectorAll('li'), - fl = findParent(sb, '.cbi-value-field'); - - li.forEach(function(l) { l.removeAttribute('tabindex'); }); - sb.lastElementChild.removeAttribute('tabindex'); - - sb.removeChild(pv); - sb.removeAttribute('open'); - sb.style.width = sb.style.height = ''; - - ul.classList.remove('dropdown'); - ul.style.top = ul.style.bottom = ul.style.maxHeight = ''; - - if (fl) - fl.classList.remove('cbi-dropdown-open'); - - if (!no_focus) - this.setFocus(sb, sb); - - this.saveValues(sb, ul); - }, - - toggleItem: function(sb, li, force_state) { - if (li.hasAttribute('unselectable')) - return; - - if (this.options.multiple) { - var cbox = li.querySelector('input[type="checkbox"]'), - items = li.parentNode.querySelectorAll('li'), - label = sb.querySelector('ul.preview'), - sel = li.parentNode.querySelectorAll('[selected]').length, - more = sb.querySelector('.more'), - ndisplay = this.options.display_items, - n = 0; - - if (li.hasAttribute('selected')) { - if (force_state !== true) { - if (sel > 1 || this.options.optional) { - li.removeAttribute('selected'); - cbox.checked = cbox.disabled = false; - sel--; - } - else { - cbox.disabled = true; - } - } - } - else { - if (force_state !== false) { - li.setAttribute('selected', ''); - cbox.checked = true; - cbox.disabled = false; - sel++; - } - } - - while (label && label.firstElementChild) - label.removeChild(label.firstElementChild); - - for (var i = 0; i < items.length; i++) { - items[i].removeAttribute('display'); - if (items[i].hasAttribute('selected')) { - if (ndisplay-- > 0) { - items[i].setAttribute('display', n++); - if (label) - label.appendChild(items[i].cloneNode(true)); - } - var c = items[i].querySelector('input[type="checkbox"]'); - if (c) - c.disabled = (sel == 1 && !this.options.optional); - } - } - - if (ndisplay < 0) - sb.setAttribute('more', ''); - else - sb.removeAttribute('more'); - - if (ndisplay === this.options.display_items) - sb.setAttribute('empty', ''); - else - sb.removeAttribute('empty'); - - L.dom.content(more, (ndisplay === this.options.display_items) - ? (this.options.select_placeholder || this.options.placeholder) : '···'); - } - else { - var sel = li.parentNode.querySelector('[selected]'); - if (sel) { - sel.removeAttribute('display'); - sel.removeAttribute('selected'); - } - - li.setAttribute('display', 0); - li.setAttribute('selected', ''); - - this.closeDropdown(sb, true); - } - - this.saveValues(sb, li.parentNode); - }, - - transformItem: function(sb, li) { - var cbox = E('form', {}, E('input', { type: 'checkbox', tabindex: -1, onclick: 'event.preventDefault()' })), - label = E('label'); - - while (li.firstChild) - label.appendChild(li.firstChild); - - li.appendChild(cbox); - li.appendChild(label); - }, - - saveValues: function(sb, ul) { - var sel = ul.querySelectorAll('li[selected]'), - div = sb.lastElementChild, - name = this.options.name, - strval = '', - values = []; - - while (div.lastElementChild) - div.removeChild(div.lastElementChild); - - sel.forEach(function (s) { - if (s.hasAttribute('placeholder')) - return; - - var v = { - text: s.innerText, - value: s.hasAttribute('data-value') ? s.getAttribute('data-value') : s.innerText, - element: s - }; - - div.appendChild(E('input', { - type: 'hidden', - name: name, - value: v.value - })); - - values.push(v); - - strval += strval.length ? ' ' + v.value : v.value; - }); - - var detail = { - instance: this, - element: sb - }; - - if (this.options.multiple) - detail.values = values; - else - detail.value = values.length ? values[0] : null; - - sb.value = strval; - - sb.dispatchEvent(new CustomEvent('cbi-dropdown-change', { - bubbles: true, - detail: detail - })); - }, - - setValues: function(sb, values) { - var ul = sb.querySelector('ul'); - - if (this.options.create) { - for (var value in values) { - this.createItems(sb, value); - - if (!this.options.multiple) - break; - } - } - - if (this.options.multiple) { - var lis = ul.querySelectorAll('li[data-value]'); - for (var i = 0; i < lis.length; i++) { - var value = lis[i].getAttribute('data-value'); - if (values === null || !(value in values)) - this.toggleItem(sb, lis[i], false); - else - this.toggleItem(sb, lis[i], true); - } - } - else { - var ph = ul.querySelector('li[placeholder]'); - if (ph) - this.toggleItem(sb, ph); - - var lis = ul.querySelectorAll('li[data-value]'); - for (var i = 0; i < lis.length; i++) { - var value = lis[i].getAttribute('data-value'); - if (values !== null && (value in values)) - this.toggleItem(sb, lis[i]); - } - } - }, - - setFocus: function(sb, elem, scroll) { - if (sb && sb.hasAttribute && sb.hasAttribute('locked-in')) - return; - - if (sb.target && findParent(sb.target, 'ul.dropdown')) - return; - - document.querySelectorAll('.focus').forEach(function(e) { - if (!matchesElem(e, 'input')) { - e.classList.remove('focus'); - e.blur(); - } - }); - - if (elem) { - elem.focus(); - elem.classList.add('focus'); - - if (scroll) - elem.parentNode.scrollTop = elem.offsetTop - elem.parentNode.offsetTop; - } - }, - - createItems: function(sb, value) { - var sbox = this, - val = (value || '').trim(), - ul = sb.querySelector('ul'); - - if (!sbox.options.multiple) - val = val.length ? [ val ] : []; - else - val = val.length ? val.split(/\s+/) : []; - - val.forEach(function(item) { - var new_item = null; - - ul.childNodes.forEach(function(li) { - if (li.getAttribute && li.getAttribute('data-value') === item) - new_item = li; - }); - - if (!new_item) { - var markup, - tpl = sb.querySelector(sbox.options.create_template); - - if (tpl) - markup = (tpl.textContent || tpl.innerHTML || tpl.firstChild.data).replace(/^$/, '').trim(); - else - markup = '
  • {{value}}
  • '; - - new_item = E(markup.replace(/{{value}}/g, '%h'.format(item))); - - if (sbox.options.multiple) { - sbox.transformItem(sb, new_item); - } - else { - var old = ul.querySelector('li[created]'); - if (old) - ul.removeChild(old); - - new_item.setAttribute('created', ''); - } - - new_item = ul.insertBefore(new_item, ul.lastElementChild); - } - - sbox.toggleItem(sb, new_item, true); - sbox.setFocus(sb, new_item, true); - }); - }, - - closeAllDropdowns: function() { - document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) { - s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {})); - }); - }, - - handleClick: function(ev) { - var sb = ev.currentTarget; - - if (!sb.hasAttribute('open')) { - if (!matchesElem(ev.target, 'input')) - this.openDropdown(sb); - } - else { - var li = findParent(ev.target, 'li'); - if (li && li.parentNode.classList.contains('dropdown')) - this.toggleItem(sb, li); - else if (li && li.parentNode.classList.contains('preview')) - this.closeDropdown(sb); - else if (matchesElem(ev.target, 'span.open, span.more')) - this.closeDropdown(sb); - } - - ev.preventDefault(); - ev.stopPropagation(); - }, - - handleKeydown: function(ev) { - var sb = ev.currentTarget; - - if (matchesElem(ev.target, 'input')) - return; - - if (!sb.hasAttribute('open')) { - switch (ev.keyCode) { - case 37: - case 38: - case 39: - case 40: - this.openDropdown(sb); - ev.preventDefault(); - } - } - else { - var active = findParent(document.activeElement, 'li'); - - switch (ev.keyCode) { - case 27: - this.closeDropdown(sb); - break; - - case 13: - if (active) { - if (!active.hasAttribute('selected')) - this.toggleItem(sb, active); - this.closeDropdown(sb); - ev.preventDefault(); - } - break; - - case 32: - if (active) { - this.toggleItem(sb, active); - ev.preventDefault(); - } - break; - - case 38: - if (active && active.previousElementSibling) { - this.setFocus(sb, active.previousElementSibling); - ev.preventDefault(); - } - break; - - case 40: - if (active && active.nextElementSibling) { - this.setFocus(sb, active.nextElementSibling); - ev.preventDefault(); - } - break; - } - } - }, - - handleDropdownClose: function(ev) { - var sb = ev.currentTarget; - - this.closeDropdown(sb, true); - }, - - handleDropdownSelect: function(ev) { - var sb = ev.currentTarget, - li = findParent(ev.target, 'li'); - - if (!li) - return; - - this.toggleItem(sb, li); - this.closeDropdown(sb, true); - }, - - handleMouseover: function(ev) { - var sb = ev.currentTarget; - - if (!sb.hasAttribute('open')) - return; - - var li = findParent(ev.target, 'li'); - - if (li && li.parentNode.classList.contains('dropdown')) - this.setFocus(sb, li); - }, - - handleFocus: function(ev) { - var sb = ev.currentTarget; - - document.querySelectorAll('.cbi-dropdown[open]').forEach(function(s) { - if (s !== sb || sb.hasAttribute('open')) - s.dispatchEvent(new CustomEvent('cbi-dropdown-close', {})); - }); - }, - - handleCanaryFocus: function(ev) { - this.closeDropdown(ev.currentTarget.parentNode); - }, - - handleCreateKeydown: function(ev) { - var input = ev.currentTarget, - sb = findParent(input, '.cbi-dropdown'); - - switch (ev.keyCode) { - case 13: - ev.preventDefault(); - - if (input.classList.contains('cbi-input-invalid')) - return; - - this.createItems(sb, input.value); - input.value = ''; - input.blur(); - break; - } - }, - - handleCreateFocus: function(ev) { - var input = ev.currentTarget, - cbox = findParent(input, 'li').querySelector('input[type="checkbox"]'), - sb = findParent(input, '.cbi-dropdown'); - - if (cbox) - cbox.checked = true; - - sb.setAttribute('locked-in', ''); - }, - - handleCreateBlur: function(ev) { - var input = ev.currentTarget, - cbox = findParent(input, 'li').querySelector('input[type="checkbox"]'), - sb = findParent(input, '.cbi-dropdown'); - - if (cbox) - cbox.checked = false; - - sb.removeAttribute('locked-in'); - }, - - handleCreateClick: function(ev) { - ev.currentTarget.querySelector(this.options.create_query).focus(); - }, - - setValue: function(values) { - if (this.options.multiple) { - if (!Array.isArray(values)) - values = (values != null && values != '') ? [ values ] : []; - - var v = {}; - - for (var i = 0; i < values.length; i++) - v[values[i]] = true; - - this.setValues(this.node, v); - } - else { - var v = {}; - - if (values != null) { - if (Array.isArray(values)) - v[values[0]] = true; - else - v[values] = true; - } - - this.setValues(this.node, v); - } - }, - - getValue: function() { - var div = this.node.lastElementChild, - h = div.querySelectorAll('input[type="hidden"]'), - v = []; - - for (var i = 0; i < h.length; i++) - v.push(h[i].value); - - return this.options.multiple ? v : v[0]; - } -}); - -var UICombobox = UIDropdown.extend({ - __init__: function(value, choices, options) { - this.super('__init__', [ value, choices, Object.assign({ - select_placeholder: _('-- Please choose --'), - custom_placeholder: _('-- custom --'), - dropdown_items: -1, - sort: true - }, options, { - multiple: false, - create: true, - optional: true - }) ]); - } -}); - -var UIDynamicList = UIElement.extend({ - __init__: function(values, choices, options) { - if (!Array.isArray(values)) - values = (values != null && values != '') ? [ values ] : []; - - if (typeof(choices) != 'object') - choices = null; - - this.values = values; - this.choices = choices; - this.options = Object.assign({}, options, { - multiple: false, - optional: true - }); - }, - - render: function() { - var dl = E('div', { - 'id': this.options.id, - 'class': 'cbi-dynlist' - }, E('div', { 'class': 'add-item' })); - - if (this.choices) { - var cbox = new UICombobox(null, this.choices, this.options); - dl.lastElementChild.appendChild(cbox.render()); - } - else { - var inputEl = E('input', { - 'id': this.options.id ? 'widget.' + this.options.id : null, - 'type': 'text', - 'class': 'cbi-input-text', - 'placeholder': this.options.placeholder - }); - - dl.lastElementChild.appendChild(inputEl); - dl.lastElementChild.appendChild(E('div', { 'class': 'cbi-button cbi-button-add' }, '+')); - - if (this.options.datatype) - L.ui.addValidator(inputEl, this.options.datatype, - true, null, 'blur', 'keyup'); - } - - for (var i = 0; i < this.values.length; i++) - this.addItem(dl, this.values[i], - this.choices ? this.choices[this.values[i]] : null); - - return this.bind(dl); - }, - - bind: function(dl) { - dl.addEventListener('click', L.bind(this.handleClick, this)); - dl.addEventListener('keydown', L.bind(this.handleKeydown, this)); - dl.addEventListener('cbi-dropdown-change', L.bind(this.handleDropdownChange, this)); - - this.node = dl; - - this.setUpdateEvents(dl, 'cbi-dynlist-change'); - this.setChangeEvents(dl, 'cbi-dynlist-change'); - - L.dom.bindClassInstance(dl, this); - - return dl; - }, - - addItem: function(dl, value, text, flash) { - var exists = false, - new_item = E('div', { 'class': flash ? 'item flash' : 'item', 'tabindex': 0 }, [ - E('span', {}, text || value), - E('input', { - 'type': 'hidden', - 'name': this.options.name, - 'value': value })]); - - dl.querySelectorAll('.item').forEach(function(item) { - if (exists) - return; - - var hidden = item.querySelector('input[type="hidden"]'); - - if (hidden && hidden.parentNode !== item) - hidden = null; - - if (hidden && hidden.value === value) - exists = true; - }); - - if (!exists) { - var ai = dl.querySelector('.add-item'); - ai.parentNode.insertBefore(new_item, ai); - } - - dl.dispatchEvent(new CustomEvent('cbi-dynlist-change', { - bubbles: true, - detail: { - instance: this, - element: dl, - value: value, - add: true - } - })); - }, - - removeItem: function(dl, item) { - var value = item.querySelector('input[type="hidden"]').value; - var sb = dl.querySelector('.cbi-dropdown'); - if (sb) - sb.querySelectorAll('ul > li').forEach(function(li) { - if (li.getAttribute('data-value') === value) { - if (li.hasAttribute('dynlistcustom')) - li.parentNode.removeChild(li); - else - li.removeAttribute('unselectable'); - } - }); - - item.parentNode.removeChild(item); - - dl.dispatchEvent(new CustomEvent('cbi-dynlist-change', { - bubbles: true, - detail: { - instance: this, - element: dl, - value: value, - remove: true - } - })); - }, - - handleClick: function(ev) { - var dl = ev.currentTarget, - item = findParent(ev.target, '.item'); - - if (item) { - this.removeItem(dl, item); - } - else if (matchesElem(ev.target, '.cbi-button-add')) { - var input = ev.target.previousElementSibling; - if (input.value.length && !input.classList.contains('cbi-input-invalid')) { - this.addItem(dl, input.value, null, true); - input.value = ''; - } - } - }, - - handleDropdownChange: function(ev) { - var dl = ev.currentTarget, - sbIn = ev.detail.instance, - sbEl = ev.detail.element, - sbVal = ev.detail.value; - - if (sbVal === null) - return; - - sbIn.setValues(sbEl, null); - sbVal.element.setAttribute('unselectable', ''); - - if (sbVal.element.hasAttribute('created')) { - sbVal.element.removeAttribute('created'); - sbVal.element.setAttribute('dynlistcustom', ''); - } - - this.addItem(dl, sbVal.value, sbVal.text, true); - }, - - handleKeydown: function(ev) { - var dl = ev.currentTarget, - item = findParent(ev.target, '.item'); - - if (item) { - switch (ev.keyCode) { - case 8: /* backspace */ - if (item.previousElementSibling) - item.previousElementSibling.focus(); - - this.removeItem(dl, item); - break; - - case 46: /* delete */ - if (item.nextElementSibling) { - if (item.nextElementSibling.classList.contains('item')) - item.nextElementSibling.focus(); - else - item.nextElementSibling.firstElementChild.focus(); - } - - this.removeItem(dl, item); - break; - } - } - else if (matchesElem(ev.target, '.cbi-input-text')) { - switch (ev.keyCode) { - case 13: /* enter */ - if (ev.target.value.length && !ev.target.classList.contains('cbi-input-invalid')) { - this.addItem(dl, ev.target.value, null, true); - ev.target.value = ''; - ev.target.blur(); - ev.target.focus(); - } - - ev.preventDefault(); - break; - } - } - }, - - getValue: function() { - var items = this.node.querySelectorAll('.item > input[type="hidden"]'), - input = this.node.querySelector('.add-item > input[type="text"]'), - v = []; - - for (var i = 0; i < items.length; i++) - v.push(items[i].value); - - if (input && input.value != null && input.value.match(/\S/) && - input.classList.contains('cbi-input-invalid') == false && - v.filter(function(s) { return s == input.value }).length == 0) - v.push(input.value); - - return v; - }, - - setValue: function(values) { - if (!Array.isArray(values)) - values = (values != null && values != '') ? [ values ] : []; - - var items = this.node.querySelectorAll('.item'); - - for (var i = 0; i < items.length; i++) - if (items[i].parentNode === this.node) - this.removeItem(this.node, items[i]); - - for (var i = 0; i < values.length; i++) - this.addItem(this.node, values[i], - this.choices ? this.choices[values[i]] : null); - } -}); - -var UIHiddenfield = UIElement.extend({ - __init__: function(value, options) { - this.value = value; - this.options = Object.assign({ - - }, options); - }, - - render: function() { - var hiddenEl = E('input', { - 'id': this.options.id, - 'type': 'hidden', - 'value': this.value - }); - - return this.bind(hiddenEl); - }, - - bind: function(hiddenEl) { - this.node = hiddenEl; - - L.dom.bindClassInstance(hiddenEl, this); - - return hiddenEl; - }, - - getValue: function() { - return this.node.value; - }, - - setValue: function(value) { - this.node.value = value; - } -}); - - -return L.Class.extend({ - __init__: function() { - modalDiv = document.body.appendChild( - L.dom.create('div', { id: 'modal_overlay' }, - L.dom.create('div', { class: 'modal', role: 'dialog', 'aria-modal': true }))); - - tooltipDiv = document.body.appendChild( - L.dom.create('div', { class: 'cbi-tooltip' })); - - /* setup old aliases */ - L.showModal = this.showModal; - L.hideModal = this.hideModal; - L.showTooltip = this.showTooltip; - L.hideTooltip = this.hideTooltip; - L.itemlist = this.itemlist; - - document.addEventListener('mouseover', this.showTooltip.bind(this), true); - document.addEventListener('mouseout', this.hideTooltip.bind(this), true); - document.addEventListener('focus', this.showTooltip.bind(this), true); - document.addEventListener('blur', this.hideTooltip.bind(this), true); - - document.addEventListener('luci-loaded', this.tabs.init.bind(this.tabs)); - document.addEventListener('luci-loaded', this.changes.init.bind(this.changes)); - document.addEventListener('uci-loaded', this.changes.init.bind(this.changes)); - }, - - /* Modal dialog */ - showModal: function(title, children /* , ... */) { - var dlg = modalDiv.firstElementChild; - - dlg.setAttribute('class', 'modal'); - - for (var i = 2; i < arguments.length; i++) - dlg.classList.add(arguments[i]); - - L.dom.content(dlg, L.dom.create('h4', {}, title)); - L.dom.append(dlg, children); - - document.body.classList.add('modal-overlay-active'); - - return dlg; - }, - - hideModal: function() { - document.body.classList.remove('modal-overlay-active'); - }, - - /* Tooltip */ - showTooltip: function(ev) { - var target = findParent(ev.target, '[data-tooltip]'); - - if (!target) - return; - - if (tooltipTimeout !== null) { - window.clearTimeout(tooltipTimeout); - tooltipTimeout = null; - } - - var rect = target.getBoundingClientRect(), - x = rect.left + window.pageXOffset, - y = rect.top + rect.height + window.pageYOffset; - - tooltipDiv.className = 'cbi-tooltip'; - tooltipDiv.innerHTML = '▲ '; - tooltipDiv.firstChild.data += target.getAttribute('data-tooltip'); - - if (target.hasAttribute('data-tooltip-style')) - tooltipDiv.classList.add(target.getAttribute('data-tooltip-style')); - - if ((y + tooltipDiv.offsetHeight) > (window.innerHeight + window.pageYOffset)) { - y -= (tooltipDiv.offsetHeight + target.offsetHeight); - tooltipDiv.firstChild.data = '▼ ' + tooltipDiv.firstChild.data.substr(2); - } - - tooltipDiv.style.top = y + 'px'; - tooltipDiv.style.left = x + 'px'; - tooltipDiv.style.opacity = 1; - - tooltipDiv.dispatchEvent(new CustomEvent('tooltip-open', { - bubbles: true, - detail: { target: target } - })); - }, - - hideTooltip: function(ev) { - if (ev.target === tooltipDiv || ev.relatedTarget === tooltipDiv || - tooltipDiv.contains(ev.target) || tooltipDiv.contains(ev.relatedTarget)) - return; - - if (tooltipTimeout !== null) { - window.clearTimeout(tooltipTimeout); - tooltipTimeout = null; - } - - tooltipDiv.style.opacity = 0; - tooltipTimeout = window.setTimeout(function() { tooltipDiv.removeAttribute('style'); }, 250); - - tooltipDiv.dispatchEvent(new CustomEvent('tooltip-close', { bubbles: true })); - }, - - /* Widget helper */ - itemlist: function(node, items, separators) { - var children = []; - - if (!Array.isArray(separators)) - separators = [ separators || E('br') ]; - - for (var i = 0; i < items.length; i += 2) { - if (items[i+1] !== null && items[i+1] !== undefined) { - var sep = separators[(i/2) % separators.length], - cld = []; - - children.push(E('span', { class: 'nowrap' }, [ - items[i] ? E('strong', items[i] + ': ') : '', - items[i+1] - ])); - - if ((i+2) < items.length) - children.push(L.dom.elem(sep) ? sep.cloneNode(true) : sep); - } - } - - L.dom.content(node, children); - - return node; - }, - - /* Tabs */ - tabs: L.Class.singleton({ - init: function() { - var groups = [], prevGroup = null, currGroup = null; - - document.querySelectorAll('[data-tab]').forEach(function(tab) { - var parent = tab.parentNode; - - if (!parent.hasAttribute('data-tab-group')) - parent.setAttribute('data-tab-group', groups.length); - - currGroup = +parent.getAttribute('data-tab-group'); - - if (currGroup !== prevGroup) { - prevGroup = currGroup; - - if (!groups[currGroup]) - groups[currGroup] = []; - } - - groups[currGroup].push(tab); - }); - - for (var i = 0; i < groups.length; i++) - this.initTabGroup(groups[i]); - - document.addEventListener('dependency-update', this.updateTabs.bind(this)); - - this.updateTabs(); - }, - - initTabGroup: function(panes) { - if (typeof(panes) != 'object' || !('length' in panes) || panes.length === 0) - return; - - var menu = E('ul', { 'class': 'cbi-tabmenu' }), - group = panes[0].parentNode, - groupId = +group.getAttribute('data-tab-group'), - selected = null; - - for (var i = 0, pane; pane = panes[i]; i++) { - var name = pane.getAttribute('data-tab'), - title = pane.getAttribute('data-tab-title'), - active = pane.getAttribute('data-tab-active') === 'true'; - - menu.appendChild(E('li', { - 'style': L.dom.isEmpty(pane) ? 'display:none' : null, - 'class': active ? 'cbi-tab' : 'cbi-tab-disabled', - 'data-tab': name - }, E('a', { - 'href': '#', - 'click': this.switchTab.bind(this) - }, title))); - - if (active) - selected = i; - } - - group.parentNode.insertBefore(menu, group); - - if (selected === null) { - selected = this.getActiveTabId(panes[0]); - - if (selected < 0 || selected >= panes.length || L.dom.isEmpty(panes[selected])) { - for (var i = 0; i < panes.length; i++) { - if (!L.dom.isEmpty(panes[i])) { - selected = i; - break; - } - } - } - - menu.childNodes[selected].classList.add('cbi-tab'); - menu.childNodes[selected].classList.remove('cbi-tab-disabled'); - panes[selected].setAttribute('data-tab-active', 'true'); - - this.setActiveTabId(panes[selected], selected); - } - }, - - getPathForPane: function(pane) { - var path = [], node = null; - - for (node = pane ? pane.parentNode : null; - node != null && node.hasAttribute != null; - node = node.parentNode) - { - if (node.hasAttribute('data-tab')) - path.unshift(node.getAttribute('data-tab')); - else if (node.hasAttribute('data-section-id')) - path.unshift(node.getAttribute('data-section-id')); - } - - return path.join('/'); - }, - - getActiveTabState: function() { - var page = document.body.getAttribute('data-page'); - - try { - var val = JSON.parse(window.sessionStorage.getItem('tab')); - if (val.page === page && L.isObject(val.paths)) - return val; - } - catch(e) {} - - window.sessionStorage.removeItem('tab'); - return { page: page, paths: {} }; - }, - - getActiveTabId: function(pane) { - var path = this.getPathForPane(pane); - return +this.getActiveTabState().paths[path] || 0; - }, - - setActiveTabId: function(pane, tabIndex) { - var path = this.getPathForPane(pane); - - try { - var state = this.getActiveTabState(); - state.paths[path] = tabIndex; - - window.sessionStorage.setItem('tab', JSON.stringify(state)); - } - catch (e) { return false; } - - return true; - }, - - updateTabs: function(ev, root) { - (root || document).querySelectorAll('[data-tab-title]').forEach(function(pane) { - var menu = pane.parentNode.previousElementSibling, - tab = menu ? menu.querySelector('[data-tab="%s"]'.format(pane.getAttribute('data-tab'))) : null, - n_errors = pane.querySelectorAll('.cbi-input-invalid').length; - - if (!menu || !tab) - return; - - if (L.dom.isEmpty(pane)) { - tab.style.display = 'none'; - tab.classList.remove('flash'); - } - else if (tab.style.display === 'none') { - tab.style.display = ''; - requestAnimationFrame(function() { tab.classList.add('flash') }); - } - - if (n_errors) { - tab.setAttribute('data-errors', n_errors); - tab.setAttribute('data-tooltip', _('%d invalid field(s)').format(n_errors)); - tab.setAttribute('data-tooltip-style', 'error'); - } - else { - tab.removeAttribute('data-errors'); - tab.removeAttribute('data-tooltip'); - } - }); - }, - - switchTab: function(ev) { - var tab = ev.target.parentNode, - name = tab.getAttribute('data-tab'), - menu = tab.parentNode, - group = menu.nextElementSibling, - groupId = +group.getAttribute('data-tab-group'), - index = 0; - - ev.preventDefault(); - - if (!tab.classList.contains('cbi-tab-disabled')) - return; - - menu.querySelectorAll('[data-tab]').forEach(function(tab) { - tab.classList.remove('cbi-tab'); - tab.classList.remove('cbi-tab-disabled'); - tab.classList.add( - tab.getAttribute('data-tab') === name ? 'cbi-tab' : 'cbi-tab-disabled'); - }); - - group.childNodes.forEach(function(pane) { - if (L.dom.matches(pane, '[data-tab]')) { - if (pane.getAttribute('data-tab') === name) { - pane.setAttribute('data-tab-active', 'true'); - L.ui.tabs.setActiveTabId(pane, index); - } - else { - pane.setAttribute('data-tab-active', 'false'); - } - - index++; - } - }); - } - }), - - /* UCI Changes */ - changes: L.Class.singleton({ - init: function() { - if (!L.env.sessionid) - return; - - return uci.changes().then(L.bind(this.renderChangeIndicator, this)); - }, - - setIndicator: function(n) { - var i = document.querySelector('.uci_change_indicator'); - if (i == null) { - var poll = document.getElementById('xhr_poll_status'); - i = poll.parentNode.insertBefore(E('a', { - 'href': '#', - 'class': 'uci_change_indicator label notice', - 'click': L.bind(this.displayChanges, this) - }), poll); - } - - if (n > 0) { - L.dom.content(i, [ _('Unsaved Changes'), ': ', n ]); - i.classList.add('flash'); - i.style.display = ''; - } - else { - i.classList.remove('flash'); - i.style.display = 'none'; - } - }, - - renderChangeIndicator: function(changes) { - var n_changes = 0; - - for (var config in changes) - if (changes.hasOwnProperty(config)) - n_changes += changes[config].length; - - this.changes = changes; - this.setIndicator(n_changes); - }, - - changeTemplates: { - 'add-3': 'uci add %0 %3 # =%2', - 'set-3': 'uci set %0.%2=%3', - 'set-4': 'uci set %0.%2.%3=%4', - 'remove-2': 'uci del %0.%2', - 'remove-3': 'uci del %0.%2.%3', - 'order-3': 'uci reorder %0.%2=%3', - 'list-add-4': 'uci add_list %0.%2.%3=%4', - 'list-del-4': 'uci del_list %0.%2.%3=%4', - 'rename-3': 'uci rename %0.%2=%3', - 'rename-4': 'uci rename %0.%2.%3=%4' - }, - - displayChanges: function() { - var list = E('div', { 'class': 'uci-change-list' }), - dlg = L.ui.showModal(_('Configuration') + ' / ' + _('Changes'), [ - E('div', { 'class': 'cbi-section' }, [ - E('strong', _('Legend:')), - E('div', { 'class': 'uci-change-legend' }, [ - E('div', { 'class': 'uci-change-legend-label' }, [ - E('ins', ' '), ' ', _('Section added') ]), - E('div', { 'class': 'uci-change-legend-label' }, [ - E('del', ' '), ' ', _('Section removed') ]), - E('div', { 'class': 'uci-change-legend-label' }, [ - E('var', {}, E('ins', ' ')), ' ', _('Option changed') ]), - E('div', { 'class': 'uci-change-legend-label' }, [ - E('var', {}, E('del', ' ')), ' ', _('Option removed') ])]), - E('br'), list, - E('div', { 'class': 'right' }, [ - E('input', { - 'type': 'button', - 'class': 'btn', - 'click': L.ui.hideModal, - 'value': _('Dismiss') - }), ' ', - E('input', { - 'type': 'button', - 'class': 'cbi-button cbi-button-positive important', - 'click': L.bind(this.apply, this, true), - 'value': _('Save & Apply') - }), ' ', - E('input', { - 'type': 'button', - 'class': 'cbi-button cbi-button-reset', - 'click': L.bind(this.revert, this), - 'value': _('Revert') - })])]) - ]); - - for (var config in this.changes) { - if (!this.changes.hasOwnProperty(config)) - continue; - - list.appendChild(E('h5', '# /etc/config/%s'.format(config))); - - for (var i = 0, added = null; i < this.changes[config].length; i++) { - var chg = this.changes[config][i], - tpl = this.changeTemplates['%s-%d'.format(chg[0], chg.length)]; - - list.appendChild(E(tpl.replace(/%([01234])/g, function(m0, m1) { - switch (+m1) { - case 0: - return config; - - case 2: - if (added != null && chg[1] == added[0]) - return '@' + added[1] + '[-1]'; - else - return chg[1]; - - case 4: - return "'%h'".format(chg[3].replace(/'/g, "'\"'\"'")); - - default: - return chg[m1-1]; - } - }))); - - if (chg[0] == 'add') - added = [ chg[1], chg[2] ]; - } - } - - list.appendChild(E('br')); - dlg.classList.add('uci-dialog'); - }, - - displayStatus: function(type, content) { - if (type) { - var message = L.ui.showModal('', ''); - - message.classList.add('alert-message'); - DOMTokenList.prototype.add.apply(message.classList, type.split(/\s+/)); - - if (content) - L.dom.content(message, content); - - if (!this.was_polling) { - this.was_polling = L.Request.poll.active(); - L.Request.poll.stop(); - } - } - else { - L.ui.hideModal(); - - if (this.was_polling) - L.Request.poll.start(); - } - }, - - rollback: function(checked) { - if (checked) { - this.displayStatus('warning spinning', - E('p', _('Failed to confirm apply within %ds, waiting for rollback…') - .format(L.env.apply_rollback))); - - var call = function(r, data, duration) { - if (r.status === 204) { - L.ui.changes.displayStatus('warning', [ - E('h4', _('Configuration has been rolled back!')), - E('p', _('The device could not be reached within %d seconds after applying the pending changes, which caused the configuration to be rolled back for safety reasons. If you believe that the configuration changes are correct nonetheless, perform an unchecked configuration apply. Alternatively, you can dismiss this warning and edit changes before attempting to apply again, or revert all pending changes to keep the currently working configuration state.').format(L.env.apply_rollback)), - E('div', { 'class': 'right' }, [ - E('input', { - 'type': 'button', - 'class': 'btn', - 'click': L.bind(L.ui.changes.displayStatus, L.ui.changes, false), - 'value': _('Dismiss') - }), ' ', - E('input', { - 'type': 'button', - 'class': 'btn cbi-button-action important', - 'click': L.bind(L.ui.changes.revert, L.ui.changes), - 'value': _('Revert changes') - }), ' ', - E('input', { - 'type': 'button', - 'class': 'btn cbi-button-negative important', - 'click': L.bind(L.ui.changes.apply, L.ui.changes, false), - 'value': _('Apply unchecked') - }) - ]) - ]); - - return; - } - - var delay = isNaN(duration) ? 0 : Math.max(1000 - duration, 0); - window.setTimeout(function() { - L.Request.request(L.url('admin/uci/confirm'), { - method: 'post', - timeout: L.env.apply_timeout * 1000, - query: { sid: L.env.sessionid, token: L.env.token } - }).then(call); - }, delay); - }; - - call({ status: 0 }); - } - else { - this.displayStatus('warning', [ - E('h4', _('Device unreachable!')), - E('p', _('Could not regain access to the device after applying the configuration changes. You might need to reconnect if you modified network related settings such as the IP address or wireless security credentials.')) - ]); - } - }, - - confirm: function(checked, deadline, override_token) { - var tt; - var ts = Date.now(); - - this.displayStatus('notice'); - - if (override_token) - this.confirm_auth = { token: override_token }; - - var call = function(r, data, duration) { - if (Date.now() >= deadline) { - window.clearTimeout(tt); - L.ui.changes.rollback(checked); - return; - } - else if (r && (r.status === 200 || r.status === 204)) { - document.dispatchEvent(new CustomEvent('uci-applied')); - - L.ui.changes.setIndicator(0); - L.ui.changes.displayStatus('notice', - E('p', _('Configuration has been applied.'))); - - window.clearTimeout(tt); - window.setTimeout(function() { - //L.ui.changes.displayStatus(false); - window.location = window.location.href.split('#')[0]; - }, L.env.apply_display * 1000); - - return; - } - - var delay = isNaN(duration) ? 0 : Math.max(1000 - duration, 0); - window.setTimeout(function() { - L.Request.request(L.url('admin/uci/confirm'), { - method: 'post', - timeout: L.env.apply_timeout * 1000, - query: L.ui.changes.confirm_auth - }).then(call, call); - }, delay); - }; - - var tick = function() { - var now = Date.now(); - - L.ui.changes.displayStatus('notice spinning', - E('p', _('Waiting for configuration to get applied… %ds') - .format(Math.max(Math.floor((deadline - Date.now()) / 1000), 0)))); - - if (now >= deadline) - return; - - tt = window.setTimeout(tick, 1000 - (now - ts)); - ts = now; - }; - - tick(); - - /* wait a few seconds for the settings to become effective */ - window.setTimeout(call, Math.max(L.env.apply_holdoff * 1000 - ((ts + L.env.apply_rollback * 1000) - deadline), 1)); - }, - - apply: function(checked) { - this.displayStatus('notice spinning', - E('p', _('Starting configuration apply…'))); - - L.Request.request(L.url('admin/uci', checked ? 'apply_rollback' : 'apply_unchecked'), { - method: 'post', - query: { sid: L.env.sessionid, token: L.env.token } - }).then(function(r) { - if (r.status === (checked ? 200 : 204)) { - var tok = null; try { tok = r.json(); } catch(e) {} - if (checked && tok !== null && typeof(tok) === 'object' && typeof(tok.token) === 'string') - L.ui.changes.confirm_auth = tok; - - L.ui.changes.confirm(checked, Date.now() + L.env.apply_rollback * 1000); - } - else if (checked && r.status === 204) { - L.ui.changes.displayStatus('notice', - E('p', _('There are no changes to apply'))); - - window.setTimeout(function() { - L.ui.changes.displayStatus(false); - }, L.env.apply_display * 1000); - } - else { - L.ui.changes.displayStatus('warning', - E('p', _('Apply request failed with status %h') - .format(r.responseText || r.statusText || r.status))); - - window.setTimeout(function() { - L.ui.changes.displayStatus(false); - }, L.env.apply_display * 1000); - } - }); - }, - - revert: function() { - this.displayStatus('notice spinning', - E('p', _('Reverting configuration…'))); - - L.Request.request(L.url('admin/uci/revert'), { - method: 'post', - query: { sid: L.env.sessionid, token: L.env.token } - }).then(function(r) { - if (r.status === 200) { - document.dispatchEvent(new CustomEvent('uci-reverted')); - - L.ui.changes.setIndicator(0); - L.ui.changes.displayStatus('notice', - E('p', _('Changes have been reverted.'))); - - window.setTimeout(function() { - //L.ui.changes.displayStatus(false); - window.location = window.location.href.split('#')[0]; - }, L.env.apply_display * 1000); - } - else { - L.ui.changes.displayStatus('warning', - E('p', _('Revert request failed with status %h') - .format(r.statusText || r.status))); - - window.setTimeout(function() { - L.ui.changes.displayStatus(false); - }, L.env.apply_display * 1000); - } - }); - } - }), - - addValidator: function(field, type, optional, vfunc /*, ... */) { - if (type == null) - return; - - var events = this.varargs(arguments, 3); - if (events.length == 0) - events.push('blur', 'keyup'); - - try { - var cbiValidator = L.validation.create(field, type, optional, vfunc), - validatorFn = cbiValidator.validate.bind(cbiValidator); - - for (var i = 0; i < events.length; i++) - field.addEventListener(events[i], validatorFn); - - validatorFn(); - - return validatorFn; - } - catch (e) { } - }, - - createHandlerFn: function(ctx, fn /*, ... */) { - if (typeof(fn) == 'string') - fn = ctx[fn]; - - if (typeof(fn) != 'function') - return null; - - return Function.prototype.bind.apply(function() { - var t = arguments[arguments.length - 1].target; - - t.classList.add('spinning'); - t.disabled = true; - - if (t.blur) - t.blur(); - - Promise.resolve(fn.apply(ctx, arguments)).then(function() { - t.classList.remove('spinning'); - t.disabled = false; - }); - }, this.varargs(arguments, 2, ctx)); - }, - - /* Widgets */ - Textfield: UITextfield, - Textarea: UITextarea, - Checkbox: UICheckbox, - Select: UISelect, - Dropdown: UIDropdown, - DynamicList: UIDynamicList, - Combobox: UICombobox, - Hiddenfield: UIHiddenfield -}); diff --git a/luci-base/htdocs/luci-static/resources/validation.js b/luci-base/htdocs/luci-static/resources/validation.js deleted file mode 100644 index ca544cb15..000000000 --- a/luci-base/htdocs/luci-static/resources/validation.js +++ /dev/null @@ -1,568 +0,0 @@ -'use strict'; - -var Validator = L.Class.extend({ - __name__: 'Validation', - - __init__: function(field, type, optional, vfunc, validatorFactory) { - this.field = field; - this.optional = optional; - this.vfunc = vfunc; - this.vstack = validatorFactory.compile(type); - this.factory = validatorFactory; - }, - - assert: function(condition, message) { - if (!condition) { - this.field.classList.add('cbi-input-invalid'); - this.error = message; - return false; - } - - this.field.classList.remove('cbi-input-invalid'); - this.error = null; - return true; - }, - - apply: function(name, value, args) { - var func; - - if (typeof(name) === 'function') - func = name; - else if (typeof(this.factory.types[name]) === 'function') - func = this.factory.types[name]; - else - return false; - - if (value != null) - this.value = value; - - return func.apply(this, args); - }, - - validate: function() { - /* element is detached */ - if (!findParent(this.field, 'body') && !findParent(this.field, '[data-field]')) - return true; - - this.field.classList.remove('cbi-input-invalid'); - this.value = (this.field.value != null) ? this.field.value : ''; - this.error = null; - - var valid; - - if (this.value.length === 0) - valid = this.assert(this.optional, _('non-empty value')); - else - valid = this.vstack[0].apply(this, this.vstack[1]); - - if (valid !== true) { - this.field.setAttribute('data-tooltip', _('Expecting: %s').format(this.error)); - this.field.setAttribute('data-tooltip-style', 'error'); - this.field.dispatchEvent(new CustomEvent('validation-failure', { bubbles: true })); - return false; - } - - if (typeof(this.vfunc) == 'function') - valid = this.vfunc(this.value); - - if (valid !== true) { - this.assert(false, valid); - this.field.setAttribute('data-tooltip', valid); - this.field.setAttribute('data-tooltip-style', 'error'); - this.field.dispatchEvent(new CustomEvent('validation-failure', { bubbles: true })); - return false; - } - - this.field.removeAttribute('data-tooltip'); - this.field.removeAttribute('data-tooltip-style'); - this.field.dispatchEvent(new CustomEvent('validation-success', { bubbles: true })); - return true; - }, - -}); - -var ValidatorFactory = L.Class.extend({ - __name__: 'ValidatorFactory', - - create: function(field, type, optional, vfunc) { - return new Validator(field, type, optional, vfunc, this); - }, - - compile: function(code) { - var pos = 0; - var esc = false; - var depth = 0; - var stack = [ ]; - - code += ','; - - for (var i = 0; i < code.length; i++) { - if (esc) { - esc = false; - continue; - } - - switch (code.charCodeAt(i)) - { - case 92: - esc = true; - break; - - case 40: - case 44: - if (depth <= 0) { - if (pos < i) { - var label = code.substring(pos, i); - label = label.replace(/\\(.)/g, '$1'); - label = label.replace(/^[ \t]+/g, ''); - label = label.replace(/[ \t]+$/g, ''); - - if (label && !isNaN(label)) { - stack.push(parseFloat(label)); - } - else if (label.match(/^(['"]).*\1$/)) { - stack.push(label.replace(/^(['"])(.*)\1$/, '$2')); - } - else if (typeof this.types[label] == 'function') { - stack.push(this.types[label]); - stack.push(null); - } - else { - L.raise('SyntaxError', 'Unhandled token "%s"', label); - } - } - - pos = i+1; - } - - depth += (code.charCodeAt(i) == 40); - break; - - case 41: - if (--depth <= 0) { - if (typeof stack[stack.length-2] != 'function') - L.raise('SyntaxError', 'Argument list follows non-function'); - - stack[stack.length-1] = this.compile(code.substring(pos, i)); - pos = i+1; - } - - break; - } - } - - return stack; - }, - - parseInteger: function(x) { - return (/^-?\d+$/.test(x) ? +x : NaN); - }, - - parseDecimal: function(x) { - return (/^-?\d+(?:\.\d+)?$/.test(x) ? +x : NaN); - }, - - parseIPv4: function(x) { - if (!x.match(/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/)) - return null; - - if (RegExp.$1 > 255 || RegExp.$2 > 255 || RegExp.$3 > 255 || RegExp.$4 > 255) - return null; - - return [ +RegExp.$1, +RegExp.$2, +RegExp.$3, +RegExp.$4 ]; - }, - - parseIPv6: function(x) { - if (x.match(/^([a-fA-F0-9:]+):(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/)) { - var v6 = RegExp.$1, v4 = this.parseIPv4(RegExp.$2); - - if (!v4) - return null; - - x = v6 + ':' + (v4[0] * 256 + v4[1]).toString(16) - + ':' + (v4[2] * 256 + v4[3]).toString(16); - } - - if (!x.match(/^[a-fA-F0-9:]+$/)) - return null; - - var prefix_suffix = x.split(/::/); - - if (prefix_suffix.length > 2) - return null; - - var prefix = (prefix_suffix[0] || '0').split(/:/); - var suffix = prefix_suffix.length > 1 ? (prefix_suffix[1] || '0').split(/:/) : []; - - if (suffix.length ? (prefix.length + suffix.length > 7) - : ((prefix_suffix.length < 2 && prefix.length < 8) || prefix.length > 8)) - return null; - - var i, word; - var words = []; - - for (i = 0, word = parseInt(prefix[0], 16); i < prefix.length; word = parseInt(prefix[++i], 16)) - if (prefix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF) - words.push(word); - else - return null; - - for (i = 0; i < (8 - prefix.length - suffix.length); i++) - words.push(0); - - for (i = 0, word = parseInt(suffix[0], 16); i < suffix.length; word = parseInt(suffix[++i], 16)) - if (suffix[i].length <= 4 && !isNaN(word) && word <= 0xFFFF) - words.push(word); - else - return null; - - return words; - }, - - types: { - integer: function() { - return this.assert(this.factory.parseInteger(this.value) !== NaN, _('valid integer value')); - }, - - uinteger: function() { - return this.assert(this.factory.parseInteger(this.value) >= 0, _('positive integer value')); - }, - - float: function() { - return this.assert(this.factory.parseDecimal(this.value) !== NaN, _('valid decimal value')); - }, - - ufloat: function() { - return this.assert(this.factory.parseDecimal(this.value) >= 0, _('positive decimal value')); - }, - - ipaddr: function(nomask) { - return this.assert(this.apply('ip4addr', null, [nomask]) || this.apply('ip6addr', null, [nomask]), - nomask ? _('valid IP address') : _('valid IP address or prefix')); - }, - - ip4addr: function(nomask) { - var re = nomask ? /^(\d+\.\d+\.\d+\.\d+)$/ : /^(\d+\.\d+\.\d+\.\d+)(?:\/(\d+\.\d+\.\d+\.\d+)|\/(\d{1,2}))?$/, - m = this.value.match(re); - - return this.assert(m && this.factory.parseIPv4(m[1]) && (m[2] ? this.factory.parseIPv4(m[2]) : (m[3] ? this.apply('ip4prefix', m[3]) : true)), - nomask ? _('valid IPv4 address') : _('valid IPv4 address or network')); - }, - - ip6addr: function(nomask) { - var re = nomask ? /^([0-9a-fA-F:.]+)$/ : /^([0-9a-fA-F:.]+)(?:\/(\d{1,3}))?$/, - m = this.value.match(re); - - return this.assert(m && this.factory.parseIPv6(m[1]) && (m[2] ? this.apply('ip6prefix', m[2]) : true), - nomask ? _('valid IPv6 address') : _('valid IPv6 address or prefix')); - }, - - ip4prefix: function() { - return this.assert(!isNaN(this.value) && this.value >= 0 && this.value <= 32, - _('valid IPv4 prefix value (0-32)')); - }, - - ip6prefix: function() { - return this.assert(!isNaN(this.value) && this.value >= 0 && this.value <= 128, - _('valid IPv6 prefix value (0-128)')); - }, - - cidr: function() { - return this.assert(this.apply('cidr4') || this.apply('cidr6'), _('valid IPv4 or IPv6 CIDR')); - }, - - cidr4: function() { - var m = this.value.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(\d{1,2})$/); - return this.assert(m && this.factory.parseIPv4(m[1]) && this.apply('ip4prefix', m[2]), _('valid IPv4 CIDR')); - }, - - cidr6: function() { - var m = this.value.match(/^([0-9a-fA-F:.]+)\/(\d{1,3})$/); - return this.assert(m && this.factory.parseIPv6(m[1]) && this.apply('ip6prefix', m[2]), _('valid IPv6 CIDR')); - }, - - ipnet4: function() { - var m = this.value.match(/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/); - return this.assert(m && this.factory.parseIPv4(m[1]) && this.factory.parseIPv4(m[2]), _('IPv4 network in address/netmask notation')); - }, - - ipnet6: function() { - var m = this.value.match(/^([0-9a-fA-F:.]+)\/([0-9a-fA-F:.]+)$/); - return this.assert(m && this.factory.parseIPv6(m[1]) && this.factory.parseIPv6(m[2]), _('IPv6 network in address/netmask notation')); - }, - - ip6hostid: function() { - if (this.value == "eui64" || this.value == "random") - return true; - - var v6 = this.factory.parseIPv6(this.value); - return this.assert(!(!v6 || v6[0] || v6[1] || v6[2] || v6[3]), _('valid IPv6 host id')); - }, - - ipmask: function() { - return this.assert(this.apply('ipmask4') || this.apply('ipmask6'), - _('valid network in address/netmask notation')); - }, - - ipmask4: function() { - return this.assert(this.apply('cidr4') || this.apply('ipnet4') || this.apply('ip4addr'), - _('valid IPv4 network')); - }, - - ipmask6: function() { - return this.assert(this.apply('cidr6') || this.apply('ipnet6') || this.apply('ip6addr'), - _('valid IPv6 network')); - }, - - port: function() { - var p = this.factory.parseInteger(this.value); - return this.assert(p >= 0 && p <= 65535, _('valid port value')); - }, - - portrange: function() { - if (this.value.match(/^(\d+)-(\d+)$/)) { - var p1 = +RegExp.$1; - var p2 = +RegExp.$2; - return this.assert(p1 <= p2 && p2 <= 65535, - _('valid port or port range (port1-port2)')); - } - - return this.assert(this.apply('port'), _('valid port or port range (port1-port2)')); - }, - - macaddr: function() { - return this.assert(this.value.match(/^([a-fA-F0-9]{2}:){5}[a-fA-F0-9]{2}$/) != null, - _('valid MAC address')); - }, - - host: function(ipv4only) { - return this.assert(this.apply('hostname') || this.apply(ipv4only == 1 ? 'ip4addr' : 'ipaddr'), - _('valid hostname or IP address')); - }, - - hostname: function(strict) { - if (this.value.length <= 253) - return this.assert( - (this.value.match(/^[a-zA-Z0-9_]+$/) != null || - (this.value.match(/^[a-zA-Z0-9_][a-zA-Z0-9_\-.]*[a-zA-Z0-9]$/) && - this.value.match(/[^0-9.]/))) && - (!strict || !this.value.match(/^_/)), - _('valid hostname')); - - return this.assert(false, _('valid hostname')); - }, - - network: function() { - return this.assert(this.apply('uciname') || this.apply('host'), - _('valid UCI identifier, hostname or IP address')); - }, - - hostport: function(ipv4only) { - var hp = this.value.split(/:/); - return this.assert(hp.length == 2 && this.apply('host', hp[0], [ipv4only]) && this.apply('port', hp[1]), - _('valid host:port')); - }, - - ip4addrport: function() { - var hp = this.value.split(/:/); - return this.assert(hp.length == 2 && this.apply('ip4addr', hp[0], [true]) && this.apply('port', hp[1]), - _('valid IPv4 address:port')); - }, - - ipaddrport: function(bracket) { - var m4 = this.value.match(/^([^\[\]:]+):(\d+)$/), - m6 = this.value.match((bracket == 1) ? /^\[(.+)\]:(\d+)$/ : /^([^\[\]]+):(\d+)$/); - - if (m4) - return this.assert(this.apply('ip4addr', m4[1], [true]) && this.apply('port', m4[2]), - _('valid address:port')); - - return this.assert(m6 && this.apply('ip6addr', m6[1], [true]) && this.apply('port', m6[2]), - _('valid address:port')); - }, - - wpakey: function() { - var v = this.value; - - if (v.length == 64) - return this.assert(v.match(/^[a-fA-F0-9]{64}$/), _('valid hexadecimal WPA key')); - - return this.assert((v.length >= 8) && (v.length <= 63), _('key between 8 and 63 characters')); - }, - - wepkey: function() { - var v = this.value; - - if (v.substr(0, 2) === 's:') - v = v.substr(2); - - if ((v.length == 10) || (v.length == 26)) - return this.assert(v.match(/^[a-fA-F0-9]{10,26}$/), _('valid hexadecimal WEP key')); - - return this.assert((v.length === 5) || (v.length === 13), _('key with either 5 or 13 characters')); - }, - - uciname: function() { - return this.assert(this.value.match(/^[a-zA-Z0-9_]+$/), _('valid UCI identifier')); - }, - - range: function(min, max) { - var val = this.factory.parseDecimal(this.value); - return this.assert(val >= +min && val <= +max, _('value between %f and %f').format(min, max)); - }, - - min: function(min) { - return this.assert(this.factory.parseDecimal(this.value) >= +min, _('value greater or equal to %f').format(min)); - }, - - max: function(max) { - return this.assert(this.factory.parseDecimal(this.value) <= +max, _('value smaller or equal to %f').format(max)); - }, - - rangelength: function(min, max) { - var val = '' + this.value; - return this.assert((val.length >= +min) && (val.length <= +max), - _('value between %d and %d characters').format(min, max)); - }, - - minlength: function(min) { - return this.assert((''+this.value).length >= +min, - _('value with at least %d characters').format(min)); - }, - - maxlength: function(max) { - return this.assert((''+this.value).length <= +max, - _('value with at most %d characters').format(max)); - }, - - or: function() { - var errors = []; - - for (var i = 0; i < arguments.length; i += 2) { - if (typeof arguments[i] != 'function') { - if (arguments[i] == this.value) - return this.assert(true); - errors.push('"%s"'.format(arguments[i])); - i--; - } - else if (arguments[i].apply(this, arguments[i+1])) { - return this.assert(true); - } - else { - errors.push(this.error); - } - } - - var t = _('One of the following: %s'); - - return this.assert(false, t.format('\n - ' + errors.join('\n - '))); - }, - - and: function() { - for (var i = 0; i < arguments.length; i += 2) { - if (typeof arguments[i] != 'function') { - if (arguments[i] != this.value) - return this.assert(false, '"%s"'.format(arguments[i])); - i--; - } - else if (!arguments[i].apply(this, arguments[i+1])) { - return this.assert(false, this.error); - } - } - - return this.assert(true); - }, - - neg: function() { - this.value = this.value.replace(/^[ \t]*![ \t]*/, ''); - - if (arguments[0].apply(this, arguments[1])) - return this.assert(true); - - return this.assert(false, _('Potential negation of: %s').format(this.error)); - }, - - list: function(subvalidator, subargs) { - this.field.setAttribute('data-is-list', 'true'); - - var tokens = this.value.match(/[^ \t]+/g); - for (var i = 0; i < tokens.length; i++) - if (!this.apply(subvalidator, tokens[i], subargs)) - return this.assert(false, this.error); - - return this.assert(true); - }, - - phonedigit: function() { - return this.assert(this.value.match(/^[0-9\*#!\.]+$/), - _('valid phone digit (0-9, "*", "#", "!" or ".")')); - }, - - timehhmmss: function() { - return this.assert(this.value.match(/^[0-6][0-9]:[0-6][0-9]:[0-6][0-9]$/), - _('valid time (HH:MM:SS)')); - }, - - dateyyyymmdd: function() { - if (this.value.match(/^(\d\d\d\d)-(\d\d)-(\d\d)/)) { - var year = +RegExp.$1, - month = +RegExp.$2, - day = +RegExp.$3, - days_in_month = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ]; - - var is_leap_year = function(year) { - return ((!(year % 4) && (year % 100)) || !(year % 400)); - } - - var get_days_in_month = function(month, year) { - return (month === 2 && is_leap_year(year)) ? 29 : days_in_month[month - 1]; - } - - /* Firewall rules in the past don't make sense */ - return this.assert(year >= 2015 && month && month <= 12 && day && day <= get_days_in_month(month, year), - _('valid date (YYYY-MM-DD)')); - - } - - return this.assert(false, _('valid date (YYYY-MM-DD)')); - }, - - unique: function(subvalidator, subargs) { - var ctx = this, - option = findParent(ctx.field, '[data-type][data-name]'), - section = findParent(option, '.cbi-section'), - query = '[data-type="%s"][data-name="%s"]'.format(option.getAttribute('data-type'), option.getAttribute('data-name')), - unique = true; - - section.querySelectorAll(query).forEach(function(sibling) { - if (sibling === option) - return; - - var input = sibling.querySelector('[data-type]'), - values = input ? (input.getAttribute('data-is-list') ? input.value.match(/[^ \t]+/g) : [ input.value ]) : null; - - if (values !== null && values.indexOf(ctx.value) !== -1) - unique = false; - }); - - if (!unique) - return this.assert(false, _('unique value')); - - if (typeof(subvalidator) === 'function') - return this.apply(subvalidator, null, subargs); - - return this.assert(true); - }, - - hexstring: function() { - return this.assert(this.value.match(/^([a-f0-9][a-f0-9]|[A-F0-9][A-F0-9])+$/), - _('hexadecimal encoded value')); - }, - - string: function() { - return true; - } - } -}); - -return ValidatorFactory; diff --git a/luci-base/htdocs/luci-static/resources/xhr.js b/luci-base/htdocs/luci-static/resources/xhr.js deleted file mode 100644 index 10bc88e1f..000000000 --- a/luci-base/htdocs/luci-static/resources/xhr.js +++ /dev/null @@ -1 +0,0 @@ -/* replaced by luci.js */ diff --git a/luci-base/luasrc/cacheloader.lua b/luci-base/luasrc/cacheloader.lua deleted file mode 100644 index 11e5f6900..000000000 --- a/luci-base/luasrc/cacheloader.lua +++ /dev/null @@ -1,12 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2008 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local config = require "luci.config" -local ccache = require "luci.ccache" - -module "luci.cacheloader" - -if config.ccache and config.ccache.enable == "1" then - ccache.cache_ondemand() -end \ No newline at end of file diff --git a/luci-base/luasrc/cbi.lua b/luci-base/luasrc/cbi.lua deleted file mode 100644 index 450e41391..000000000 --- a/luci-base/luasrc/cbi.lua +++ /dev/null @@ -1,1977 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -module("luci.cbi", package.seeall) - -require("luci.template") -local util = require("luci.util") -require("luci.http") - - ---local event = require "luci.sys.event" -local fs = require("nixio.fs") -local uci = require("luci.model.uci") -local datatypes = require("luci.cbi.datatypes") -local dispatcher = require("luci.dispatcher") -local class = util.class -local instanceof = util.instanceof - -FORM_NODATA = 0 -FORM_PROCEED = 0 -FORM_VALID = 1 -FORM_DONE = 1 -FORM_INVALID = -1 -FORM_CHANGED = 2 -FORM_SKIP = 4 - -AUTO = true - -CREATE_PREFIX = "cbi.cts." -REMOVE_PREFIX = "cbi.rts." -RESORT_PREFIX = "cbi.sts." -FEXIST_PREFIX = "cbi.cbe." - --- Loads a CBI map from given file, creating an environment and returns it -function load(cbimap, ...) - local fs = require "nixio.fs" - local i18n = require "luci.i18n" - require("luci.config") - require("luci.util") - - local upldir = "/etc/luci-uploads/" - local cbidir = luci.util.libpath() .. "/model/cbi/" - local func, err - - if fs.access(cbidir..cbimap..".lua") then - func, err = loadfile(cbidir..cbimap..".lua") - elseif fs.access(cbimap) then - func, err = loadfile(cbimap) - else - func, err = nil, "Model '" .. cbimap .. "' not found!" - end - - assert(func, err) - - local env = { - translate=i18n.translate, - translatef=i18n.translatef, - arg={...} - } - - setfenv(func, setmetatable(env, {__index = - function(tbl, key) - return rawget(tbl, key) or _M[key] or _G[key] - end})) - - local maps = { func() } - local uploads = { } - local has_upload = false - - for i, map in ipairs(maps) do - if not instanceof(map, Node) then - error("CBI map returns no valid map object!") - return nil - else - map:prepare() - if map.upload_fields then - has_upload = true - for _, field in ipairs(map.upload_fields) do - uploads[ - field.config .. '.' .. - (field.section.sectiontype or '1') .. '.' .. - field.option - ] = true - end - end - end - end - - if has_upload then - local uci = luci.model.uci.cursor() - local prm = luci.http.context.request.message.params - local fd, cbid - - luci.http.setfilehandler( - function( field, chunk, eof ) - if not field then return end - if field.name and not cbid then - local c, s, o = field.name:gmatch( - "cbid%.([^%.]+)%.([^%.]+)%.([^%.]+)" - )() - - if c and s and o then - local t = uci:get( c, s ) or s - if uploads[c.."."..t.."."..o] then - local path = upldir .. field.name - fd = io.open(path, "w") - if fd then - cbid = field.name - prm[cbid] = path - end - end - end - end - - if field.name == cbid and fd then - fd:write(chunk) - end - - if eof and fd then - fd:close() - fd = nil - cbid = nil - end - end - ) - end - - return maps -end - --- --- Compile a datatype specification into a parse tree for evaluation later on --- -local cdt_cache = { } - -function compile_datatype(code) - local i - local pos = 0 - local esc = false - local depth = 0 - local stack = { } - - for i = 1, #code+1 do - local byte = code:byte(i) or 44 - if esc then - esc = false - elseif byte == 92 then - esc = true - elseif byte == 40 or byte == 44 then - if depth <= 0 then - if pos < i then - local label = code:sub(pos, i-1) - :gsub("\\(.)", "%1") - :gsub("^%s+", "") - :gsub("%s+$", "") - - if #label > 0 and tonumber(label) then - stack[#stack+1] = tonumber(label) - elseif label:match("^'.*'$") or label:match('^".*"$') then - stack[#stack+1] = label:gsub("[\"'](.*)[\"']", "%1") - elseif type(datatypes[label]) == "function" then - stack[#stack+1] = datatypes[label] - stack[#stack+1] = { } - else - error("Datatype error, bad token %q" % label) - end - end - pos = i + 1 - end - depth = depth + (byte == 40 and 1 or 0) - elseif byte == 41 then - depth = depth - 1 - if depth <= 0 then - if type(stack[#stack-1]) ~= "function" then - error("Datatype error, argument list follows non-function") - end - stack[#stack] = compile_datatype(code:sub(pos, i-1)) - pos = i + 1 - end - end - end - - return stack -end - -function verify_datatype(dt, value) - if dt and #dt > 0 then - if not cdt_cache[dt] then - local c = compile_datatype(dt) - if c and type(c[1]) == "function" then - cdt_cache[dt] = c - else - error("Datatype error, not a function expression") - end - end - if cdt_cache[dt] then - return cdt_cache[dt][1](value, unpack(cdt_cache[dt][2])) - end - end - return true -end - - --- Node pseudo abstract class -Node = class() - -function Node.__init__(self, title, description) - self.children = {} - self.title = title or "" - self.description = description or "" - self.template = "cbi/node" -end - --- hook helper -function Node._run_hook(self, hook) - if type(self[hook]) == "function" then - return self[hook](self) - end -end - -function Node._run_hooks(self, ...) - local f - local r = false - for _, f in ipairs(arg) do - if type(self[f]) == "function" then - self[f](self) - r = true - end - end - return r -end - --- Prepare nodes -function Node.prepare(self, ...) - for k, child in ipairs(self.children) do - child:prepare(...) - end -end - --- Append child nodes -function Node.append(self, obj) - table.insert(self.children, obj) -end - --- Parse this node and its children -function Node.parse(self, ...) - for k, child in ipairs(self.children) do - child:parse(...) - end -end - --- Render this node -function Node.render(self, scope) - scope = scope or {} - scope.self = self - - luci.template.render(self.template, scope) -end - --- Render the children -function Node.render_children(self, ...) - local k, node - for k, node in ipairs(self.children) do - node.last_child = (k == #self.children) - node.index = k - node:render(...) - end -end - - ---[[ -A simple template element -]]-- -Template = class(Node) - -function Template.__init__(self, template) - Node.__init__(self) - self.template = template -end - -function Template.render(self) - luci.template.render(self.template, {self=self}) -end - -function Template.parse(self, readinput) - self.readinput = (readinput ~= false) - return Map.formvalue(self, "cbi.submit") and FORM_DONE or FORM_NODATA -end - - ---[[ -Map - A map describing a configuration file -]]-- -Map = class(Node) - -function Map.__init__(self, config, ...) - Node.__init__(self, ...) - - self.config = config - self.parsechain = {self.config} - self.template = "cbi/map" - self.apply_on_parse = nil - self.readinput = true - self.proceed = false - self.flow = {} - - self.uci = uci.cursor() - self.save = true - - self.changed = false - - local path = "%s/%s" %{ self.uci:get_confdir(), self.config } - if fs.stat(path, "type") ~= "reg" then - fs.writefile(path, "") - end - - local ok, err = self.uci:load(self.config) - if not ok then - local url = dispatcher.build_url(unpack(dispatcher.context.request)) - local source = self:formvalue("cbi.source") - if type(source) == "string" then - fs.writefile(path, source:gsub("\r\n", "\n")) - ok, err = self.uci:load(self.config) - if ok then - luci.http.redirect(url) - end - end - self.save = false - end - - if not ok then - self.template = "cbi/error" - self.error = err - self.source = fs.readfile(path) or "" - self.pageaction = false - end -end - -function Map.formvalue(self, key) - return self.readinput and luci.http.formvalue(key) or nil -end - -function Map.formvaluetable(self, key) - return self.readinput and luci.http.formvaluetable(key) or {} -end - -function Map.get_scheme(self, sectiontype, option) - if not option then - return self.scheme and self.scheme.sections[sectiontype] - else - return self.scheme and self.scheme.variables[sectiontype] - and self.scheme.variables[sectiontype][option] - end -end - -function Map.submitstate(self) - return self:formvalue("cbi.submit") -end - --- Chain foreign config -function Map.chain(self, config) - table.insert(self.parsechain, config) -end - -function Map.state_handler(self, state) - return state -end - --- Use optimized UCI writing -function Map.parse(self, readinput, ...) - if self:formvalue("cbi.skip") then - self.state = FORM_SKIP - elseif not self.save then - self.state = FORM_INVALID - elseif not self:submitstate() then - self.state = FORM_NODATA - end - - -- Back out early to prevent unauthorized changes on the subsequent parse - if self.state ~= nil then - return self:state_handler(self.state) - end - - self.readinput = (readinput ~= false) - self:_run_hooks("on_parse") - - Node.parse(self, ...) - - if self.save then - self:_run_hooks("on_save", "on_before_save") - local i, config - for i, config in ipairs(self.parsechain) do - self.uci:save(config) - end - self:_run_hooks("on_after_save") - if (not self.proceed and self.flow.autoapply) or luci.http.formvalue("cbi.apply") then - self:_run_hooks("on_before_commit") - if self.apply_on_parse == false then - for i, config in ipairs(self.parsechain) do - self.uci:commit(config) - end - end - self:_run_hooks("on_commit", "on_after_commit", "on_before_apply") - if self.apply_on_parse == true or self.apply_on_parse == false then - self.uci:apply(self.apply_on_parse) - self:_run_hooks("on_apply", "on_after_apply") - else - -- This is evaluated by the dispatcher and delegated to the - -- template which in turn fires XHR to perform the actual - -- apply actions. - self.apply_needed = true - end - - -- Reparse sections - Node.parse(self, true) - end - for i, config in ipairs(self.parsechain) do - self.uci:unload(config) - end - if type(self.commit_handler) == "function" then - self:commit_handler(self:submitstate()) - end - end - - if not self.save then - self.state = FORM_INVALID - elseif self.proceed then - self.state = FORM_PROCEED - elseif self.changed then - self.state = FORM_CHANGED - else - self.state = FORM_VALID - end - - return self:state_handler(self.state) -end - -function Map.render(self, ...) - self:_run_hooks("on_init") - Node.render(self, ...) -end - --- Creates a child section -function Map.section(self, class, ...) - if instanceof(class, AbstractSection) then - local obj = class(self, ...) - self:append(obj) - return obj - else - error("class must be a descendent of AbstractSection") - end -end - --- UCI add -function Map.add(self, sectiontype) - return self.uci:add(self.config, sectiontype) -end - --- UCI set -function Map.set(self, section, option, value) - if type(value) ~= "table" or #value > 0 then - if option then - return self.uci:set(self.config, section, option, value) - else - return self.uci:set(self.config, section, value) - end - else - return Map.del(self, section, option) - end -end - --- UCI del -function Map.del(self, section, option) - if option then - return self.uci:delete(self.config, section, option) - else - return self.uci:delete(self.config, section) - end -end - --- UCI get -function Map.get(self, section, option) - if not section then - return self.uci:get_all(self.config) - elseif option then - return self.uci:get(self.config, section, option) - else - return self.uci:get_all(self.config, section) - end -end - ---[[ -Compound - Container -]]-- -Compound = class(Node) - -function Compound.__init__(self, ...) - Node.__init__(self) - self.template = "cbi/compound" - self.children = {...} -end - -function Compound.populate_delegator(self, delegator) - for _, v in ipairs(self.children) do - v.delegator = delegator - end -end - -function Compound.parse(self, ...) - local cstate, state = 0 - - for k, child in ipairs(self.children) do - cstate = child:parse(...) - state = (not state or cstate < state) and cstate or state - end - - return state -end - - ---[[ -Delegator - Node controller -]]-- -Delegator = class(Node) -function Delegator.__init__(self, ...) - Node.__init__(self, ...) - self.nodes = {} - self.defaultpath = {} - self.pageaction = false - self.readinput = true - self.allow_reset = false - self.allow_cancel = false - self.allow_back = false - self.allow_finish = false - self.template = "cbi/delegator" -end - -function Delegator.set(self, name, node) - assert(not self.nodes[name], "Duplicate entry") - - self.nodes[name] = node -end - -function Delegator.add(self, name, node) - node = self:set(name, node) - self.defaultpath[#self.defaultpath+1] = name -end - -function Delegator.insert_after(self, name, after) - local n = #self.chain + 1 - for k, v in ipairs(self.chain) do - if v == after then - n = k + 1 - break - end - end - table.insert(self.chain, n, name) -end - -function Delegator.set_route(self, ...) - local n, chain, route = 0, self.chain, {...} - for i = 1, #chain do - if chain[i] == self.current then - n = i - break - end - end - for i = 1, #route do - n = n + 1 - chain[n] = route[i] - end - for i = n + 1, #chain do - chain[i] = nil - end -end - -function Delegator.get(self, name) - local node = self.nodes[name] - - if type(node) == "string" then - node = load(node, name) - end - - if type(node) == "table" and getmetatable(node) == nil then - node = Compound(unpack(node)) - end - - return node -end - -function Delegator.parse(self, ...) - if self.allow_cancel and Map.formvalue(self, "cbi.cancel") then - if self:_run_hooks("on_cancel") then - return FORM_DONE - end - end - - if not Map.formvalue(self, "cbi.delg.current") then - self:_run_hooks("on_init") - end - - local newcurrent - self.chain = self.chain or self:get_chain() - self.current = self.current or self:get_active() - self.active = self.active or self:get(self.current) - assert(self.active, "Invalid state") - - local stat = FORM_DONE - if type(self.active) ~= "function" then - self.active:populate_delegator(self) - stat = self.active:parse() - else - self:active() - end - - if stat > FORM_PROCEED then - if Map.formvalue(self, "cbi.delg.back") then - newcurrent = self:get_prev(self.current) - else - newcurrent = self:get_next(self.current) - end - elseif stat < FORM_PROCEED then - return stat - end - - - if not Map.formvalue(self, "cbi.submit") then - return FORM_NODATA - elseif stat > FORM_PROCEED - and (not newcurrent or not self:get(newcurrent)) then - return self:_run_hook("on_done") or FORM_DONE - else - self.current = newcurrent or self.current - self.active = self:get(self.current) - if type(self.active) ~= "function" then - self.active:populate_delegator(self) - local stat = self.active:parse(false) - if stat == FORM_SKIP then - return self:parse(...) - else - return FORM_PROCEED - end - else - return self:parse(...) - end - end -end - -function Delegator.get_next(self, state) - for k, v in ipairs(self.chain) do - if v == state then - return self.chain[k+1] - end - end -end - -function Delegator.get_prev(self, state) - for k, v in ipairs(self.chain) do - if v == state then - return self.chain[k-1] - end - end -end - -function Delegator.get_chain(self) - local x = Map.formvalue(self, "cbi.delg.path") or self.defaultpath - return type(x) == "table" and x or {x} -end - -function Delegator.get_active(self) - return Map.formvalue(self, "cbi.delg.current") or self.chain[1] -end - ---[[ -Page - A simple node -]]-- - -Page = class(Node) -Page.__init__ = Node.__init__ -Page.parse = function() end - - ---[[ -SimpleForm - A Simple non-UCI form -]]-- -SimpleForm = class(Node) - -function SimpleForm.__init__(self, config, title, description, data) - Node.__init__(self, title, description) - self.config = config - self.data = data or {} - self.template = "cbi/simpleform" - self.dorender = true - self.pageaction = false - self.readinput = true -end - -SimpleForm.formvalue = Map.formvalue -SimpleForm.formvaluetable = Map.formvaluetable - -function SimpleForm.parse(self, readinput, ...) - self.readinput = (readinput ~= false) - - if self:formvalue("cbi.skip") then - return FORM_SKIP - end - - if self:formvalue("cbi.cancel") and self:_run_hooks("on_cancel") then - return FORM_DONE - end - - if self:submitstate() then - Node.parse(self, 1, ...) - end - - local valid = true - for k, j in ipairs(self.children) do - for i, v in ipairs(j.children) do - valid = valid - and (not v.tag_missing or not v.tag_missing[1]) - and (not v.tag_invalid or not v.tag_invalid[1]) - and (not v.error) - end - end - - local state = - not self:submitstate() and FORM_NODATA - or valid and FORM_VALID - or FORM_INVALID - - self.dorender = not self.handle - if self.handle then - local nrender, nstate = self:handle(state, self.data) - self.dorender = self.dorender or (nrender ~= false) - state = nstate or state - end - return state -end - -function SimpleForm.render(self, ...) - if self.dorender then - Node.render(self, ...) - end -end - -function SimpleForm.submitstate(self) - return self:formvalue("cbi.submit") -end - -function SimpleForm.section(self, class, ...) - if instanceof(class, AbstractSection) then - local obj = class(self, ...) - self:append(obj) - return obj - else - error("class must be a descendent of AbstractSection") - end -end - --- Creates a child field -function SimpleForm.field(self, class, ...) - local section - for k, v in ipairs(self.children) do - if instanceof(v, SimpleSection) then - section = v - break - end - end - if not section then - section = self:section(SimpleSection) - end - - if instanceof(class, AbstractValue) then - local obj = class(self, section, ...) - obj.track_missing = true - section:append(obj) - return obj - else - error("class must be a descendent of AbstractValue") - end -end - -function SimpleForm.set(self, section, option, value) - self.data[option] = value -end - - -function SimpleForm.del(self, section, option) - self.data[option] = nil -end - - -function SimpleForm.get(self, section, option) - return self.data[option] -end - - -function SimpleForm.get_scheme() - return nil -end - - -Form = class(SimpleForm) - -function Form.__init__(self, ...) - SimpleForm.__init__(self, ...) - self.embedded = true -end - - ---[[ -AbstractSection -]]-- -AbstractSection = class(Node) - -function AbstractSection.__init__(self, map, sectiontype, ...) - Node.__init__(self, ...) - self.sectiontype = sectiontype - self.map = map - self.config = map.config - self.optionals = {} - self.defaults = {} - self.fields = {} - self.tag_error = {} - self.tag_invalid = {} - self.tag_deperror = {} - self.changed = false - - self.optional = true - self.addremove = false - self.dynamic = false -end - --- Define a tab for the section -function AbstractSection.tab(self, tab, title, desc) - self.tabs = self.tabs or { } - self.tab_names = self.tab_names or { } - - self.tab_names[#self.tab_names+1] = tab - self.tabs[tab] = { - title = title, - description = desc, - childs = { } - } -end - --- Check whether the section has tabs -function AbstractSection.has_tabs(self) - return (self.tabs ~= nil) and (next(self.tabs) ~= nil) -end - --- Appends a new option -function AbstractSection.option(self, class, option, ...) - if instanceof(class, AbstractValue) then - local obj = class(self.map, self, option, ...) - self:append(obj) - self.fields[option] = obj - return obj - elseif class == true then - error("No valid class was given and autodetection failed.") - else - error("class must be a descendant of AbstractValue") - end -end - --- Appends a new tabbed option -function AbstractSection.taboption(self, tab, ...) - - assert(tab and self.tabs and self.tabs[tab], - "Cannot assign option to not existing tab %q" % tostring(tab)) - - local l = self.tabs[tab].childs - local o = AbstractSection.option(self, ...) - - if o then l[#l+1] = o end - - return o -end - --- Render a single tab -function AbstractSection.render_tab(self, tab, ...) - - assert(tab and self.tabs and self.tabs[tab], - "Cannot render not existing tab %q" % tostring(tab)) - - local k, node - for k, node in ipairs(self.tabs[tab].childs) do - node.last_child = (k == #self.tabs[tab].childs) - node.index = k - node:render(...) - end -end - --- Parse optional options -function AbstractSection.parse_optionals(self, section, noparse) - if not self.optional then - return - end - - self.optionals[section] = {} - - local field = nil - if not noparse then - field = self.map:formvalue("cbi.opt."..self.config.."."..section) - end - - for k,v in ipairs(self.children) do - if v.optional and not v:cfgvalue(section) and not self:has_tabs() then - if field == v.option then - field = nil - self.map.proceed = true - else - table.insert(self.optionals[section], v) - end - end - end - - if field and #field > 0 and self.dynamic then - self:add_dynamic(field) - end -end - --- Add a dynamic option -function AbstractSection.add_dynamic(self, field, optional) - local o = self:option(Value, field, field) - o.optional = optional -end - --- Parse all dynamic options -function AbstractSection.parse_dynamic(self, section) - if not self.dynamic then - return - end - - local arr = luci.util.clone(self:cfgvalue(section)) - local form = self.map:formvaluetable("cbid."..self.config.."."..section) - for k, v in pairs(form) do - arr[k] = v - end - - for key,val in pairs(arr) do - local create = true - - for i,c in ipairs(self.children) do - if c.option == key then - create = false - end - end - - if create and key:sub(1, 1) ~= "." then - self.map.proceed = true - self:add_dynamic(key, true) - end - end -end - --- Returns the section's UCI table -function AbstractSection.cfgvalue(self, section) - return self.map:get(section) -end - --- Push events -function AbstractSection.push_events(self) - --luci.util.append(self.map.events, self.events) - self.map.changed = true -end - --- Removes the section -function AbstractSection.remove(self, section) - self.map.proceed = true - return self.map:del(section) -end - --- Creates the section -function AbstractSection.create(self, section) - local stat - - if section then - stat = section:match("^[%w_]+$") and self.map:set(section, nil, self.sectiontype) - else - section = self.map:add(self.sectiontype) - stat = section - end - - if stat then - for k,v in pairs(self.children) do - if v.default then - self.map:set(section, v.option, v.default) - end - end - - for k,v in pairs(self.defaults) do - self.map:set(section, k, v) - end - end - - self.map.proceed = true - - return stat -end - - -SimpleSection = class(AbstractSection) - -function SimpleSection.__init__(self, form, ...) - AbstractSection.__init__(self, form, nil, ...) - self.template = "cbi/nullsection" -end - - -Table = class(AbstractSection) - -function Table.__init__(self, form, data, ...) - local datasource = {} - local tself = self - datasource.config = "table" - self.data = data or {} - - datasource.formvalue = Map.formvalue - datasource.formvaluetable = Map.formvaluetable - datasource.readinput = true - - function datasource.get(self, section, option) - return tself.data[section] and tself.data[section][option] - end - - function datasource.submitstate(self) - return Map.formvalue(self, "cbi.submit") - end - - function datasource.del(...) - return true - end - - function datasource.get_scheme() - return nil - end - - AbstractSection.__init__(self, datasource, "table", ...) - self.template = "cbi/tblsection" - self.rowcolors = true - self.anonymous = true -end - -function Table.parse(self, readinput) - self.map.readinput = (readinput ~= false) - for i, k in ipairs(self:cfgsections()) do - if self.map:submitstate() then - Node.parse(self, k) - end - end -end - -function Table.cfgsections(self) - local sections = {} - - for i, v in luci.util.kspairs(self.data) do - table.insert(sections, i) - end - - return sections -end - -function Table.update(self, data) - self.data = data -end - - - ---[[ -NamedSection - A fixed configuration section defined by its name -]]-- -NamedSection = class(AbstractSection) - -function NamedSection.__init__(self, map, section, stype, ...) - AbstractSection.__init__(self, map, stype, ...) - - -- Defaults - self.addremove = false - self.template = "cbi/nsection" - self.section = section -end - -function NamedSection.prepare(self) - AbstractSection.prepare(self) - AbstractSection.parse_optionals(self, self.section, true) -end - -function NamedSection.parse(self, novld) - local s = self.section - local active = self:cfgvalue(s) - - if self.addremove then - local path = self.config.."."..s - if active then -- Remove the section - if self.map:formvalue("cbi.rns."..path) and self:remove(s) then - self:push_events() - return - end - else -- Create and apply default values - if self.map:formvalue("cbi.cns."..path) then - self:create(s) - return - end - end - end - - if active then - AbstractSection.parse_dynamic(self, s) - if self.map:submitstate() then - Node.parse(self, s) - end - AbstractSection.parse_optionals(self, s) - - if self.changed then - self:push_events() - end - end -end - - ---[[ -TypedSection - A (set of) configuration section(s) defined by the type - addremove: Defines whether the user can add/remove sections of this type - anonymous: Allow creating anonymous sections - validate: a validation function returning nil if the section is invalid -]]-- -TypedSection = class(AbstractSection) - -function TypedSection.__init__(self, map, type, ...) - AbstractSection.__init__(self, map, type, ...) - - self.template = "cbi/tsection" - self.deps = {} - self.anonymous = false -end - -function TypedSection.prepare(self) - AbstractSection.prepare(self) - - local i, s - for i, s in ipairs(self:cfgsections()) do - AbstractSection.parse_optionals(self, s, true) - end -end - --- Return all matching UCI sections for this TypedSection -function TypedSection.cfgsections(self) - local sections = {} - self.map.uci:foreach(self.map.config, self.sectiontype, - function (section) - if self:checkscope(section[".name"]) then - table.insert(sections, section[".name"]) - end - end) - - return sections -end - --- Limits scope to sections that have certain option => value pairs -function TypedSection.depends(self, option, value) - table.insert(self.deps, {option=option, value=value}) -end - -function TypedSection.parse(self, novld) - if self.addremove then - -- Remove - local crval = REMOVE_PREFIX .. self.config - local name = self.map:formvaluetable(crval) - for k,v in pairs(name) do - if k:sub(-2) == ".x" then - k = k:sub(1, #k - 2) - end - if self:cfgvalue(k) and self:checkscope(k) then - self:remove(k) - end - end - end - - local co - for i, k in ipairs(self:cfgsections()) do - AbstractSection.parse_dynamic(self, k) - if self.map:submitstate() then - Node.parse(self, k, novld) - end - AbstractSection.parse_optionals(self, k) - end - - if self.addremove then - -- Create - local created - local crval = CREATE_PREFIX .. self.config .. "." .. self.sectiontype - local origin, name = next(self.map:formvaluetable(crval)) - if self.anonymous then - if name then - created = self:create(nil, origin) - end - else - if name then - -- Ignore if it already exists - if self:cfgvalue(name) then - name = nil - self.err_invalid = true - else - name = self:checkscope(name) - - if not name then - self.err_invalid = true - end - - if name and #name > 0 then - created = self:create(name, origin) and name - if not created then - self.invalid_cts = true - end - end - end - end - end - - if created then - AbstractSection.parse_optionals(self, created) - end - end - - if self.sortable then - local stval = RESORT_PREFIX .. self.config .. "." .. self.sectiontype - local order = self.map:formvalue(stval) - if order and #order > 0 then - local sids, sid = { }, nil - for sid in util.imatch(order) do - sids[#sids+1] = sid - end - if #sids > 0 then - self.map.uci:reorder(self.config, sids) - self.changed = true - end - end - end - - if created or self.changed then - self:push_events() - end -end - --- Verifies scope of sections -function TypedSection.checkscope(self, section) - -- Check if we are not excluded - if self.filter and not self:filter(section) then - return nil - end - - -- Check if at least one dependency is met - if #self.deps > 0 and self:cfgvalue(section) then - local stat = false - - for k, v in ipairs(self.deps) do - if self:cfgvalue(section)[v.option] == v.value then - stat = true - end - end - - if not stat then - return nil - end - end - - return self:validate(section) -end - - --- Dummy validate function -function TypedSection.validate(self, section) - return section -end - - ---[[ -AbstractValue - An abstract Value Type - null: Value can be empty - valid: A function returning the value if it is valid otherwise nil - depends: A table of option => value pairs of which one must be true - default: The default value - size: The size of the input fields - rmempty: Unset value if empty - optional: This value is optional (see AbstractSection.optionals) -]]-- -AbstractValue = class(Node) - -function AbstractValue.__init__(self, map, section, option, ...) - Node.__init__(self, ...) - self.section = section - self.option = option - self.map = map - self.config = map.config - self.tag_invalid = {} - self.tag_missing = {} - self.tag_reqerror = {} - self.tag_error = {} - self.deps = {} - --self.cast = "string" - - self.track_missing = false - self.rmempty = true - self.default = nil - self.size = nil - self.optional = false -end - -function AbstractValue.prepare(self) - self.cast = self.cast or "string" -end - --- Add a dependencie to another section field -function AbstractValue.depends(self, field, value) - local deps - if type(field) == "string" then - deps = {} - deps[field] = value - else - deps = field - end - - table.insert(self.deps, deps) -end - --- Serialize dependencies -function AbstractValue.deplist2json(self, section, deplist) - local deps, i, d = { } - - if type(self.deps) == "table" then - for i, d in ipairs(deplist or self.deps) do - local a, k, v = { } - for k, v in pairs(d) do - if k:find("!", 1, true) then - a[k] = v - elseif k:find(".", 1, true) then - a['cbid.%s' % k] = v - else - a['cbid.%s.%s.%s' %{ self.config, section, k }] = v - end - end - deps[#deps+1] = a - end - end - - return util.serialize_json(deps) -end - --- Serialize choices -function AbstractValue.choices(self) - if type(self.keylist) == "table" and #self.keylist > 0 then - local i, k, v = nil, nil, {} - for i, k in ipairs(self.keylist) do - v[k] = self.vallist[i] or k - end - return v - end - return nil -end - --- Generates the unique CBID -function AbstractValue.cbid(self, section) - return "cbid."..self.map.config.."."..section.."."..self.option -end - --- Return whether this object should be created -function AbstractValue.formcreated(self, section) - local key = "cbi.opt."..self.config.."."..section - return (self.map:formvalue(key) == self.option) -end - --- Returns the formvalue for this object -function AbstractValue.formvalue(self, section) - return self.map:formvalue(self:cbid(section)) -end - -function AbstractValue.additional(self, value) - self.optional = value -end - -function AbstractValue.mandatory(self, value) - self.rmempty = not value -end - -function AbstractValue.add_error(self, section, type, msg) - self.error = self.error or { } - self.error[section] = msg or type - - self.section.error = self.section.error or { } - self.section.error[section] = self.section.error[section] or { } - table.insert(self.section.error[section], msg or type) - - if type == "invalid" then - self.tag_invalid[section] = true - elseif type == "missing" then - self.tag_missing[section] = true - end - - self.tag_error[section] = true - self.map.save = false -end - -function AbstractValue.parse(self, section, novld) - local fvalue = self:formvalue(section) - local cvalue = self:cfgvalue(section) - - -- If favlue and cvalue are both tables and have the same content - -- make them identical - if type(fvalue) == "table" and type(cvalue) == "table" then - local equal = #fvalue == #cvalue - if equal then - for i=1, #fvalue do - if cvalue[i] ~= fvalue[i] then - equal = false - end - end - end - if equal then - fvalue = cvalue - end - end - - if fvalue and #fvalue > 0 then -- If we have a form value, write it to UCI - local val_err - fvalue, val_err = self:validate(fvalue, section) - fvalue = self:transform(fvalue) - - if not fvalue and not novld then - self:add_error(section, "invalid", val_err) - end - - if self.alias then - self.section.aliased = self.section.aliased or {} - self.section.aliased[section] = self.section.aliased[section] or {} - self.section.aliased[section][self.alias] = true - end - - if fvalue and (self.forcewrite or not (fvalue == cvalue)) then - if self:write(section, fvalue) then - -- Push events - self.section.changed = true - --luci.util.append(self.map.events, self.events) - end - end - else -- Unset the UCI or error - if self.rmempty or self.optional then - if not self.alias or - not self.section.aliased or - not self.section.aliased[section] or - not self.section.aliased[section][self.alias] - then - if self:remove(section) then - -- Push events - self.section.changed = true - --luci.util.append(self.map.events, self.events) - end - end - elseif cvalue ~= fvalue and not novld then - -- trigger validator with nil value to get custom user error msg. - local _, val_err = self:validate(nil, section) - self:add_error(section, "missing", val_err) - end - end -end - --- Render if this value exists or if it is mandatory -function AbstractValue.render(self, s, scope) - if not self.optional or self.section:has_tabs() or self:cfgvalue(s) or self:formcreated(s) then - scope = scope or {} - scope.section = s - scope.cbid = self:cbid(s) - Node.render(self, scope) - end -end - --- Return the UCI value of this object -function AbstractValue.cfgvalue(self, section) - local value - if self.tag_error[section] then - value = self:formvalue(section) - else - value = self.map:get(section, self.alias or self.option) - end - - if not value then - return nil - elseif not self.cast or self.cast == type(value) then - return value - elseif self.cast == "string" then - if type(value) == "table" then - return value[1] - end - elseif self.cast == "table" then - return { value } - end -end - --- Validate the form value -function AbstractValue.validate(self, value) - if self.datatype and value then - if type(value) == "table" then - local v - for _, v in ipairs(value) do - if v and #v > 0 and not verify_datatype(self.datatype, v) then - return nil - end - end - else - if not verify_datatype(self.datatype, value) then - return nil - end - end - end - - return value -end - -AbstractValue.transform = AbstractValue.validate - - --- Write to UCI -function AbstractValue.write(self, section, value) - return self.map:set(section, self.alias or self.option, value) -end - --- Remove from UCI -function AbstractValue.remove(self, section) - return self.map:del(section, self.alias or self.option) -end - - - - ---[[ -Value - A one-line value - maxlength: The maximum length -]]-- -Value = class(AbstractValue) - -function Value.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/value" - self.keylist = {} - self.vallist = {} - self.readonly = nil -end - -function Value.reset_values(self) - self.keylist = {} - self.vallist = {} -end - -function Value.value(self, key, val) - val = val or key - table.insert(self.keylist, tostring(key)) - table.insert(self.vallist, tostring(val)) -end - -function Value.parse(self, section, novld) - if self.readonly then return end - AbstractValue.parse(self, section, novld) -end - --- DummyValue - This does nothing except being there -DummyValue = class(AbstractValue) - -function DummyValue.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/dvalue" - self.value = nil -end - -function DummyValue.cfgvalue(self, section) - local value - if self.value then - if type(self.value) == "function" then - value = self:value(section) - else - value = self.value - end - else - value = AbstractValue.cfgvalue(self, section) - end - return value -end - -function DummyValue.parse(self) - -end - - ---[[ -Flag - A flag being enabled or disabled -]]-- -Flag = class(AbstractValue) - -function Flag.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/fvalue" - - self.enabled = "1" - self.disabled = "0" - self.default = self.disabled -end - --- A flag can only have two states: set or unset -function Flag.parse(self, section, novld) - local fexists = self.map:formvalue( - FEXIST_PREFIX .. self.config .. "." .. section .. "." .. self.option) - - if fexists then - local fvalue = self:formvalue(section) and self.enabled or self.disabled - local cvalue = self:cfgvalue(section) - local val_err - fvalue, val_err = self:validate(fvalue, section) - if not fvalue then - if not novld then - self:add_error(section, "invalid", val_err) - end - return - end - if fvalue == self.default and (self.optional or self.rmempty) then - self:remove(section) - else - self:write(section, fvalue) - end - if (fvalue ~= cvalue) then self.section.changed = true end - else - self:remove(section) - self.section.changed = true - end -end - -function Flag.cfgvalue(self, section) - return AbstractValue.cfgvalue(self, section) or self.default -end -function Flag.validate(self, value) - return value -end - ---[[ -ListValue - A one-line value predefined in a list - widget: The widget that will be used (select, radio) -]]-- -ListValue = class(AbstractValue) - -function ListValue.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/lvalue" - - self.size = 1 - self.widget = "select" - - self:reset_values() -end - -function ListValue.reset_values(self) - self.keylist = {} - self.vallist = {} - self.deplist = {} -end - -function ListValue.value(self, key, val, ...) - if luci.util.contains(self.keylist, key) then - return - end - - val = val or key - table.insert(self.keylist, tostring(key)) - table.insert(self.vallist, tostring(val)) - table.insert(self.deplist, {...}) -end - -function ListValue.validate(self, val) - if luci.util.contains(self.keylist, val) then - return val - else - return nil - end -end - - - ---[[ -MultiValue - Multiple delimited values - widget: The widget that will be used (select, checkbox) - delimiter: The delimiter that will separate the values (default: " ") -]]-- -MultiValue = class(AbstractValue) - -function MultiValue.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/mvalue" - - self.widget = "checkbox" - self.delimiter = " " - - self:reset_values() -end - -function MultiValue.render(self, ...) - if self.widget == "select" and not self.size then - self.size = #self.vallist - end - - AbstractValue.render(self, ...) -end - -function MultiValue.reset_values(self) - self.keylist = {} - self.vallist = {} - self.deplist = {} -end - -function MultiValue.value(self, key, val) - if luci.util.contains(self.keylist, key) then - return - end - - val = val or key - table.insert(self.keylist, tostring(key)) - table.insert(self.vallist, tostring(val)) -end - -function MultiValue.valuelist(self, section) - local val = self:cfgvalue(section) - - if not(type(val) == "string") then - return {} - end - - return luci.util.split(val, self.delimiter) -end - -function MultiValue.validate(self, val) - val = (type(val) == "table") and val or {val} - - local result - - for i, value in ipairs(val) do - if luci.util.contains(self.keylist, value) then - result = result and (result .. self.delimiter .. value) or value - end - end - - return result -end - - -StaticList = class(MultiValue) - -function StaticList.__init__(self, ...) - MultiValue.__init__(self, ...) - self.cast = "table" - self.valuelist = self.cfgvalue - - if not self.override_scheme - and self.map:get_scheme(self.section.sectiontype, self.option) then - local vs = self.map:get_scheme(self.section.sectiontype, self.option) - if self.value and vs.values and not self.override_values then - for k, v in pairs(vs.values) do - self:value(k, v) - end - end - end -end - -function StaticList.validate(self, value) - value = (type(value) == "table") and value or {value} - - local valid = {} - for i, v in ipairs(value) do - if luci.util.contains(self.keylist, v) then - table.insert(valid, v) - end - end - return valid -end - - -DynamicList = class(AbstractValue) - -function DynamicList.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/dynlist" - self.cast = "table" - self:reset_values() -end - -function DynamicList.reset_values(self) - self.keylist = {} - self.vallist = {} -end - -function DynamicList.value(self, key, val) - val = val or key - table.insert(self.keylist, tostring(key)) - table.insert(self.vallist, tostring(val)) -end - -function DynamicList.write(self, section, value) - local t = { } - - if type(value) == "table" then - local x - for _, x in ipairs(value) do - if x and #x > 0 then - t[#t+1] = x - end - end - else - t = { value } - end - - if self.cast == "string" then - value = table.concat(t, " ") - else - value = t - end - - return AbstractValue.write(self, section, value) -end - -function DynamicList.cfgvalue(self, section) - local value = AbstractValue.cfgvalue(self, section) - - if type(value) == "string" then - local x - local t = { } - for x in value:gmatch("%S+") do - if #x > 0 then - t[#t+1] = x - end - end - value = t - end - - return value -end - -function DynamicList.formvalue(self, section) - local value = AbstractValue.formvalue(self, section) - - if type(value) == "string" then - if self.cast == "string" then - local x - local t = { } - for x in value:gmatch("%S+") do - t[#t+1] = x - end - value = t - else - value = { value } - end - end - - return value -end - - -DropDown = class(MultiValue) - -function DropDown.__init__(self, ...) - ListValue.__init__(self, ...) - self.template = "cbi/dropdown" - self.delimiter = " " -end - - ---[[ -TextValue - A multi-line value - rows: Rows -]]-- -TextValue = class(AbstractValue) - -function TextValue.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/tvalue" -end - ---[[ -Button -]]-- -Button = class(AbstractValue) - -function Button.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/button" - self.inputstyle = nil - self.rmempty = true - self.unsafeupload = false -end - - -FileUpload = class(AbstractValue) - -function FileUpload.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/upload" - if not self.map.upload_fields then - self.map.upload_fields = { self } - else - self.map.upload_fields[#self.map.upload_fields+1] = self - end -end - -function FileUpload.formcreated(self, section) - if self.unsafeupload then - return AbstractValue.formcreated(self, section) or - self.map:formvalue("cbi.rlf."..section.."."..self.option) or - self.map:formvalue("cbi.rlf."..section.."."..self.option..".x") or - self.map:formvalue("cbid."..self.map.config.."."..section.."."..self.option..".textbox") - else - return AbstractValue.formcreated(self, section) or - self.map:formvalue("cbid."..self.map.config.."."..section.."."..self.option..".textbox") - end -end - -function FileUpload.cfgvalue(self, section) - local val = AbstractValue.cfgvalue(self, section) - if val and fs.access(val) then - return val - end - return nil -end - --- If we have a new value, use it --- otherwise use old value --- deletion should be managed by a separate button object --- unless self.unsafeupload is set in which case if the user --- choose to remove the old file we do so. --- Also, allow to specify (via textbox) a file already on router -function FileUpload.formvalue(self, section) - local val = AbstractValue.formvalue(self, section) - if val then - if self.unsafeupload then - if not self.map:formvalue("cbi.rlf."..section.."."..self.option) and - not self.map:formvalue("cbi.rlf."..section.."."..self.option..".x") - then - return val - end - fs.unlink(val) - self.value = nil - return nil - elseif val ~= "" then - return val - end - end - val = luci.http.formvalue("cbid."..self.map.config.."."..section.."."..self.option..".textbox") - if val == "" then - val = nil - end - if not self.unsafeupload then - if not val then - val = self.map:formvalue("cbi.rlf."..section.."."..self.option) - end - end - return val -end - -function FileUpload.remove(self, section) - if self.unsafeupload then - local val = AbstractValue.formvalue(self, section) - if val and fs.access(val) then fs.unlink(val) end - return AbstractValue.remove(self, section) - else - return nil - end -end - -FileBrowser = class(AbstractValue) - -function FileBrowser.__init__(self, ...) - AbstractValue.__init__(self, ...) - self.template = "cbi/browser" -end diff --git a/luci-base/luasrc/cbi/datatypes.lua b/luci-base/luasrc/cbi/datatypes.lua deleted file mode 100644 index c1cf01f9c..000000000 --- a/luci-base/luasrc/cbi/datatypes.lua +++ /dev/null @@ -1,470 +0,0 @@ --- Copyright 2010 Jo-Philipp Wich --- Copyright 2017 Dan Luedtke --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" -local ip = require "luci.ip" -local math = require "math" -local util = require "luci.util" -local tonumber, tostring, type, unpack, select = tonumber, tostring, type, unpack, select - - -module "luci.cbi.datatypes" - - -_M['or'] = function(v, ...) - local i - for i = 1, select('#', ...), 2 do - local f = select(i, ...) - local a = select(i+1, ...) - if type(f) ~= "function" then - if f == v then - return true - end - i = i - 1 - elseif f(v, unpack(a)) then - return true - end - end - return false -end - -_M['and'] = function(v, ...) - local i - for i = 1, select('#', ...), 2 do - local f = select(i, ...) - local a = select(i+1, ...) - if type(f) ~= "function" then - if f ~= v then - return false - end - i = i - 1 - elseif not f(v, unpack(a)) then - return false - end - end - return true -end - -function neg(v, ...) - return _M['or'](v:gsub("^%s*!%s*", ""), ...) -end - -function list(v, subvalidator, subargs) - if type(subvalidator) ~= "function" then - return false - end - local token - for token in v:gmatch("%S+") do - if not subvalidator(token, unpack(subargs)) then - return false - end - end - return true -end - -function bool(val) - if val == "1" or val == "yes" or val == "on" or val == "true" then - return true - elseif val == "0" or val == "no" or val == "off" or val == "false" then - return true - elseif val == "" or val == nil then - return true - end - - return false -end - -function uinteger(val) - local n = tonumber(val) - if n ~= nil and math.floor(n) == n and n >= 0 then - return true - end - - return false -end - -function integer(val) - local n = tonumber(val) - if n ~= nil and math.floor(n) == n then - return true - end - - return false -end - -function ufloat(val) - local n = tonumber(val) - return ( n ~= nil and n >= 0 ) -end - -function float(val) - return ( tonumber(val) ~= nil ) -end - -function ipaddr(val) - return ip4addr(val) or ip6addr(val) -end - -function ip4addr(val) - if val then - return ip.IPv4(val) and true or false - end - - return false -end - -function ip4prefix(val) - val = tonumber(val) - return ( val and val >= 0 and val <= 32 ) -end - -function ip6addr(val) - if val then - return ip.IPv6(val) and true or false - end - - return false -end - -function ip6prefix(val) - val = tonumber(val) - return ( val and val >= 0 and val <= 128 ) -end - -function cidr(val) - return cidr4(val) or cidr6(val) -end - -function cidr4(val) - local ip, mask = val:match("^([^/]+)/([^/]+)$") - - return ip4addr(ip) and ip4prefix(mask) -end - -function cidr6(val) - local ip, mask = val:match("^([^/]+)/([^/]+)$") - - return ip6addr(ip) and ip6prefix(mask) -end - -function ipnet4(val) - local ip, mask = val:match("^([^/]+)/([^/]+)$") - - return ip4addr(ip) and ip4addr(mask) -end - -function ipnet6(val) - local ip, mask = val:match("^([^/]+)/([^/]+)$") - - return ip6addr(ip) and ip6addr(mask) -end - -function ipmask(val) - return ipmask4(val) or ipmask6(val) -end - -function ipmask4(val) - return cidr4(val) or ipnet4(val) or ip4addr(val) -end - -function ipmask6(val) - return cidr6(val) or ipnet6(val) or ip6addr(val) -end - -function ip6hostid(val) - if val == "eui64" or val == "random" then - return true - else - local addr = ip.IPv6(val) - if addr and addr:prefix() == 128 and addr:lower("::1:0:0:0:0") then - return true - end - end - - return false -end - -function port(val) - val = tonumber(val) - return ( val and val >= 0 and val <= 65535 ) -end - -function portrange(val) - local p1, p2 = val:match("^(%d+)%-(%d+)$") - if p1 and p2 and port(p1) and port(p2) then - return true - else - return port(val) - end -end - -function macaddr(val) - return ip.checkmac(val) and true or false -end - -function hostname(val, strict) - if val and (#val < 254) and ( - val:match("^[a-zA-Z_]+$") or - (val:match("^[a-zA-Z0-9_][a-zA-Z0-9_%-%.]*[a-zA-Z0-9]$") and - val:match("[^0-9%.]")) - ) then - return (not strict or not val:match("^_")) - end - return false -end - -function host(val, ipv4only) - return hostname(val) or ((ipv4only == 1) and ip4addr(val)) or ((not (ipv4only == 1)) and ipaddr(val)) -end - -function network(val) - return uciname(val) or host(val) -end - -function hostport(val, ipv4only) - local h, p = val:match("^([^:]+):([^:]+)$") - return not not (h and p and host(h, ipv4only) and port(p)) -end - -function ip4addrport(val, bracket) - local h, p = val:match("^([^:]+):([^:]+)$") - return (h and p and ip4addr(h) and port(p)) -end - -function ip4addrport(val) - local h, p = val:match("^([^:]+):([^:]+)$") - return (h and p and ip4addr(h) and port(p)) -end - -function ipaddrport(val, bracket) - local h, p = val:match("^([^%[%]:]+):([^:]+)$") - if (h and p and ip4addr(h) and port(p)) then - return true - elseif (bracket == 1) then - h, p = val:match("^%[(.+)%]:([^:]+)$") - if (h and p and ip6addr(h) and port(p)) then - return true - end - end - h, p = val:match("^([^%[%]]+):([^:]+)$") - return (h and p and ip6addr(h) and port(p)) -end - -function wpakey(val) - if #val == 64 then - return (val:match("^[a-fA-F0-9]+$") ~= nil) - else - return (#val >= 8) and (#val <= 63) - end -end - -function wepkey(val) - if val:sub(1, 2) == "s:" then - val = val:sub(3) - end - - if (#val == 10) or (#val == 26) then - return (val:match("^[a-fA-F0-9]+$") ~= nil) - else - return (#val == 5) or (#val == 13) - end -end - -function hexstring(val) - if val then - return (val:match("^[a-fA-F0-9]+$") ~= nil) - end - return false -end - -function hex(val, maxbytes) - maxbytes = tonumber(maxbytes) - if val and maxbytes ~= nil then - return ((val:match("^0x[a-fA-F0-9]+$") ~= nil) and (#val <= 2 + maxbytes * 2)) - end - return false -end - -function base64(val) - if val then - return (val:match("^[a-zA-Z0-9/+]+=?=?$") ~= nil) and (math.fmod(#val, 4) == 0) - end - return false -end - -function string(val) - return true -- Everything qualifies as valid string -end - -function directory(val, seen) - local s = fs.stat(val) - seen = seen or { } - - if s and not seen[s.ino] then - seen[s.ino] = true - if s.type == "dir" then - return true - elseif s.type == "lnk" then - return directory( fs.readlink(val), seen ) - end - end - - return false -end - -function file(val, seen) - local s = fs.stat(val) - seen = seen or { } - - if s and not seen[s.ino] then - seen[s.ino] = true - if s.type == "reg" then - return true - elseif s.type == "lnk" then - return file( fs.readlink(val), seen ) - end - end - - return false -end - -function device(val, seen) - local s = fs.stat(val) - seen = seen or { } - - if s and not seen[s.ino] then - seen[s.ino] = true - if s.type == "chr" or s.type == "blk" then - return true - elseif s.type == "lnk" then - return device( fs.readlink(val), seen ) - end - end - - return false -end - -function uciname(val) - return (val:match("^[a-zA-Z0-9_]+$") ~= nil) -end - -function range(val, min, max) - val = tonumber(val) - min = tonumber(min) - max = tonumber(max) - - if val ~= nil and min ~= nil and max ~= nil then - return ((val >= min) and (val <= max)) - end - - return false -end - -function min(val, min) - val = tonumber(val) - min = tonumber(min) - - if val ~= nil and min ~= nil then - return (val >= min) - end - - return false -end - -function max(val, max) - val = tonumber(val) - max = tonumber(max) - - if val ~= nil and max ~= nil then - return (val <= max) - end - - return false -end - -function rangelength(val, min, max) - val = tostring(val) - min = tonumber(min) - max = tonumber(max) - - if val ~= nil and min ~= nil and max ~= nil then - return ((#val >= min) and (#val <= max)) - end - - return false -end - -function minlength(val, min) - val = tostring(val) - min = tonumber(min) - - if val ~= nil and min ~= nil then - return (#val >= min) - end - - return false -end - -function maxlength(val, max) - val = tostring(val) - max = tonumber(max) - - if val ~= nil and max ~= nil then - return (#val <= max) - end - - return false -end - -function phonedigit(val) - return (val:match("^[0-9%*#!%.]+$") ~= nil) -end - -function timehhmmss(val) - return (val:match("^[0-6][0-9]:[0-6][0-9]:[0-6][0-9]$") ~= nil) -end - -function dateyyyymmdd(val) - if val ~= nil then - yearstr, monthstr, daystr = val:match("^(%d%d%d%d)-(%d%d)-(%d%d)$") - if (yearstr == nil) or (monthstr == nil) or (daystr == nil) then - return false; - end - year = tonumber(yearstr) - month = tonumber(monthstr) - day = tonumber(daystr) - if (year == nil) or (month == nil) or (day == nil) then - return false; - end - - local days_in_month = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 } - - local function is_leap_year(year) - return (year % 4 == 0) and ((year % 100 ~= 0) or (year % 400 == 0)) - end - - function get_days_in_month(month, year) - if (month == 2) and is_leap_year(year) then - return 29 - else - return days_in_month[month] - end - end - if (year < 2015) then - return false - end - if ((month == 0) or (month > 12)) then - return false - end - if ((day == 0) or (day > get_days_in_month(month, year))) then - return false - end - return true - end - return false -end - -function unique(val) - return true -end diff --git a/luci-base/luasrc/ccache.lua b/luci-base/luasrc/ccache.lua deleted file mode 100644 index bcc76e6a7..000000000 --- a/luci-base/luasrc/ccache.lua +++ /dev/null @@ -1,76 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2008 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local io = require "io" -local fs = require "nixio.fs" -local util = require "luci.util" -local nixio = require "nixio" -local debug = require "debug" -local string = require "string" -local package = require "package" - -local type, loadfile = type, loadfile - - -module "luci.ccache" - -function cache_ondemand(...) - if debug.getinfo(1, 'S').source ~= "=?" then - cache_enable(...) - end -end - -function cache_enable(cachepath, mode) - cachepath = cachepath or "/tmp/luci-modulecache" - mode = mode or "r--r--r--" - - local loader = package.loaders[2] - local uid = nixio.getuid() - - if not fs.stat(cachepath) then - fs.mkdir(cachepath) - end - - local function _encode_filename(name) - local encoded = "" - for i=1, #name do - encoded = encoded .. ("%2X" % string.byte(name, i)) - end - return encoded - end - - local function _load_sane(file) - local stat = fs.stat(file) - if stat and stat.uid == uid and stat.modestr == mode then - return loadfile(file) - end - end - - local function _write_sane(file, func) - if nixio.getuid() == uid then - local fp = io.open(file, "w") - if fp then - fp:write(util.get_bytecode(func)) - fp:close() - fs.chmod(file, mode) - end - end - end - - package.loaders[2] = function(mod) - local encoded = cachepath .. "/" .. _encode_filename(mod) - local modcons = _load_sane(encoded) - - if modcons then - return modcons - end - - -- No cachefile - modcons = loader(mod) - if type(modcons) == "function" then - _write_sane(encoded, modcons) - end - return modcons - end -end diff --git a/luci-base/luasrc/config.lua b/luci-base/luasrc/config.lua deleted file mode 100644 index d01153f4f..000000000 --- a/luci-base/luasrc/config.lua +++ /dev/null @@ -1,18 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local util = require "luci.util" -module("luci.config", - function(m) - if pcall(require, "luci.model.uci") then - local config = util.threadlocal() - setmetatable(m, { - __index = function(tbl, key) - if not config[key] then - config[key] = luci.model.uci.cursor():get_all("luci", key) - end - return config[key] - end - }) - end - end) diff --git a/luci-base/luasrc/controller/admin/index.lua b/luci-base/luasrc/controller/admin/index.lua deleted file mode 100644 index b0427d6c0..000000000 --- a/luci-base/luasrc/controller/admin/index.lua +++ /dev/null @@ -1,308 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.admin.index", package.seeall) - -function index() - function toplevel_page(page, preflookup, preftarget) - if preflookup and preftarget then - if lookup(preflookup) then - page.target = preftarget - end - end - - if not page.target then - page.target = firstchild() - end - end - - local uci = require("luci.model.uci").cursor() - - local root = node() - if not root.target then - root.target = alias("admin") - root.index = true - end - - local page = node("admin") - - page.title = _("Administration") - page.order = 10 - page.sysauth = "root" - page.sysauth_authenticator = "htmlauth" - page.ucidata = true - page.index = true - page.target = firstnode() - - -- Empty menu tree to be populated by addons and modules - - page = node("admin", "status") - page.title = _("Status") - page.order = 10 - page.index = true - -- overview is from mod-admin-full - toplevel_page(page, "admin/status/overview", alias("admin", "status", "overview")) - - page = node("admin", "system") - page.title = _("System") - page.order = 20 - page.index = true - -- system/system is from mod-admin-full - toplevel_page(page, "admin/system/system", alias("admin", "system", "system")) - - -- Only used if applications add items - page = node("admin", "vpn") - page.title = _("VPN") - page.order = 30 - page.index = true - toplevel_page(page, false, false) - - -- Only used if applications add items - page = node("admin", "services") - page.title = _("Services") - page.order = 40 - page.index = true - toplevel_page(page, false, false) - - -- Even for mod-admin-full network just uses first submenu item as landing - page = node("admin", "network") - page.title = _("Network") - page.order = 50 - page.index = true - toplevel_page(page, false, false) - - if nixio.fs.access("/etc/config/dhcp") then - page = entry({"admin", "dhcplease_status"}, call("lease_status"), nil) - page.leaf = true - end - - local has_wifi = false - - uci:foreach("wireless", "wifi-device", - function(s) - has_wifi = true - return false - end) - - if has_wifi then - page = entry({"admin", "wireless_assoclist"}, call("wifi_assoclist"), nil) - page.leaf = true - - page = entry({"admin", "wireless_deauth"}, post("wifi_deauth"), nil) - page.leaf = true - end - - page = entry({"admin", "translations"}, call("action_translations"), nil) - page.leaf = true - - page = entry({"admin", "ubus"}, call("action_ubus"), nil) - page.sysauth = false - page.leaf = true - - -- Logout is last - entry({"admin", "logout"}, call("action_logout"), _("Logout"), 999) -end - -function action_logout() - local dsp = require "luci.dispatcher" - local utl = require "luci.util" - local sid = dsp.context.authsession - - if sid then - utl.ubus("session", "destroy", { ubus_rpc_session = sid }) - - luci.http.header("Set-Cookie", "sysauth=%s; expires=%s; path=%s" %{ - '', 'Thu, 01 Jan 1970 01:00:00 GMT', dsp.build_url() - }) - end - - luci.http.redirect(dsp.build_url()) -end - -function action_translations(lang) - local i18n = require "luci.i18n" - local http = require "luci.http" - local fs = require "nixio".fs - - if lang and #lang > 0 then - lang = i18n.setlanguage(lang) - if lang then - local s = fs.stat("%s/base.%s.lmo" %{ i18n.i18ndir, lang }) - if s then - http.header("Cache-Control", "public, max-age=31536000") - http.header("ETag", "%x-%x-%x" %{ s["ino"], s["size"], s["mtime"] }) - end - end - end - - http.prepare_content("application/javascript; charset=utf-8") - http.write("window.TR=") - http.write_json(i18n.dump()) -end - -local function ubus_reply(id, data, code, errmsg) - local reply = { jsonrpc = "2.0", id = id } - if errmsg then - reply.error = { - code = code, - message = errmsg - } - else - reply.result = { code, data } - end - - return reply -end - -local ubus_types = { - nil, - "array", - "object", - "string", - nil, -- INT64 - "number", - nil, -- INT16, - "boolean", - "double" -} - -local function ubus_access(sid, obj, fun) - local res, code = luci.util.ubus("session", "access", { - ubus_rpc_session = sid, - scope = "ubus", - object = obj, - ["function"] = fun - }) - - return (type(res) == "table" and res.access == true) -end - -local function ubus_request(req) - if type(req) ~= "table" or type(req.method) ~= "string" or type(req.params) ~= "table" or - #req.params < 2 or req.jsonrpc ~= "2.0" or req.id == nil then - return ubus_reply(nil, nil, -32600, "Invalid request") - - elseif req.method == "call" then - local sid, obj, fun, arg = - req.params[1], req.params[2], req.params[3], req.params[4] or {} - if type(arg) ~= "table" or arg.ubus_rpc_session ~= nil then - return ubus_reply(req.id, nil, -32602, "Invalid parameters") - end - - if sid == "00000000000000000000000000000000" and luci.dispatcher.context.authsession then - sid = luci.dispatcher.context.authsession - end - - if not ubus_access(sid, obj, fun) then - return ubus_reply(req.id, nil, -32002, "Access denied") - end - - arg.ubus_rpc_session = sid - - local res, code = luci.util.ubus(obj, fun, arg) - return ubus_reply(req.id, res, code or 0) - - elseif req.method == "list" then - if type(params) ~= "table" or #params == 0 then - local objs = { luci.util.ubus() } - return ubus_reply(req.id, objs, 0) - else - local n, rv = nil, {} - for n = 1, #params do - if type(params[n]) ~= "string" then - return ubus_reply(req.id, nil, -32602, "Invalid parameters") - end - - local sig = luci.util.ubus(params[n]) - if sig and type(sig) == "table" then - rv[params[n]] = {} - - local m, p - for m, p in pairs(sig) do - if type(p) == "table" then - rv[params[n]][m] = {} - - local pn, pt - for pn, pt in pairs(p) do - rv[params[n]][m][pn] = ubus_types[pt] or "unknown" - end - end - end - end - end - return ubus_reply(req.id, rv, 0) - end - end - - return ubus_reply(req.id, nil, -32601, "Method not found") -end - -function action_ubus() - local parser = require "luci.jsonc".new() - - luci.http.context.request:setfilehandler(function(_, s) - if not s then - return nil - end - - local ok, err = parser:parse(s) - return (not err or nil) - end) - - luci.http.context.request:content() - - local json = parser:get() - if json == nil or type(json) ~= "table" then - luci.http.prepare_content("application/json") - luci.http.write_json(ubus_reply(nil, nil, -32700, "Parse error")) - return - end - - local response - if #json == 0 then - response = ubus_request(json) - else - response = {} - - local _, request - for _, request in ipairs(json) do - response[_] = ubus_request(request) - end - end - - luci.http.prepare_content("application/json") - luci.http.write_json(response) -end - -function lease_status() - local s = require "luci.tools.status" - - luci.http.prepare_content("application/json") - luci.http.write('[') - luci.http.write_json(s.dhcp_leases()) - luci.http.write(',') - luci.http.write_json(s.dhcp6_leases()) - luci.http.write(']') -end - -function wifi_assoclist() - local s = require "luci.tools.status" - - luci.http.prepare_content("application/json") - luci.http.write_json(s.wifi_assoclist()) -end - -function wifi_deauth() - local iface = luci.http.formvalue("iface") - local bssid = luci.http.formvalue("bssid") - - if iface and bssid then - luci.util.ubus("hostapd.%s" % iface, "del_client", { - addr = bssid, - deauth = true, - reason = 5, - ban_time = 60000 - }) - end - luci.http.status(200, "OK") -end diff --git a/luci-base/luasrc/controller/admin/uci.lua b/luci-base/luasrc/controller/admin/uci.lua deleted file mode 100644 index 6b19c62f8..000000000 --- a/luci-base/luasrc/controller/admin/uci.lua +++ /dev/null @@ -1,96 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2010-2019 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.admin.uci", package.seeall) - -function index() - local redir = luci.http.formvalue("redir", true) - or table.concat(luci.dispatcher.context.request, "/") - - entry({"admin", "uci"}, nil, _("Configuration")) - entry({"admin", "uci", "revert"}, post("action_revert"), nil) - - local node - local authen = function(checkpass, allowed_users) - return "root", luci.http.formvalue("sid") - end - - node = entry({"admin", "uci", "apply_rollback"}, post("action_apply_rollback"), nil) - node.cors = true - node.sysauth_authenticator = authen - - node = entry({"admin", "uci", "apply_unchecked"}, post("action_apply_unchecked"), nil) - node.cors = true - node.sysauth_authenticator = authen - - node = entry({"admin", "uci", "confirm"}, call("action_confirm"), nil) - node.cors = true - node.sysauth = false -end - - -local function ubus_state_to_http(errstr) - local map = { - ["Invalid command"] = 400, - ["Invalid argument"] = 400, - ["Method not found"] = 404, - ["Entry not found"] = 404, - ["No data"] = 204, - ["Permission denied"] = 403, - ["Timeout"] = 504, - ["Not supported"] = 500, - ["Unknown error"] = 500, - ["Connection failed"] = 503 - } - - local code = map[errstr] or 200 - local msg = errstr or "OK" - - luci.http.status(code, msg) - - if code ~= 204 then - luci.http.prepare_content("text/plain") - luci.http.write(msg) - end -end - -function action_apply_rollback() - local uci = require "luci.model.uci" - local token, errstr = uci:apply(true) - if token then - luci.http.prepare_content("application/json") - luci.http.write_json({ token = token }) - else - ubus_state_to_http(errstr) - end -end - -function action_apply_unchecked() - local uci = require "luci.model.uci" - local _, errstr = uci:apply(false) - ubus_state_to_http(errstr) -end - -function action_confirm() - local uci = require "luci.model.uci" - local token = luci.http.formvalue("token") - local _, errstr = uci:confirm(token) - ubus_state_to_http(errstr) -end - -function action_revert() - local uci = require "luci.model.uci" - local changes = uci:changes() - - -- Collect files to be reverted - local _, errstr, r, tbl - for r, tbl in pairs(changes) do - _, errstr = uci:revert(r) - if errstr then - break - end - end - - ubus_state_to_http(errstr or "OK") -end diff --git a/luci-base/luasrc/debug.lua b/luci-base/luasrc/debug.lua deleted file mode 100644 index 8ff1bb698..000000000 --- a/luci-base/luasrc/debug.lua +++ /dev/null @@ -1,37 +0,0 @@ -local debug = require "debug" -local io = require "io" -local collectgarbage, floor = collectgarbage, math.floor - -module "luci.debug" -__file__ = debug.getinfo(1, 'S').source:sub(2) - --- Enables the memory tracer with given flags and returns a function to disable the tracer again -function trap_memtrace(flags, dest) - flags = flags or "clr" - local tracefile = io.open(dest or "/tmp/memtrace", "w") - local peak = 0 - - local function trap(what, line) - local info = debug.getinfo(2, "Sn") - local size = floor(collectgarbage("count")) - if size > peak then - peak = size - end - if tracefile then - tracefile:write( - "[", what, "] ", info.source, ":", (line or "?"), "\t", - (info.namewhat or ""), "\t", - (info.name or ""), "\t", - size, " (", peak, ")\n" - ) - end - end - - debug.sethook(trap, flags) - - return function() - debug.sethook() - tracefile:close() - end -end - diff --git a/luci-base/luasrc/dispatcher.lua b/luci-base/luasrc/dispatcher.lua deleted file mode 100644 index e8106b741..000000000 --- a/luci-base/luasrc/dispatcher.lua +++ /dev/null @@ -1,1040 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2008-2015 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" -local sys = require "luci.sys" -local util = require "luci.util" -local http = require "luci.http" -local nixio = require "nixio", require "nixio.util" - -module("luci.dispatcher", package.seeall) -context = util.threadlocal() -uci = require "luci.model.uci" -i18n = require "luci.i18n" -_M.fs = fs - --- Index table -local index = nil - --- Fastindex -local fi - - -function build_url(...) - local path = {...} - local url = { http.getenv("SCRIPT_NAME") or "" } - - local p - for _, p in ipairs(path) do - if p:match("^[a-zA-Z0-9_%-%.%%/,;]+$") then - url[#url+1] = "/" - url[#url+1] = p - end - end - - if #path == 0 then - url[#url+1] = "/" - end - - return table.concat(url, "") -end - -function _ordered_children(node) - local name, child, children = nil, nil, {} - - for name, child in pairs(node.nodes) do - children[#children+1] = { - name = name, - node = child, - order = child.order or 100 - } - end - - table.sort(children, function(a, b) - if a.order == b.order then - return a.name < b.name - else - return a.order < b.order - end - end) - - return children -end - -function node_visible(node) - if node then - return not ( - (not node.title or #node.title == 0) or - (not node.target or node.hidden == true) or - (type(node.target) == "table" and node.target.type == "firstchild" and - (type(node.nodes) ~= "table" or not next(node.nodes))) - ) - end - return false -end - -function node_childs(node) - local rv = { } - if node then - local _, child - for _, child in ipairs(_ordered_children(node)) do - if node_visible(child.node) then - rv[#rv+1] = child.name - end - end - end - return rv -end - - -function error404(message) - http.status(404, "Not Found") - message = message or "Not Found" - - local function render() - local template = require "luci.template" - template.render("error404") - end - - if not util.copcall(render) then - http.prepare_content("text/plain") - http.write(message) - end - - return false -end - -function error500(message) - util.perror(message) - if not context.template_header_sent then - http.status(500, "Internal Server Error") - http.prepare_content("text/plain") - http.write(message) - else - require("luci.template") - if not util.copcall(luci.template.render, "error500", {message=message}) then - http.prepare_content("text/plain") - http.write(message) - end - end - return false -end - -function httpdispatch(request, prefix) - http.context.request = request - - local r = {} - context.request = r - - local pathinfo = http.urldecode(request:getenv("PATH_INFO") or "", true) - - if prefix then - for _, node in ipairs(prefix) do - r[#r+1] = node - end - end - - local node - for node in pathinfo:gmatch("[^/%z]+") do - r[#r+1] = node - end - - local stat, err = util.coxpcall(function() - dispatch(context.request) - end, error500) - - http.close() - - --context._disable_memtrace() -end - -local function require_post_security(target) - if type(target) == "table" then - if type(target.post) == "table" then - local param_name, required_val, request_val - - for param_name, required_val in pairs(target.post) do - request_val = http.formvalue(param_name) - - if (type(required_val) == "string" and - request_val ~= required_val) or - (required_val == true and request_val == nil) - then - return false - end - end - - return true - end - - return (target.post == true) - end - - return false -end - -function test_post_security() - if http.getenv("REQUEST_METHOD") ~= "POST" then - http.status(405, "Method Not Allowed") - http.header("Allow", "POST") - return false - end - - if http.formvalue("token") ~= context.authtoken then - http.status(403, "Forbidden") - luci.template.render("csrftoken") - return false - end - - return true -end - -local function session_retrieve(sid, allowed_users) - local sdat = util.ubus("session", "get", { ubus_rpc_session = sid }) - - if type(sdat) == "table" and - type(sdat.values) == "table" and - type(sdat.values.token) == "string" and - (not allowed_users or - util.contains(allowed_users, sdat.values.username)) - then - uci:set_session_id(sid) - return sid, sdat.values - end - - return nil, nil -end - -local function session_setup(user, pass, allowed_users) - if util.contains(allowed_users, user) then - local login = util.ubus("session", "login", { - username = user, - password = pass, - timeout = tonumber(luci.config.sauth.sessiontime) - }) - - local rp = context.requestpath - and table.concat(context.requestpath, "/") or "" - - if type(login) == "table" and - type(login.ubus_rpc_session) == "string" - then - util.ubus("session", "set", { - ubus_rpc_session = login.ubus_rpc_session, - values = { token = sys.uniqueid(16) } - }) - - io.stderr:write("luci: accepted login on /%s for %s from %s\n" - %{ rp, user, http.getenv("REMOTE_ADDR") or "?" }) - - return session_retrieve(login.ubus_rpc_session) - end - - io.stderr:write("luci: failed login on /%s for %s from %s\n" - %{ rp, user, http.getenv("REMOTE_ADDR") or "?" }) - end - - return nil, nil -end - -function dispatch(request) - --context._disable_memtrace = require "luci.debug".trap_memtrace("l") - local ctx = context - ctx.path = request - - local conf = require "luci.config" - assert(conf.main, - "/etc/config/luci seems to be corrupt, unable to find section 'main'") - - local i18n = require "luci.i18n" - local lang = conf.main.lang or "auto" - if lang == "auto" then - local aclang = http.getenv("HTTP_ACCEPT_LANGUAGE") or "" - for aclang in aclang:gmatch("[%w_-]+") do - local country, culture = aclang:match("^([a-z][a-z])[_-]([a-zA-Z][a-zA-Z])$") - if country and culture then - local cc = "%s_%s" %{ country, culture:lower() } - if conf.languages[cc] then - lang = cc - break - elseif conf.languages[country] then - lang = country - break - end - elseif conf.languages[aclang] then - lang = aclang - break - end - end - end - if lang == "auto" then - lang = i18n.default - end - i18n.setlanguage(lang) - - local c = ctx.tree - local stat - if not c then - c = createtree() - end - - local track = {} - local args = {} - ctx.args = args - ctx.requestargs = ctx.requestargs or args - local n - local preq = {} - local freq = {} - - for i, s in ipairs(request) do - preq[#preq+1] = s - freq[#freq+1] = s - c = c.nodes[s] - n = i - if not c then - break - end - - util.update(track, c) - - if c.leaf then - break - end - end - - if c and c.leaf then - for j=n+1, #request do - args[#args+1] = request[j] - freq[#freq+1] = request[j] - end - end - - ctx.requestpath = ctx.requestpath or freq - ctx.path = preq - - -- Init template engine - if (c and c.index) or not track.notemplate then - local tpl = require("luci.template") - local media = track.mediaurlbase or luci.config.main.mediaurlbase - if not pcall(tpl.Template, "themes/%s/header" % fs.basename(media)) then - media = nil - for name, theme in pairs(luci.config.themes) do - if name:sub(1,1) ~= "." and pcall(tpl.Template, - "themes/%s/header" % fs.basename(theme)) then - media = theme - end - end - assert(media, "No valid theme found") - end - - local function _ifattr(cond, key, val, noescape) - if cond then - local env = getfenv(3) - local scope = (type(env.self) == "table") and env.self - if type(val) == "table" then - if not next(val) then - return '' - else - val = util.serialize_json(val) - end - end - - val = tostring(val or - (type(env[key]) ~= "function" and env[key]) or - (scope and type(scope[key]) ~= "function" and scope[key]) or "") - - if noescape ~= true then - val = util.pcdata(val) - end - - return string.format(' %s="%s"', tostring(key), val) - else - return '' - end - end - - tpl.context.viewns = setmetatable({ - write = http.write; - include = function(name) tpl.Template(name):render(getfenv(2)) end; - translate = i18n.translate; - translatef = i18n.translatef; - export = function(k, v) if tpl.context.viewns[k] == nil then tpl.context.viewns[k] = v end end; - striptags = util.striptags; - pcdata = util.pcdata; - media = media; - theme = fs.basename(media); - resource = luci.config.main.resourcebase; - ifattr = function(...) return _ifattr(...) end; - attr = function(...) return _ifattr(true, ...) end; - url = build_url; - }, {__index=function(tbl, key) - if key == "controller" then - return build_url() - elseif key == "REQUEST_URI" then - return build_url(unpack(ctx.requestpath)) - elseif key == "FULL_REQUEST_URI" then - local url = { http.getenv("SCRIPT_NAME") or "", http.getenv("PATH_INFO") } - local query = http.getenv("QUERY_STRING") - if query and #query > 0 then - url[#url+1] = "?" - url[#url+1] = query - end - return table.concat(url, "") - elseif key == "token" then - return ctx.authtoken - else - return rawget(tbl, key) or _G[key] - end - end}) - end - - track.dependent = (track.dependent ~= false) - assert(not track.dependent or not track.auto, - "Access Violation\nThe page at '" .. table.concat(request, "/") .. "/' " .. - "has no parent node so the access to this location has been denied.\n" .. - "This is a software bug, please report this message at " .. - "https://github.com/openwrt/luci/issues" - ) - - if track.sysauth and not ctx.authsession then - local authen = track.sysauth_authenticator - local _, sid, sdat, default_user, allowed_users - - if type(authen) == "string" and authen ~= "htmlauth" then - error500("Unsupported authenticator %q configured" % authen) - return - end - - if type(track.sysauth) == "table" then - default_user, allowed_users = nil, track.sysauth - else - default_user, allowed_users = track.sysauth, { track.sysauth } - end - - if type(authen) == "function" then - _, sid = authen(sys.user.checkpasswd, allowed_users) - else - sid = http.getcookie("sysauth") - end - - sid, sdat = session_retrieve(sid, allowed_users) - - if not (sid and sdat) and authen == "htmlauth" then - local user = http.getenv("HTTP_AUTH_USER") - local pass = http.getenv("HTTP_AUTH_PASS") - - if user == nil and pass == nil then - user = http.formvalue("luci_username") - pass = http.formvalue("luci_password") - end - - sid, sdat = session_setup(user, pass, allowed_users) - - if not sid then - local tmpl = require "luci.template" - - context.path = {} - - http.status(403, "Forbidden") - http.header("X-LuCI-Login-Required", "yes") - tmpl.render(track.sysauth_template or "sysauth", { - duser = default_user, - fuser = user - }) - - return - end - - http.header("Set-Cookie", 'sysauth=%s; path=%s; HttpOnly%s' %{ - sid, build_url(), http.getenv("HTTPS") == "on" and "; secure" or "" - }) - http.redirect(build_url(unpack(ctx.requestpath))) - end - - if not sid or not sdat then - http.status(403, "Forbidden") - http.header("X-LuCI-Login-Required", "yes") - return - end - - ctx.authsession = sid - ctx.authtoken = sdat.token - ctx.authuser = sdat.username - end - - if track.cors and http.getenv("REQUEST_METHOD") == "OPTIONS" then - luci.http.status(200, "OK") - luci.http.header("Access-Control-Allow-Origin", http.getenv("HTTP_ORIGIN") or "*") - luci.http.header("Access-Control-Allow-Methods", "GET, POST, OPTIONS") - return - end - - if c and require_post_security(c.target) then - if not test_post_security(c) then - return - end - end - - if track.setgroup then - sys.process.setgroup(track.setgroup) - end - - if track.setuser then - sys.process.setuser(track.setuser) - end - - local target = nil - if c then - if type(c.target) == "function" then - target = c.target - elseif type(c.target) == "table" then - target = c.target.target - end - end - - if c and (c.index or type(target) == "function") then - ctx.dispatched = c - ctx.requested = ctx.requested or ctx.dispatched - end - - if c and c.index then - local tpl = require "luci.template" - - if util.copcall(tpl.render, "indexer", {}) then - return true - end - end - - if type(target) == "function" then - util.copcall(function() - local oldenv = getfenv(target) - local module = require(c.module) - local env = setmetatable({}, {__index= - - function(tbl, key) - return rawget(tbl, key) or module[key] or oldenv[key] - end}) - - setfenv(target, env) - end) - - local ok, err - if type(c.target) == "table" then - ok, err = util.copcall(target, c.target, unpack(args)) - else - ok, err = util.copcall(target, unpack(args)) - end - if not ok then - error500("Failed to execute " .. (type(c.target) == "function" and "function" or c.target.type or "unknown") .. - " dispatcher target for entry '/" .. table.concat(request, "/") .. "'.\n" .. - "The called action terminated with an exception:\n" .. tostring(err or "(unknown)")) - end - else - local root = node() - if not root or not root.target then - error404("No root node was registered, this usually happens if no module was installed.\n" .. - "Install luci-mod-admin-full and retry. " .. - "If the module is already installed, try removing the /tmp/luci-indexcache file.") - else - error404("No page is registered at '/" .. table.concat(request, "/") .. "'.\n" .. - "If this url belongs to an extension, make sure it is properly installed.\n" .. - "If the extension was recently installed, try removing the /tmp/luci-indexcache file.") - end - end -end - -function createindex() - local controllers = { } - local base = "%s/controller/" % util.libpath() - local _, path - - for path in (fs.glob("%s*.lua" % base) or function() end) do - controllers[#controllers+1] = path - end - - for path in (fs.glob("%s*/*.lua" % base) or function() end) do - controllers[#controllers+1] = path - end - - if indexcache then - local cachedate = fs.stat(indexcache, "mtime") - if cachedate then - local realdate = 0 - for _, obj in ipairs(controllers) do - local omtime = fs.stat(obj, "mtime") - realdate = (omtime and omtime > realdate) and omtime or realdate - end - - if cachedate > realdate and sys.process.info("uid") == 0 then - assert( - sys.process.info("uid") == fs.stat(indexcache, "uid") - and fs.stat(indexcache, "modestr") == "rw-------", - "Fatal: Indexcache is not sane!" - ) - - index = loadfile(indexcache)() - return index - end - end - end - - index = {} - - for _, path in ipairs(controllers) do - local modname = "luci.controller." .. path:sub(#base+1, #path-4):gsub("/", ".") - local mod = require(modname) - assert(mod ~= true, - "Invalid controller file found\n" .. - "The file '" .. path .. "' contains an invalid module line.\n" .. - "Please verify whether the module name is set to '" .. modname .. - "' - It must correspond to the file path!") - - local idx = mod.index - assert(type(idx) == "function", - "Invalid controller file found\n" .. - "The file '" .. path .. "' contains no index() function.\n" .. - "Please make sure that the controller contains a valid " .. - "index function and verify the spelling!") - - index[modname] = idx - end - - if indexcache then - local f = nixio.open(indexcache, "w", 600) - f:writeall(util.get_bytecode(index)) - f:close() - end -end - --- Build the index before if it does not exist yet. -function createtree() - if not index then - createindex() - end - - local ctx = context - local tree = {nodes={}, inreq=true} - - ctx.treecache = setmetatable({}, {__mode="v"}) - ctx.tree = tree - - local scope = setmetatable({}, {__index = luci.dispatcher}) - - for k, v in pairs(index) do - scope._NAME = k - setfenv(v, scope) - v() - end - - return tree -end - -function assign(path, clone, title, order) - local obj = node(unpack(path)) - obj.nodes = nil - obj.module = nil - - obj.title = title - obj.order = order - - setmetatable(obj, {__index = _create_node(clone)}) - - return obj -end - -function entry(path, target, title, order) - local c = node(unpack(path)) - - c.target = target - c.title = title - c.order = order - c.module = getfenv(2)._NAME - - return c -end - --- enabling the node. -function get(...) - return _create_node({...}) -end - -function node(...) - local c = _create_node({...}) - - c.module = getfenv(2)._NAME - c.auto = nil - - return c -end - -function lookup(...) - local i, path = nil, {} - for i = 1, select('#', ...) do - local name, arg = nil, tostring(select(i, ...)) - for name in arg:gmatch("[^/]+") do - path[#path+1] = name - end - end - - for i = #path, 1, -1 do - local node = context.treecache[table.concat(path, ".", 1, i)] - if node and (i == #path or node.leaf) then - return node, build_url(unpack(path)) - end - end -end - -function _create_node(path) - if #path == 0 then - return context.tree - end - - local name = table.concat(path, ".") - local c = context.treecache[name] - - if not c then - local last = table.remove(path) - local parent = _create_node(path) - - c = {nodes={}, auto=true, inreq=true} - - local _, n - for _, n in ipairs(path) do - if context.path[_] ~= n then - c.inreq = false - break - end - end - - c.inreq = c.inreq and (context.path[#path + 1] == last) - - parent.nodes[last] = c - context.treecache[name] = c - end - - return c -end - --- Subdispatchers -- - -function _find_eligible_node(root, prefix, deep, types, descend) - local children = _ordered_children(root) - - if not root.leaf and deep ~= nil then - local sub_path = { unpack(prefix) } - - if deep == false then - deep = nil - end - - local _, child - for _, child in ipairs(children) do - sub_path[#prefix+1] = child.name - - local res_path = _find_eligible_node(child.node, sub_path, - deep, types, true) - - if res_path then - return res_path - end - end - end - - if descend and - (not types or - (type(root.target) == "table" and - util.contains(types, root.target.type))) - then - return prefix - end -end - -function _find_node(recurse, types) - local path = { unpack(context.path) } - local name = table.concat(path, ".") - local node = context.treecache[name] - - path = _find_eligible_node(node, path, recurse, types) - - if path then - dispatch(path) - else - require "luci.template".render("empty_node_placeholder") - end -end - -function _firstchild() - return _find_node(false, nil) -end - -function firstchild() - return { type = "firstchild", target = _firstchild } -end - -function _firstnode() - return _find_node(true, { "cbi", "form", "template", "arcombine" }) -end - -function firstnode() - return { type = "firstnode", target = _firstnode } -end - -function alias(...) - local req = {...} - return function(...) - for _, r in ipairs({...}) do - req[#req+1] = r - end - - dispatch(req) - end -end - -function rewrite(n, ...) - local req = {...} - return function(...) - local dispatched = util.clone(context.dispatched) - - for i=1,n do - table.remove(dispatched, 1) - end - - for i, r in ipairs(req) do - table.insert(dispatched, i, r) - end - - for _, r in ipairs({...}) do - dispatched[#dispatched+1] = r - end - - dispatch(dispatched) - end -end - - -local function _call(self, ...) - local func = getfenv()[self.name] - assert(func ~= nil, - 'Cannot resolve function "' .. self.name .. '". Is it misspelled or local?') - - assert(type(func) == "function", - 'The symbol "' .. self.name .. '" does not refer to a function but data ' .. - 'of type "' .. type(func) .. '".') - - if #self.argv > 0 then - return func(unpack(self.argv), ...) - else - return func(...) - end -end - -function call(name, ...) - return {type = "call", argv = {...}, name = name, target = _call} -end - -function post_on(params, name, ...) - return { - type = "call", - post = params, - argv = { ... }, - name = name, - target = _call - } -end - -function post(...) - return post_on(true, ...) -end - - -local _template = function(self, ...) - require "luci.template".render(self.view) -end - -function template(name) - return {type = "template", view = name, target = _template} -end - - -local _view = function(self, ...) - require "luci.template".render("view", { view = self.view }) -end - -function view(name) - return {type = "view", view = name, target = _view} -end - - -local function _cbi(self, ...) - local cbi = require "luci.cbi" - local tpl = require "luci.template" - local http = require "luci.http" - - local config = self.config or {} - local maps = cbi.load(self.model, ...) - - local state = nil - - local i, res - for i, res in ipairs(maps) do - if util.instanceof(res, cbi.SimpleForm) then - io.stderr:write("Model %s returns SimpleForm but is dispatched via cbi(),\n" - % self.model) - - io.stderr:write("please change %s to use the form() action instead.\n" - % table.concat(context.request, "/")) - end - - res.flow = config - local cstate = res:parse() - if cstate and (not state or cstate < state) then - state = cstate - end - end - - local function _resolve_path(path) - return type(path) == "table" and build_url(unpack(path)) or path - end - - if config.on_valid_to and state and state > 0 and state < 2 then - http.redirect(_resolve_path(config.on_valid_to)) - return - end - - if config.on_changed_to and state and state > 1 then - http.redirect(_resolve_path(config.on_changed_to)) - return - end - - if config.on_success_to and state and state > 0 then - http.redirect(_resolve_path(config.on_success_to)) - return - end - - if config.state_handler then - if not config.state_handler(state, maps) then - return - end - end - - http.header("X-CBI-State", state or 0) - - if not config.noheader then - tpl.render("cbi/header", {state = state}) - end - - local redirect - local messages - local applymap = false - local pageaction = true - local parsechain = { } - - for i, res in ipairs(maps) do - if res.apply_needed and res.parsechain then - local c - for _, c in ipairs(res.parsechain) do - parsechain[#parsechain+1] = c - end - applymap = true - end - - if res.redirect then - redirect = redirect or res.redirect - end - - if res.pageaction == false then - pageaction = false - end - - if res.message then - messages = messages or { } - messages[#messages+1] = res.message - end - end - - for i, res in ipairs(maps) do - res:render({ - firstmap = (i == 1), - redirect = redirect, - messages = messages, - pageaction = pageaction, - parsechain = parsechain - }) - end - - if not config.nofooter then - tpl.render("cbi/footer", { - flow = config, - pageaction = pageaction, - redirect = redirect, - state = state, - autoapply = config.autoapply, - trigger_apply = applymap - }) - end -end - -function cbi(model, config) - return { - type = "cbi", - post = { ["cbi.submit"] = true }, - config = config, - model = model, - target = _cbi - } -end - - -local function _arcombine(self, ...) - local argv = {...} - local target = #argv > 0 and self.targets[2] or self.targets[1] - setfenv(target.target, self.env) - target:target(unpack(argv)) -end - -function arcombine(trg1, trg2) - return {type = "arcombine", env = getfenv(), target = _arcombine, targets = {trg1, trg2}} -end - - -local function _form(self, ...) - local cbi = require "luci.cbi" - local tpl = require "luci.template" - local http = require "luci.http" - - local maps = luci.cbi.load(self.model, ...) - local state = nil - - local i, res - for i, res in ipairs(maps) do - local cstate = res:parse() - if cstate and (not state or cstate < state) then - state = cstate - end - end - - http.header("X-CBI-State", state or 0) - tpl.render("header") - for i, res in ipairs(maps) do - res:render() - end - tpl.render("footer") -end - -function form(model) - return { - type = "cbi", - post = { ["cbi.submit"] = true }, - model = model, - target = _form - } -end - -translate = i18n.translate - --- This function does not actually translate the given argument but --- is used by build/i18n-scan.pl to find translatable entries. -function _(text) - return text -end diff --git a/luci-base/luasrc/dispatcher.luadoc b/luci-base/luasrc/dispatcher.luadoc deleted file mode 100644 index a77f8d8b0..000000000 --- a/luci-base/luasrc/dispatcher.luadoc +++ /dev/null @@ -1,220 +0,0 @@ ----[[ -LuCI web dispatcher. -]] -module "luci.dispatcher" - ----[[ -Build the URL relative to the server webroot from given virtual path. - -@class function -@name build_url -@param ... Virtual path -@return Relative URL -]] - ----[[ -Check whether a dispatch node shall be visible - -@class function -@name node_visible -@param node Dispatch node -@return Boolean indicating whether the node should be visible -]] - ----[[ -Return a sorted table of visible children within a given node - -@class function -@name node_childs -@param node Dispatch node -@return Ordered table of child node names -]] - ----[[ -Send a 404 error code and render the "error404" template if available. - -@class function -@name error404 -@param message Custom error message (optional) -@return false -]] - ----[[ -Send a 500 error code and render the "error500" template if available. - -@class function -@name error500 -@param message Custom error message (optional)# -@return false -]] - ----[[ -Dispatch an HTTP request. - -@class function -@name httpdispatch -@param request LuCI HTTP Request object -]] - ----[[ -Dispatches a LuCI virtual path. - -@class function -@name dispatch -@param request Virtual path -]] - ----[[ -Generate the dispatching index using the native file-cache based strategy. - - -@class function -@name createindex -]] - ----[[ -Create the dispatching tree from the index. - -Build the index before if it does not exist yet. - -@class function -@name createtree -]] - ----[[ -Clone a node of the dispatching tree to another position. - -@class function -@name assign -@param path Virtual path destination -@param clone Virtual path source -@param title Destination node title (optional) -@param order Destination node order value (optional) -@return Dispatching tree node -]] - ----[[ -Create a new dispatching node and define common parameters. - -@class function -@name entry -@param path Virtual path -@param target Target function to call when dispatched. -@param title Destination node title -@param order Destination node order value (optional) -@return Dispatching tree node -]] - ----[[ -Fetch or create a dispatching node without setting the target module or -enabling the node. - -@class function -@name get -@param ... Virtual path -@return Dispatching tree node -]] - ----[[ -Fetch or create a new dispatching node. - -@class function -@name node -@param ... Virtual path -@return Dispatching tree node -]] - ----[[ -Lookup node in dispatching tree. - -@class function -@name lookup -@param ... Virtual path -@return Node object, canonical url or nil if the path was not found. -]] - ----[[ -Alias the first (lowest order) page automatically - - -@class function -@name firstchild -]] - ----[[ -Create a redirect to another dispatching node. - -@class function -@name alias -@param ... Virtual path destination -]] - ----[[ -Rewrite the first x path values of the request. - -@class function -@name rewrite -@param n Number of path values to replace -@param ... Virtual path to replace removed path values with -]] - ----[[ -Create a function-call dispatching target. - -@class function -@name call -@param name Target function of local controller -@param ... Additional parameters passed to the function -]] - ----[[ -Create a template render dispatching target. - -@class function -@name template -@param name Template to be rendered -]] - ----[[ -Create a CBI model dispatching target. - -@class function -@name cbi -@param model CBI model to be rendered -]] - ----[[ -Create a combined dispatching target for non argv and argv requests. - -@class function -@name arcombine -@param trg1 Overview Target -@param trg2 Detail Target -]] - ----[[ -Create a CBI form model dispatching target. - -@class function -@name form -@param model CBI form model tpo be rendered -]] - ----[[ -Access the luci.i18n translate() api. - -@class function -@name translate -@param text Text to translate -]] - ----[[ -No-op function used to mark translation entries for menu labels. - -This function does not actually translate the given argument but -is used by build/i18n-scan.pl to find translatable entries. - -@class function -@name _ -]] - diff --git a/luci-base/luasrc/http.lua b/luci-base/luasrc/http.lua deleted file mode 100644 index 20b55f285..000000000 --- a/luci-base/luasrc/http.lua +++ /dev/null @@ -1,554 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2010-2018 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local util = require "luci.util" -local coroutine = require "coroutine" -local table = require "table" -local lhttp = require "lucihttp" -local nixio = require "nixio" -local ltn12 = require "luci.ltn12" - -local table, ipairs, pairs, type, tostring, tonumber, error = - table, ipairs, pairs, type, tostring, tonumber, error - -module "luci.http" - -HTTP_MAX_CONTENT = 1024*100 -- 100 kB maximum content size - -context = util.threadlocal() - -Request = util.class() -function Request.__init__(self, env, sourcein, sinkerr) - self.input = sourcein - self.error = sinkerr - - - -- File handler nil by default to let .content() work - self.filehandler = nil - - -- HTTP-Message table - self.message = { - env = env, - headers = {}, - params = urldecode_params(env.QUERY_STRING or ""), - } - - self.parsed_input = false -end - -function Request.formvalue(self, name, noparse) - if not noparse and not self.parsed_input then - self:_parse_input() - end - - if name then - return self.message.params[name] - else - return self.message.params - end -end - -function Request.formvaluetable(self, prefix) - local vals = {} - prefix = prefix and prefix .. "." or "." - - if not self.parsed_input then - self:_parse_input() - end - - local void = self.message.params[nil] - for k, v in pairs(self.message.params) do - if k:find(prefix, 1, true) == 1 then - vals[k:sub(#prefix + 1)] = tostring(v) - end - end - - return vals -end - -function Request.content(self) - if not self.parsed_input then - self:_parse_input() - end - - return self.message.content, self.message.content_length -end - -function Request.getcookie(self, name) - return lhttp.header_attribute("cookie; " .. (self:getenv("HTTP_COOKIE") or ""), name) -end - -function Request.getenv(self, name) - if name then - return self.message.env[name] - else - return self.message.env - end -end - -function Request.setfilehandler(self, callback) - self.filehandler = callback - - if not self.parsed_input then - return - end - - -- If input has already been parsed then uploads are stored as unlinked - -- temporary files pointed to by open file handles in the parameter - -- value table. Loop all params, and invoke the file callback for any - -- param with an open file handle. - local name, value - for name, value in pairs(self.message.params) do - if type(value) == "table" then - while value.fd do - local data = value.fd:read(1024) - local eof = (not data or data == "") - - callback(value, data, eof) - - if eof then - value.fd:close() - value.fd = nil - end - end - end - end -end - -function Request._parse_input(self) - parse_message_body( - self.input, - self.message, - self.filehandler - ) - self.parsed_input = true -end - -function close() - if not context.eoh then - context.eoh = true - coroutine.yield(3) - end - - if not context.closed then - context.closed = true - coroutine.yield(5) - end -end - -function content() - return context.request:content() -end - -function formvalue(name, noparse) - return context.request:formvalue(name, noparse) -end - -function formvaluetable(prefix) - return context.request:formvaluetable(prefix) -end - -function getcookie(name) - return context.request:getcookie(name) -end - --- or the environment table itself. -function getenv(name) - return context.request:getenv(name) -end - -function setfilehandler(callback) - return context.request:setfilehandler(callback) -end - -function header(key, value) - if not context.headers then - context.headers = {} - end - context.headers[key:lower()] = value - coroutine.yield(2, key, value) -end - -function prepare_content(mime) - if not context.headers or not context.headers["content-type"] then - if mime == "application/xhtml+xml" then - if not getenv("HTTP_ACCEPT") or - not getenv("HTTP_ACCEPT"):find("application/xhtml+xml", nil, true) then - mime = "text/html; charset=UTF-8" - end - header("Vary", "Accept") - end - header("Content-Type", mime) - end -end - -function source() - return context.request.input -end - -function status(code, message) - code = code or 200 - message = message or "OK" - context.status = code - coroutine.yield(1, code, message) -end - --- This function is as a valid LTN12 sink. --- If the content chunk is nil this function will automatically invoke close. -function write(content, src_err) - if not content then - if src_err then - error(src_err) - else - close() - end - return true - elseif #content == 0 then - return true - else - if not context.eoh then - if not context.status then - status() - end - if not context.headers or not context.headers["content-type"] then - header("Content-Type", "text/html; charset=utf-8") - end - if not context.headers["cache-control"] then - header("Cache-Control", "no-cache") - header("Expires", "0") - end - if not context.headers["x-frame-options"] then - header("X-Frame-Options", "SAMEORIGIN") - end - if not context.headers["x-xss-protection"] then - header("X-XSS-Protection", "1; mode=block") - end - if not context.headers["x-content-type-options"] then - header("X-Content-Type-Options", "nosniff") - end - - context.eoh = true - coroutine.yield(3) - end - coroutine.yield(4, content) - return true - end -end - -function splice(fd, size) - coroutine.yield(6, fd, size) -end - -function redirect(url) - if url == "" then url = "/" end - status(302, "Found") - header("Location", url) - close() -end - -function build_querystring(q) - local s, n, k, v = {}, 1, nil, nil - - for k, v in pairs(q) do - s[n+0] = (n == 1) and "?" or "&" - s[n+1] = util.urlencode(k) - s[n+2] = "=" - s[n+3] = util.urlencode(v) - n = n + 4 - end - - return table.concat(s, "") -end - -urldecode = util.urldecode - -urlencode = util.urlencode - -function write_json(x) - util.serialize_json(x, write) -end - --- from given url or string. Returns a table with urldecoded values. --- Simple parameters are stored as string values associated with the parameter --- name within the table. Parameters with multiple values are stored as array --- containing the corresponding values. -function urldecode_params(url, tbl) - local parser, name - local params = tbl or { } - - parser = lhttp.urlencoded_parser(function (what, buffer, length) - if what == parser.TUPLE then - name, value = nil, nil - elseif what == parser.NAME then - name = lhttp.urldecode(buffer) - elseif what == parser.VALUE and name then - params[name] = lhttp.urldecode(buffer) or "" - end - - return true - end) - - if parser then - parser:parse((url or ""):match("[^?]*$")) - parser:parse(nil) - end - - return params -end - --- separated by "&". Tables are encoded as parameters with multiple values by --- repeating the parameter name with each value. -function urlencode_params(tbl) - local k, v - local n, enc = 1, {} - for k, v in pairs(tbl) do - if type(v) == "table" then - local i, v2 - for i, v2 in ipairs(v) do - if enc[1] then - enc[n] = "&" - n = n + 1 - end - - enc[n+0] = lhttp.urlencode(k) - enc[n+1] = "=" - enc[n+2] = lhttp.urlencode(v2) - n = n + 3 - end - else - if enc[1] then - enc[n] = "&" - n = n + 1 - end - - enc[n+0] = lhttp.urlencode(k) - enc[n+1] = "=" - enc[n+2] = lhttp.urlencode(v) - n = n + 3 - end - end - - return table.concat(enc, "") -end - --- Content-Type. Stores all extracted data associated with its parameter name --- in the params table within the given message object. Multiple parameter --- values are stored as tables, ordinary ones as strings. --- If an optional file callback function is given then it is fed with the --- file contents chunk by chunk and only the extracted file name is stored --- within the params table. The callback function will be called subsequently --- with three arguments: --- o Table containing decoded (name, file) and raw (headers) mime header data --- o String value containing a chunk of the file data --- o Boolean which indicates whether the current chunk is the last one (eof) -function mimedecode_message_body(src, msg, file_cb) - local parser, header, field - local len, maxlen = 0, tonumber(msg.env.CONTENT_LENGTH or nil) - - parser, err = lhttp.multipart_parser(msg.env.CONTENT_TYPE, function (what, buffer, length) - if what == parser.PART_INIT then - field = { } - - elseif what == parser.HEADER_NAME then - header = buffer:lower() - - elseif what == parser.HEADER_VALUE and header then - if header:lower() == "content-disposition" and - lhttp.header_attribute(buffer, nil) == "form-data" - then - field.name = lhttp.header_attribute(buffer, "name") - field.file = lhttp.header_attribute(buffer, "filename") - field[1] = field.file - end - - if field.headers then - field.headers[header] = buffer - else - field.headers = { [header] = buffer } - end - - elseif what == parser.PART_BEGIN then - return not field.file - - elseif what == parser.PART_DATA and field.name and length > 0 then - if field.file then - if file_cb then - file_cb(field, buffer, false) - msg.params[field.name] = msg.params[field.name] or field - else - if not field.fd then - field.fd = nixio.mkstemp(field.name) - end - - if field.fd then - field.fd:write(buffer) - msg.params[field.name] = msg.params[field.name] or field - end - end - else - field.value = buffer - end - - elseif what == parser.PART_END and field.name then - if field.file and msg.params[field.name] then - if file_cb then - file_cb(field, "", true) - elseif field.fd then - field.fd:seek(0, "set") - end - else - local val = msg.params[field.name] - - if type(val) == "table" then - val[#val+1] = field.value or "" - elseif val ~= nil then - msg.params[field.name] = { val, field.value or "" } - else - msg.params[field.name] = field.value or "" - end - end - - field = nil - - elseif what == parser.ERROR then - err = buffer - end - - return true - end, HTTP_MAX_CONTENT) - - return ltn12.pump.all(src, function (chunk) - len = len + (chunk and #chunk or 0) - - if maxlen and len > maxlen + 2 then - return nil, "Message body size exceeds Content-Length" - end - - if not parser or not parser:parse(chunk) then - return nil, err - end - - return true - end) -end - --- Content-Type. Stores all extracted data associated with its parameter name --- in the params table within the given message object. Multiple parameter --- values are stored as tables, ordinary ones as strings. -function urldecode_message_body(src, msg) - local err, name, value, parser - local len, maxlen = 0, tonumber(msg.env.CONTENT_LENGTH or nil) - - parser = lhttp.urlencoded_parser(function (what, buffer, length) - if what == parser.TUPLE then - name, value = nil, nil - elseif what == parser.NAME then - name = lhttp.urldecode(buffer, lhttp.DECODE_PLUS) - elseif what == parser.VALUE and name then - local val = msg.params[name] - - if type(val) == "table" then - val[#val+1] = lhttp.urldecode(buffer, lhttp.DECODE_PLUS) or "" - elseif val ~= nil then - msg.params[name] = { val, lhttp.urldecode(buffer, lhttp.DECODE_PLUS) or "" } - else - msg.params[name] = lhttp.urldecode(buffer, lhttp.DECODE_PLUS) or "" - end - elseif what == parser.ERROR then - err = buffer - end - - return true - end, HTTP_MAX_CONTENT) - - return ltn12.pump.all(src, function (chunk) - len = len + (chunk and #chunk or 0) - - if maxlen and len > maxlen + 2 then - return nil, "Message body size exceeds Content-Length" - elseif len > HTTP_MAX_CONTENT then - return nil, "Message body size exceeds maximum allowed length" - end - - if not parser or not parser:parse(chunk) then - return nil, err - end - - return true - end) -end - --- This function will examine the Content-Type within the given message object --- to select the appropriate content decoder. --- Currently the application/x-www-urlencoded and application/form-data --- mime types are supported. If the encountered content encoding can't be --- handled then the whole message body will be stored unaltered as "content" --- property within the given message object. -function parse_message_body(src, msg, filecb) - if msg.env.CONTENT_LENGTH or msg.env.REQUEST_METHOD == "POST" then - local ctype = lhttp.header_attribute(msg.env.CONTENT_TYPE, nil) - - -- Is it multipart/mime ? - if ctype == "multipart/form-data" then - return mimedecode_message_body(src, msg, filecb) - - -- Is it application/x-www-form-urlencoded ? - elseif ctype == "application/x-www-form-urlencoded" then - return urldecode_message_body(src, msg) - - end - - -- Unhandled encoding - -- If a file callback is given then feed it chunk by chunk, else - -- store whole buffer in message.content - local sink - - -- If we have a file callback then feed it - if type(filecb) == "function" then - local meta = { - name = "raw", - encoding = msg.env.CONTENT_TYPE - } - sink = function( chunk ) - if chunk then - return filecb(meta, chunk, false) - else - return filecb(meta, nil, true) - end - end - -- ... else append to .content - else - msg.content = "" - msg.content_length = 0 - - sink = function( chunk ) - if chunk then - if ( msg.content_length + #chunk ) <= HTTP_MAX_CONTENT then - msg.content = msg.content .. chunk - msg.content_length = msg.content_length + #chunk - return true - else - return nil, "POST data exceeds maximum allowed length" - end - end - return true - end - end - - -- Pump data... - while true do - local ok, err = ltn12.pump.step( src, sink ) - - if not ok and err then - return nil, err - elseif not ok then -- eof - return true - end - end - - return true - end - - return false -end diff --git a/luci-base/luasrc/http.luadoc b/luci-base/luasrc/http.luadoc deleted file mode 100644 index 8f6f380d8..000000000 --- a/luci-base/luasrc/http.luadoc +++ /dev/null @@ -1,260 +0,0 @@ ----[[ -LuCI Web Framework high-level HTTP functions. -]] -module "luci.http" - ----[[ -Close the HTTP-Connection. - -@class function -@name close -]] - ----[[ -Return the request content if the request was of unknown type. - -@class function -@name content -@return HTTP request body -@return HTTP request body length -]] - ----[[ -Get a certain HTTP input value or a table of all input values. - -@class function -@name formvalue -@param name Name of the GET or POST variable to fetch -@param noparse Don't parse POST data before getting the value -@return HTTP input value or table of all input value -]] - ----[[ -Get a table of all HTTP input values with a certain prefix. - -@class function -@name formvaluetable -@param prefix Prefix -@return Table of all HTTP input values with given prefix -]] - ----[[ -Get the value of a certain HTTP-Cookie. - -@class function -@name getcookie -@param name Cookie Name -@return String containing cookie data -]] - ----[[ -Get the value of a certain HTTP environment variable -or the environment table itself. - -@class function -@name getenv -@param name Environment variable -@return HTTP environment value or environment table -]] - ----[[ -Set a handler function for incoming user file uploads. - -@class function -@name setfilehandler -@param callback Handler function -]] - ----[[ -Send a HTTP-Header. - -@class function -@name header -@param key Header key -@param value Header value -]] - ----[[ -Set the mime type of following content data. - -@class function -@name prepare_content -@param mime Mimetype of following content -]] - ----[[ -Get the RAW HTTP input source - -@class function -@name source -@return HTTP LTN12 source -]] - ----[[ -Set the HTTP status code and status message. - -@class function -@name status -@param code Status code -@param message Status message -]] - ----[[ -Send a chunk of content data to the client. - -This function is as a valid LTN12 sink. -If the content chunk is nil this function will automatically invoke close. - -@class function -@name write -@param content Content chunk -@param src_err Error object from source (optional) -@see close -]] - ----[[ -Splice data from a filedescriptor to the client. - -@class function -@name splice -@param fp File descriptor -@param size Bytes to splice (optional) -]] - ----[[ -Redirects the client to a new URL and closes the connection. - -@class function -@name redirect -@param url Target URL -]] - ----[[ -Create a querystring out of a table of key - value pairs. - -@class function -@name build_querystring -@param table Query string source table -@return Encoded HTTP query string -]] - ----[[ -Return the URL-decoded equivalent of a string. - -@class function -@name urldecode -@param str URL-encoded string -@param no_plus Don't decode + to " " -@return URL-decoded string -@see urlencode -]] - ----[[ -Return the URL-encoded equivalent of a string. - -@class function -@name urlencode -@param str Source string -@return URL-encoded string -@see urldecode -]] - ----[[ -Send the given data as JSON encoded string. - -@class function -@name write_json -@param data Data to send -]] - ----[[ -Extract and split urlencoded data pairs, separated bei either "&" or ";" -from given url or string. Returns a table with urldecoded values. - -Simple parameters are stored as string values associated with the parameter -name within the table. Parameters with multiple values are stored as array -containing the corresponding values. - -@class function -@name urldecode_params -@param url The url or string which contains x-www-urlencoded form data -@param tbl Use the given table for storing values (optional) -@return Table containing the urldecoded parameters -@see urlencode_params -]] - ----[[ -Encode each key-value-pair in given table to x-www-urlencoded format, -separated by "&". - -Tables are encoded as parameters with multiple values by repeating the -parameter name with each value. - -@class function -@name urlencode_params -@param tbl Table with the values -@return String containing encoded values -@see urldecode_params -]] - ----[[ -Decode a mime encoded http message body with multipart/form-data Content-Type. - -Stores all extracted data associated with its parameter name -in the params table within the given message object. Multiple parameter -values are stored as tables, ordinary ones as strings. - -If an optional file callback function is given then it is fed with the -file contents chunk by chunk and only the extracted file name is stored -within the params table. The callback function will be called subsequently -with three arguments: - o Table containing decoded (name, file) and raw (headers) mime header data - o String value containing a chunk of the file data - o Boolean which indicates whether the current chunk is the last one (eof) - -@class function -@name mimedecode_message_body -@param src Ltn12 source function -@param msg HTTP message object -@param filecb File callback function (optional) -@return Value indicating successful operation (not nil means "ok") -@return String containing the error if unsuccessful -@see parse_message_header -]] - ----[[ -Decode an urlencoded http message body with application/x-www-urlencoded -Content-Type. - -Stores all extracted data associated with its parameter name in the params -table within the given message object. Multiple parameter values are stored -as tables, ordinary ones as strings. - -@class function -@name urldecode_message_body -@param src Ltn12 source function -@param msg HTTP message object -@return Value indicating successful operation (not nil means "ok") -@return String containing the error if unsuccessful -@see parse_message_header -]] - ----[[ -Try to extract and decode a http message body from the given ltn12 source. -This function will examine the Content-Type within the given message object -to select the appropriate content decoder. - -Currently the application/x-www-urlencoded and application/form-data -mime types are supported. If the encountered content encoding can't be -handled then the whole message body will be stored unaltered as "content" -property within the given message object. - -@class function -@name parse_message_body -@param src Ltn12 source function -@param msg HTTP message object -@param filecb File data callback (optional, see mimedecode_message_body()) -@return Value indicating successful operation (not nil means "ok") -@return String containing the error if unsuccessful -@see parse_message_header -]] diff --git a/luci-base/luasrc/i18n.lua b/luci-base/luasrc/i18n.lua deleted file mode 100644 index 323912b65..000000000 --- a/luci-base/luasrc/i18n.lua +++ /dev/null @@ -1,55 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local tparser = require "luci.template.parser" -local util = require "luci.util" -local tostring = tostring - -module "luci.i18n" - -i18ndir = util.libpath() .. "/i18n/" -context = util.threadlocal() -default = "en" - - -function setlanguage(lang) - local code, subcode = lang:match("^([A-Za-z][A-Za-z])[%-_]([A-Za-z][A-Za-z])$") - if not (code and subcode) then - subcode = lang:match("^([A-Za-z][A-Za-z])$") - if not subcode then - return nil - end - end - - context.parent = code and code:lower() - context.lang = context.parent and context.parent.."-"..subcode:lower() or subcode:lower() - - if tparser.load_catalog(context.lang, i18ndir) and - tparser.change_catalog(context.lang) - then - return context.lang - - elseif context.parent then - if tparser.load_catalog(context.parent, i18ndir) and - tparser.change_catalog(context.parent) - then - return context.parent - end - end - - return nil -end - -function translate(key) - return tparser.translate(key) or key -end - -function translatef(key, ...) - return tostring(translate(key)):format(...) -end - -function dump() - local rv = {} - tparser.get_translations(function(k, v) rv[k] = v end) - return rv -end diff --git a/luci-base/luasrc/i18n.luadoc b/luci-base/luasrc/i18n.luadoc deleted file mode 100644 index b76c29856..000000000 --- a/luci-base/luasrc/i18n.luadoc +++ /dev/null @@ -1,42 +0,0 @@ ----[[ -LuCI translation library. -]] -module "luci.i18n" - ----[[ -Set the context default translation language. - -@class function -@name setlanguage -@param lang An IETF/BCP 47 language tag or ISO3166 country code, e.g. "en-US" or "de" -@return The effective loaded language, e.g. "en" for "en-US" - or nil on failure -]] - ----[[ -Return the translated value for a specific translation key. - -@class function -@name translate -@param key Default translation text -@return Translated string -]] - ----[[ -Return the translated value for a specific translation key and use it as sprintf pattern. - -@class function -@name translatef -@param key Default translation text -@param ... Format parameters -@return Translated and formatted string -]] - ----[[ -Return all currently loaded translation strings as a key-value table. The key is the -hexadecimal representation of the translation key while the value is the translated -text content. - -@class function -@name dump -@return Key-value translation string table. -]] diff --git a/luci-base/luasrc/ltn12.lua b/luci-base/luasrc/ltn12.lua deleted file mode 100644 index 3a7268cca..000000000 --- a/luci-base/luasrc/ltn12.lua +++ /dev/null @@ -1,316 +0,0 @@ ---[[ -LuaSocket 2.0.2 license -Copyright � 2004-2007 Diego Nehab - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. -]]-- ---[[ - Changes made by LuCI project: - * Renamed to luci.ltn12 to avoid collisions with luasocket - * Added inline documentation -]]-- ------------------------------------------------------------------------------ --- LTN12 - Filters, sources, sinks and pumps. --- LuaSocket toolkit. --- Author: Diego Nehab --- RCS ID: $Id$ ------------------------------------------------------------------------------ - ------------------------------------------------------------------------------ --- Declare module ------------------------------------------------------------------------------ -local string = require("string") -local table = require("table") -local base = _G - --- See http://lua-users.org/wiki/FiltersSourcesAndSinks for design concepts -module("luci.ltn12") - -filter = {} -source = {} -sink = {} -pump = {} - --- 2048 seems to be better in windows... -BLOCKSIZE = 2048 -_VERSION = "LTN12 1.0.1" - ------------------------------------------------------------------------------ --- Filter stuff ------------------------------------------------------------------------------ - - --- by passing it each chunk and updating a context between calls. -function filter.cycle(low, ctx, extra) - base.assert(low) - return function(chunk) - local ret - ret, ctx = low(ctx, chunk, extra) - return ret - end -end - --- (thanks to Wim Couwenberg) -function filter.chain(...) - local n = table.getn(arg) - local top, index = 1, 1 - local retry = "" - return function(chunk) - retry = chunk and retry - while true do - if index == top then - chunk = arg[index](chunk) - if chunk == "" or top == n then return chunk - elseif chunk then index = index + 1 - else - top = top+1 - index = top - end - else - chunk = arg[index](chunk or "") - if chunk == "" then - index = index - 1 - chunk = retry - elseif chunk then - if index == n then return chunk - else index = index + 1 end - else base.error("filter returned inappropriate nil") end - end - end - end -end - ------------------------------------------------------------------------------ --- Source stuff ------------------------------------------------------------------------------ - - --- create an empty source -local function empty() - return nil -end - -function source.empty() - return empty -end - -function source.error(err) - return function() - return nil, err - end -end - -function source.file(handle, io_err) - if handle then - return function() - local chunk = handle:read(BLOCKSIZE) - if chunk and chunk:len() == 0 then chunk = nil end - if not chunk then handle:close() end - return chunk - end - else return source.error(io_err or "unable to open file") end -end - -function source.simplify(src) - base.assert(src) - return function() - local chunk, err_or_new = src() - src = err_or_new or src - if not chunk then return nil, err_or_new - else return chunk end - end -end - -function source.string(s) - if s then - local i = 1 - return function() - local chunk = string.sub(s, i, i+BLOCKSIZE-1) - i = i + BLOCKSIZE - if chunk ~= "" then return chunk - else return nil end - end - else return source.empty() end -end - -function source.rewind(src) - base.assert(src) - local t = {} - return function(chunk) - if not chunk then - chunk = table.remove(t) - if not chunk then return src() - else return chunk end - else - t[#t+1] = chunk - end - end -end - -function source.chain(src, f) - base.assert(src and f) - local last_in, last_out = "", "" - local state = "feeding" - local err - return function() - if not last_out then - base.error('source is empty!', 2) - end - while true do - if state == "feeding" then - last_in, err = src() - if err then return nil, err end - last_out = f(last_in) - if not last_out then - if last_in then - base.error('filter returned inappropriate nil') - else - return nil - end - elseif last_out ~= "" then - state = "eating" - if last_in then last_in = "" end - return last_out - end - else - last_out = f(last_in) - if last_out == "" then - if last_in == "" then - state = "feeding" - else - base.error('filter returned ""') - end - elseif not last_out then - if last_in then - base.error('filter returned inappropriate nil') - else - return nil - end - else - return last_out - end - end - end - end -end - --- Sources will be used one after the other, as if they were concatenated --- (thanks to Wim Couwenberg) -function source.cat(...) - local src = table.remove(arg, 1) - return function() - while src do - local chunk, err = src() - if chunk then return chunk end - if err then return nil, err end - src = table.remove(arg, 1) - end - end -end - ------------------------------------------------------------------------------ --- Sink stuff ------------------------------------------------------------------------------ - - -function sink.table(t) - t = t or {} - local f = function(chunk, err) - if chunk then t[#t+1] = chunk end - return 1 - end - return f, t -end - -function sink.simplify(snk) - base.assert(snk) - return function(chunk, err) - local ret, err_or_new = snk(chunk, err) - if not ret then return nil, err_or_new end - snk = err_or_new or snk - return 1 - end -end - -function sink.file(handle, io_err) - if handle then - return function(chunk, err) - if not chunk then - handle:close() - return 1 - else return handle:write(chunk) end - end - else return sink.error(io_err or "unable to open file") end -end - --- creates a sink that discards data -local function null() - return 1 -end - -function sink.null() - return null -end - -function sink.error(err) - return function() - return nil, err - end -end - -function sink.chain(f, snk) - base.assert(f and snk) - return function(chunk, err) - if chunk ~= "" then - local filtered = f(chunk) - local done = chunk and "" - while true do - local ret, snkerr = snk(filtered, err) - if not ret then return nil, snkerr end - if filtered == done then return 1 end - filtered = f(done) - end - else return 1 end - end -end - ------------------------------------------------------------------------------ --- Pump stuff ------------------------------------------------------------------------------ - - -function pump.step(src, snk) - local chunk, src_err = src() - local ret, snk_err = snk(chunk, src_err) - if chunk and ret then return 1 - else return nil, src_err or snk_err end -end - -function pump.all(src, snk, step) - base.assert(src and snk) - step = step or pump.step - while true do - local ret, err = step(src, snk) - if not ret then - if err then return nil, err - else return 1 end - end - end -end - diff --git a/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua b/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua deleted file mode 100644 index 6e04465ac..000000000 --- a/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua +++ /dev/null @@ -1,68 +0,0 @@ --- Copyright 2011-2012 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local map, section, net = ... -local ifc = net:get_interface() - -local hostname, accept_ra, send_rs -local bcast, defaultroute, peerdns, dns, metric, clientid, vendorclass - - -hostname = section:taboption("general", Value, "hostname", - translate("Hostname to send when requesting DHCP")) - -hostname.placeholder = luci.sys.hostname() -hostname.datatype = "hostname" - - -bcast = section:taboption("advanced", Flag, "broadcast", - translate("Use broadcast flag"), - translate("Required for certain ISPs, e.g. Charter with DOCSIS 3")) - -bcast.default = bcast.disabled - - -defaultroute = section:taboption("advanced", Flag, "defaultroute", - translate("Use default gateway"), - translate("If unchecked, no default route is configured")) - -defaultroute.default = defaultroute.enabled - - -peerdns = section:taboption("advanced", Flag, "peerdns", - translate("Use DNS servers advertised by peer"), - translate("If unchecked, the advertised DNS server addresses are ignored")) - -peerdns.default = peerdns.enabled - - -dns = section:taboption("advanced", DynamicList, "dns", - translate("Use custom DNS servers")) - -dns:depends("peerdns", "") -dns.datatype = "ipaddr" -dns.cast = "string" - - -metric = section:taboption("advanced", Value, "metric", - translate("Use gateway metric")) - -metric.placeholder = "0" -metric.datatype = "uinteger" - - -clientid = section:taboption("advanced", Value, "clientid", - translate("Client ID to send when requesting DHCP")) -clientid.datatype = "hexstring" - - -vendorclass = section:taboption("advanced", Value, "vendorid", - translate("Vendor Class to send when requesting DHCP")) - - -luci.tools.proto.opt_macaddr(section, ifc, translate("Override MAC address")) - - -mtu = section:taboption("advanced", Value, "mtu", translate("Override MTU")) -mtu.placeholder = "1500" -mtu.datatype = "max(9200)" diff --git a/luci-base/luasrc/model/cbi/admin_network/proto_none.lua b/luci-base/luasrc/model/cbi/admin_network/proto_none.lua deleted file mode 100644 index 6fdded9ad..000000000 --- a/luci-base/luasrc/model/cbi/admin_network/proto_none.lua +++ /dev/null @@ -1,4 +0,0 @@ --- Copyright 2011 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local map, section, net = ... diff --git a/luci-base/luasrc/model/cbi/admin_network/proto_static.lua b/luci-base/luasrc/model/cbi/admin_network/proto_static.lua deleted file mode 100644 index 246d2c0ed..000000000 --- a/luci-base/luasrc/model/cbi/admin_network/proto_static.lua +++ /dev/null @@ -1,167 +0,0 @@ --- Copyright 2011 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local map, section, net = ... -local ifc = net:get_interface() - -local netmask, gateway, broadcast, dns, accept_ra, send_rs, ip6addr, ip6gw -local mtu, metric, usecidr, ipaddr_single, ipaddr_multi - - -local function is_cidr(s) - return (type(s) == "string" and luci.ip.IPv4(s) and s:find("/")) -end - -usecidr = section:taboption("general", Value, "ipaddr_usecidr") -usecidr.forcewrite = true - -usecidr.cfgvalue = function(self, section) - local cfgvalue = self.map:get(section, "ipaddr") - return (type(cfgvalue) == "table" or is_cidr(cfgvalue)) and "1" or "0" -end - -usecidr.render = function(self, section, scope) - luci.template.Template(nil, [[ - /> - ]]):render({ - cbid = self:cbid(section), - value = self:cfgvalue(section) - }) -end - -usecidr.write = function(self, section) - local cfgvalue = self.map:get(section, "ipaddr") - local formvalue = (self:formvalue(section) == "1") and ipaddr_multi:formvalue(section) or ipaddr_single:formvalue(section) - local equal = (cfgvalue == formvalue) - - if not equal and type(cfgvalue) == "table" and type(formvalue) == "table" and #cfgvalue == #formvalue then - equal = true - - local _, v - for _, v in ipairs(cfgvalue) do - if v ~= formvalue[_] then - equal = false - break - end - end - end - - if not equal then - self.map:set(section, "ipaddr", formvalue or "") - end - - return not equal -end - - -ipaddr_multi = section:taboption("general", DynamicList, "ipaddrs", translate("IPv4 address")) -ipaddr_multi:depends("ipaddr_usecidr", "1") -ipaddr_multi.datatype = "or(cidr4,ipnet4)" -ipaddr_multi.placeholder = translate("Add IPv4 address…") - -ipaddr_multi.alias = "ipaddr" -ipaddr_multi.write = function() end -ipaddr_multi.remove = function() end -ipaddr_multi.cfgvalue = function(self, section) - local addr = self.map:get(section, "ipaddr") - local mask = self.map:get(section, "netmask") - - if is_cidr(addr) then - return { addr } - elseif type(addr) == "string" and - type(mask) == "string" and - #addr > 0 and #mask > 0 - then - return { "%s/%s" %{ addr, mask } } - elseif type(addr) == "table" then - return addr - else - return {} - end -end - - -ipaddr_single = section:taboption("general", Value, "ipaddr", translate("IPv4 address")) -ipaddr_single:depends("ipaddr_usecidr", "0") -ipaddr_single.datatype = "ip4addr" -ipaddr_single.template = "cbi/ipaddr" -ipaddr_single.write = function() end -ipaddr_single.remove = function() end - - -netmask = section:taboption("general", Value, "netmask", translate("IPv4 netmask")) -netmask:depends("ipaddr_usecidr", "0") -netmask.datatype = "ip4addr" -netmask:value("255.255.255.0") -netmask:value("255.255.0.0") -netmask:value("255.0.0.0") - - -gateway = section:taboption("general", Value, "gateway", translate("IPv4 gateway")) -gateway.datatype = "ip4addr" - - -broadcast = section:taboption("general", Value, "broadcast", translate("IPv4 broadcast")) -broadcast.datatype = "ip4addr" - - -dns = section:taboption("general", DynamicList, "dns", - translate("Use custom DNS servers")) - -dns.datatype = "ipaddr" -dns.cast = "string" - - -if luci.model.network:has_ipv6() then - - local ip6assign = section:taboption("general", Value, "ip6assign", translate("IPv6 assignment length"), - translate("Assign a part of given length of every public IPv6-prefix to this interface")) - ip6assign:value("", translate("disabled")) - ip6assign:value("64") - ip6assign.datatype = "max(64)" - - local ip6hint = section:taboption("general", Value, "ip6hint", translate("IPv6 assignment hint"), - translate("Assign prefix parts using this hexadecimal subprefix ID for this interface.")) - for i=33,64 do ip6hint:depends("ip6assign", i) end - - ip6addr = section:taboption("general", DynamicList, "ip6addr", translate("IPv6 address")) - ip6addr.datatype = "ip6addr" - ip6addr.placeholder = translate("Add IPv6 address…") - ip6addr:depends("ip6assign", "") - - - ip6gw = section:taboption("general", Value, "ip6gw", translate("IPv6 gateway")) - ip6gw.datatype = "ip6addr" - ip6gw:depends("ip6assign", "") - - - local ip6prefix = s:taboption("general", Value, "ip6prefix", translate("IPv6 routed prefix"), - translate("Public prefix routed to this device for distribution to clients.")) - ip6prefix.datatype = "ip6addr" - ip6prefix:depends("ip6assign", "") - - local ip6ifaceid = s:taboption("general", Value, "ip6ifaceid", translate("IPv6 suffix"), - translate("Optional. Allowed values: 'eui64', 'random', fixed value like '::1' " .. - "or '::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a " .. - "delegating server, use the suffix (like '::1') to form the IPv6 address " .. - "('a:b:c:d::1') for the interface.")) - ip6ifaceid.datatype = "ip6hostid" - ip6ifaceid.placeholder = "::1" - ip6ifaceid.rmempty = true - -end - - -luci.tools.proto.opt_macaddr(section, ifc, translate("Override MAC address")) - - -mtu = section:taboption("advanced", Value, "mtu", translate("Override MTU")) -mtu.placeholder = "1500" -mtu.datatype = "max(9200)" - - -metric = section:taboption("advanced", Value, "metric", - translate("Use gateway metric")) - -metric.placeholder = "0" -metric.datatype = "uinteger" diff --git a/luci-base/luasrc/model/firewall.lua b/luci-base/luasrc/model/firewall.lua deleted file mode 100644 index feff0855c..000000000 --- a/luci-base/luasrc/model/firewall.lua +++ /dev/null @@ -1,568 +0,0 @@ --- Copyright 2009 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local type, pairs, ipairs, table, luci, math - = type, pairs, ipairs, table, luci, math - -local tpl = require "luci.template.parser" -local utl = require "luci.util" -local uci = require "luci.model.uci" - -module "luci.model.firewall" - - -local uci_r, uci_s - -function _valid_id(x) - return (x and #x > 0 and x:match("^[a-zA-Z0-9_]+$")) -end - -function _get(c, s, o) - return uci_r:get(c, s, o) -end - -function _set(c, s, o, v) - if v ~= nil then - if type(v) == "boolean" then v = v and "1" or "0" end - return uci_r:set(c, s, o, v) - else - return uci_r:delete(c, s, o) - end -end - - -function init(cursor) - uci_r = cursor or uci_r or uci.cursor() - uci_s = uci_r:substate() - - return _M -end - -function save(self, ...) - uci_r:save(...) - uci_r:load(...) -end - -function commit(self, ...) - uci_r:commit(...) - uci_r:load(...) -end - -function get_defaults() - return defaults() -end - -function new_zone(self) - local name = "newzone" - local count = 1 - - while self:get_zone(name) do - count = count + 1 - name = "newzone%d" % count - end - - return self:add_zone(name) -end - -function add_zone(self, n) - if _valid_id(n) and not self:get_zone(n) then - local d = defaults() - local z = uci_r:section("firewall", "zone", nil, { - name = n, - network = " ", - input = d:input() or "DROP", - forward = d:forward() or "DROP", - output = d:output() or "DROP" - }) - - return z and zone(z) - end -end - -function get_zone(self, n) - if uci_r:get("firewall", n) == "zone" then - return zone(n) - else - local z - uci_r:foreach("firewall", "zone", - function(s) - if n and s.name == n then - z = s['.name'] - return false - end - end) - return z and zone(z) - end -end - -function get_zones(self) - local zones = { } - local znl = { } - - uci_r:foreach("firewall", "zone", - function(s) - if s.name then - znl[s.name] = zone(s['.name']) - end - end) - - local z - for z in utl.kspairs(znl) do - zones[#zones+1] = znl[z] - end - - return zones -end - -function get_zone_by_network(self, net) - local z - - uci_r:foreach("firewall", "zone", - function(s) - if s.name and net then - local n - for n in utl.imatch(s.network or s.name) do - if n == net then - z = s['.name'] - return false - end - end - end - end) - - return z and zone(z) -end - -function del_zone(self, n) - local r = false - - if uci_r:get("firewall", n) == "zone" then - local z = uci_r:get("firewall", n, "name") - r = uci_r:delete("firewall", n) - n = z - else - uci_r:foreach("firewall", "zone", - function(s) - if n and s.name == n then - r = uci_r:delete("firewall", s['.name']) - return false - end - end) - end - - if r then - uci_r:foreach("firewall", "rule", - function(s) - if s.src == n or s.dest == n then - uci_r:delete("firewall", s['.name']) - end - end) - - uci_r:foreach("firewall", "redirect", - function(s) - if s.src == n or s.dest == n then - uci_r:delete("firewall", s['.name']) - end - end) - - uci_r:foreach("firewall", "forwarding", - function(s) - if s.src == n or s.dest == n then - uci_r:delete("firewall", s['.name']) - end - end) - end - - return r -end - -function rename_zone(self, old, new) - local r = false - - if _valid_id(new) and not self:get_zone(new) then - uci_r:foreach("firewall", "zone", - function(s) - if old and s.name == old then - if not s.network then - uci_r:set("firewall", s['.name'], "network", old) - end - uci_r:set("firewall", s['.name'], "name", new) - r = true - return false - end - end) - - if r then - uci_r:foreach("firewall", "rule", - function(s) - if s.src == old then - uci_r:set("firewall", s['.name'], "src", new) - end - if s.dest == old then - uci_r:set("firewall", s['.name'], "dest", new) - end - end) - - uci_r:foreach("firewall", "redirect", - function(s) - if s.src == old then - uci_r:set("firewall", s['.name'], "src", new) - end - if s.dest == old then - uci_r:set("firewall", s['.name'], "dest", new) - end - end) - - uci_r:foreach("firewall", "forwarding", - function(s) - if s.src == old then - uci_r:set("firewall", s['.name'], "src", new) - end - if s.dest == old then - uci_r:set("firewall", s['.name'], "dest", new) - end - end) - end - end - - return r -end - -function del_network(self, net) - local z - if net then - for _, z in ipairs(self:get_zones()) do - z:del_network(net) - end - end -end - - -defaults = utl.class() -function defaults.__init__(self) - uci_r:foreach("firewall", "defaults", - function(s) - self.sid = s['.name'] - return false - end) - - self.sid = self.sid or uci_r:section("firewall", "defaults", nil, { }) -end - -function defaults.get(self, opt) - return _get("firewall", self.sid, opt) -end - -function defaults.set(self, opt, val) - return _set("firewall", self.sid, opt, val) -end - -function defaults.syn_flood(self) - return (self:get("syn_flood") == "1") -end - -function defaults.drop_invalid(self) - return (self:get("drop_invalid") == "1") -end - -function defaults.input(self) - return self:get("input") or "DROP" -end - -function defaults.forward(self) - return self:get("forward") or "DROP" -end - -function defaults.output(self) - return self:get("output") or "DROP" -end - - -zone = utl.class() -function zone.__init__(self, z) - if uci_r:get("firewall", z) == "zone" then - self.sid = z - self.data = uci_r:get_all("firewall", z) - else - uci_r:foreach("firewall", "zone", - function(s) - if s.name == z then - self.sid = s['.name'] - self.data = s - return false - end - end) - end -end - -function zone.get(self, opt) - return _get("firewall", self.sid, opt) -end - -function zone.set(self, opt, val) - return _set("firewall", self.sid, opt, val) -end - -function zone.masq(self) - return (self:get("masq") == "1") -end - -function zone.name(self) - return self:get("name") -end - -function zone.network(self) - return self:get("network") -end - -function zone.input(self) - return self:get("input") or defaults():input() or "DROP" -end - -function zone.forward(self) - return self:get("forward") or defaults():forward() or "DROP" -end - -function zone.output(self) - return self:get("output") or defaults():output() or "DROP" -end - -function zone.add_network(self, net) - if uci_r:get("network", net) == "interface" then - local nets = { } - - local n - for n in utl.imatch(self:get("network") or self:get("name")) do - if n ~= net then - nets[#nets+1] = n - end - end - - nets[#nets+1] = net - - _M:del_network(net) - self:set("network", table.concat(nets, " ")) - end -end - -function zone.del_network(self, net) - local nets = { } - - local n - for n in utl.imatch(self:get("network") or self:get("name")) do - if n ~= net then - nets[#nets+1] = n - end - end - - if #nets > 0 then - self:set("network", table.concat(nets, " ")) - else - self:set("network", " ") - end -end - -function zone.get_networks(self) - local nets = { } - - local n - for n in utl.imatch(self:get("network") or self:get("name")) do - nets[#nets+1] = n - end - - return nets -end - -function zone.clear_networks(self) - self:set("network", " ") -end - -function zone.get_forwardings_by(self, what) - local name = self:name() - local forwards = { } - - uci_r:foreach("firewall", "forwarding", - function(s) - if s.src and s.dest and s[what] == name then - forwards[#forwards+1] = forwarding(s['.name']) - end - end) - - return forwards -end - -function zone.add_forwarding_to(self, dest) - local exist, forward - - for _, forward in ipairs(self:get_forwardings_by('src')) do - if forward:dest() == dest then - exist = true - break - end - end - - if not exist and dest ~= self:name() and _valid_id(dest) then - local s = uci_r:section("firewall", "forwarding", nil, { - src = self:name(), - dest = dest - }) - - return s and forwarding(s) - end -end - -function zone.add_forwarding_from(self, src) - local exist, forward - - for _, forward in ipairs(self:get_forwardings_by('dest')) do - if forward:src() == src then - exist = true - break - end - end - - if not exist and src ~= self:name() and _valid_id(src) then - local s = uci_r:section("firewall", "forwarding", nil, { - src = src, - dest = self:name() - }) - - return s and forwarding(s) - end -end - -function zone.del_forwardings_by(self, what) - local name = self:name() - - uci_r:delete_all("firewall", "forwarding", - function(s) - return (s.src and s.dest and s[what] == name) - end) -end - -function zone.add_redirect(self, options) - options = options or { } - options.src = self:name() - - local s = uci_r:section("firewall", "redirect", nil, options) - return s and redirect(s) -end - -function zone.add_rule(self, options) - options = options or { } - options.src = self:name() - - local s = uci_r:section("firewall", "rule", nil, options) - return s and rule(s) -end - -function zone.get_color(self) - if self and self:name() == "lan" then - return "#90f090" - elseif self and self:name() == "wan" then - return "#f09090" - elseif self then - math.randomseed(tpl.hash(self:name())) - - local r = math.random(128) - local g = math.random(128) - local min = 0 - local max = 128 - - if ( r + g ) < 128 then - min = 128 - r - g - else - max = 255 - r - g - end - - local b = min + math.floor( math.random() * ( max - min ) ) - - return "#%02x%02x%02x" % { 0xFF - r, 0xFF - g, 0xFF - b } - else - return "#eeeeee" - end -end - - -forwarding = utl.class() -function forwarding.__init__(self, f) - self.sid = f -end - -function forwarding.src(self) - return uci_r:get("firewall", self.sid, "src") -end - -function forwarding.dest(self) - return uci_r:get("firewall", self.sid, "dest") -end - -function forwarding.src_zone(self) - local z = zone(self:src()) - return z.sid and z -end - -function forwarding.dest_zone(self) - local z = zone(self:dest()) - return z.sid and z -end - - -rule = utl.class() -function rule.__init__(self, f) - self.sid = f -end - -function rule.get(self, opt) - return _get("firewall", self.sid, opt) -end - -function rule.set(self, opt, val) - return _set("firewall", self.sid, opt, val) -end - -function rule.src(self) - return uci_r:get("firewall", self.sid, "src") -end - -function rule.dest(self) - return uci_r:get("firewall", self.sid, "dest") -end - -function rule.src_zone(self) - return zone(self:src()) -end - -function rule.dest_zone(self) - return zone(self:dest()) -end - - -redirect = utl.class() -function redirect.__init__(self, f) - self.sid = f -end - -function redirect.get(self, opt) - return _get("firewall", self.sid, opt) -end - -function redirect.set(self, opt, val) - return _set("firewall", self.sid, opt, val) -end - -function redirect.src(self) - return uci_r:get("firewall", self.sid, "src") -end - -function redirect.dest(self) - return uci_r:get("firewall", self.sid, "dest") -end - -function redirect.src_zone(self) - return zone(self:src()) -end - -function redirect.dest_zone(self) - return zone(self:dest()) -end diff --git a/luci-base/luasrc/model/network.lua b/luci-base/luasrc/model/network.lua deleted file mode 100644 index b8467b65e..000000000 --- a/luci-base/luasrc/model/network.lua +++ /dev/null @@ -1,1912 +0,0 @@ --- Copyright 2009-2015 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local type, next, pairs, ipairs, loadfile, table, select - = type, next, pairs, ipairs, loadfile, table, select - -local tonumber, tostring, math = tonumber, tostring, math - -local pcall, require, setmetatable = pcall, require, setmetatable - -local nxo = require "nixio" -local nfs = require "nixio.fs" -local ipc = require "luci.ip" -local utl = require "luci.util" -local uci = require "luci.model.uci" -local lng = require "luci.i18n" -local jsc = require "luci.jsonc" - -module "luci.model.network" - - -IFACE_PATTERNS_VIRTUAL = { } -IFACE_PATTERNS_IGNORE = { "^wmaster%d", "^wifi%d", "^hwsim%d", "^imq%d", "^ifb%d", "^mon%.wlan%d", "^sit%d", "^gre%d", "^gretap%d", "^ip6gre%d", "^ip6tnl%d", "^tunl%d", "^lo$", "^teql%d" } -IFACE_PATTERNS_WIRELESS = { "^wlan%d", "^wl%d", "^ath%d", "^%w+%.network%d" } - -IFACE_ERRORS = { - CONNECT_FAILED = lng.translate("Connection attempt failed"), - INVALID_ADDRESS = lng.translate("IP address in invalid"), - INVALID_GATEWAY = lng.translate("Gateway address is invalid"), - INVALID_LOCAL_ADDRESS = lng.translate("Local IP address is invalid"), - MISSING_ADDRESS = lng.translate("IP address is missing"), - MISSING_PEER_ADDRESS = lng.translate("Peer address is missing"), - NO_DEVICE = lng.translate("Network device is not present"), - NO_IFACE = lng.translate("Unable to determine device name"), - NO_IFNAME = lng.translate("Unable to determine device name"), - NO_WAN_ADDRESS = lng.translate("Unable to determine external IP address"), - NO_WAN_LINK = lng.translate("Unable to determine upstream interface"), - PEER_RESOLVE_FAIL = lng.translate("Unable to resolve peer host name"), - PIN_FAILED = lng.translate("PIN code rejected") -} - - -protocol = utl.class() - -local _protocols = { } - -local _interfaces, _bridge, _switch, _tunnel, _swtopo -local _ubusnetcache, _ubusdevcache, _ubuswificache -local _uci - -function _filter(c, s, o, r) - local val = _uci:get(c, s, o) - if val then - local l = { } - if type(val) == "string" then - for val in val:gmatch("%S+") do - if val ~= r then - l[#l+1] = val - end - end - if #l > 0 then - _uci:set(c, s, o, table.concat(l, " ")) - else - _uci:delete(c, s, o) - end - elseif type(val) == "table" then - for _, val in ipairs(val) do - if val ~= r then - l[#l+1] = val - end - end - if #l > 0 then - _uci:set(c, s, o, l) - else - _uci:delete(c, s, o) - end - end - end -end - -function _append(c, s, o, a) - local val = _uci:get(c, s, o) or "" - if type(val) == "string" then - local l = { } - for val in val:gmatch("%S+") do - if val ~= a then - l[#l+1] = val - end - end - l[#l+1] = a - _uci:set(c, s, o, table.concat(l, " ")) - elseif type(val) == "table" then - local l = { } - for _, val in ipairs(val) do - if val ~= a then - l[#l+1] = val - end - end - l[#l+1] = a - _uci:set(c, s, o, l) - end -end - -function _stror(s1, s2) - if not s1 or #s1 == 0 then - return s2 and #s2 > 0 and s2 - else - return s1 - end -end - -function _get(c, s, o) - return _uci:get(c, s, o) -end - -function _set(c, s, o, v) - if v ~= nil then - if type(v) == "boolean" then v = v and "1" or "0" end - return _uci:set(c, s, o, v) - else - return _uci:delete(c, s, o) - end -end - -local function _wifi_state() - if not next(_ubuswificache) then - _ubuswificache = utl.ubus("network.wireless", "status", {}) or {} - end - return _ubuswificache -end - -local function _wifi_state_by_sid(sid) - local t1, n1 = _uci:get("wireless", sid) - if t1 == "wifi-iface" and n1 ~= nil then - local radioname, radiostate - for radioname, radiostate in pairs(_wifi_state()) do - if type(radiostate) == "table" and - type(radiostate.interfaces) == "table" - then - local netidx, netstate - for netidx, netstate in ipairs(radiostate.interfaces) do - if type(netstate) == "table" and - type(netstate.section) == "string" - then - local t2, n2 = _uci:get("wireless", netstate.section) - if t1 == t2 and n1 == n2 then - return radioname, radiostate, netstate - end - end - end - end - end - end -end - -local function _wifi_state_by_ifname(ifname) - if type(ifname) == "string" then - local radioname, radiostate - for radioname, radiostate in pairs(_wifi_state()) do - if type(radiostate) == "table" and - type(radiostate.interfaces) == "table" - then - local netidx, netstate - for netidx, netstate in ipairs(radiostate.interfaces) do - if type(netstate) == "table" and - type(netstate.ifname) == "string" and - netstate.ifname == ifname - then - return radioname, radiostate, netstate - end - end - end - end - end -end - -function _wifi_iface(x) - local _, p - for _, p in ipairs(IFACE_PATTERNS_WIRELESS) do - if x:match(p) then - return true - end - end - return false -end - -local function _wifi_iwinfo_by_ifname(ifname, force_phy_only) - local stat, iwinfo = pcall(require, "iwinfo") - local iwtype = stat and type(ifname) == "string" and iwinfo.type(ifname) - local is_nonphy_op = { - bitrate = true, - quality = true, - quality_max = true, - mode = true, - ssid = true, - bssid = true, - assoclist = true, - encryption = true - } - - if iwtype then - -- if we got a type but no real netdev, we're referring to a phy - local phy_only = force_phy_only or (ipc.link(ifname).type ~= 1) - - return setmetatable({}, { - __index = function(t, k) - if k == "ifname" then - return ifname - elseif phy_only and is_nonphy_op[k] then - return nil - elseif iwinfo[iwtype][k] then - return iwinfo[iwtype][k](ifname) - end - end - }) - end -end - -local function _wifi_sid_by_netid(netid) - if type(netid) == "string" then - local radioname, netidx = netid:match("^(%w+)%.network(%d+)$") - if radioname and netidx then - local i, n = 0, nil - - netidx = tonumber(netidx) - _uci:foreach("wireless", "wifi-iface", - function(s) - if s.device == radioname then - i = i + 1 - if i == netidx then - n = s[".name"] - return false - end - end - end) - - return n - end - end -end - -function _wifi_sid_by_ifname(ifn) - local sid = _wifi_sid_by_netid(ifn) - if sid then - return sid - end - - local _, _, netstate = _wifi_state_by_ifname(ifn) - if netstate and type(netstate.section) == "string" then - return netstate.section - end -end - -local function _wifi_netid_by_sid(sid) - local t, n = _uci:get("wireless", sid) - if t == "wifi-iface" and n ~= nil then - local radioname = _uci:get("wireless", n, "device") - if type(radioname) == "string" then - local i, netid = 0, nil - - _uci:foreach("wireless", "wifi-iface", - function(s) - if s.device == radioname then - i = i + 1 - if s[".name"] == n then - netid = "%s.network%d" %{ radioname, i } - return false - end - end - end) - - return netid, radioname - end - end -end - -local function _wifi_netid_by_netname(name) - local netid = nil - - _uci:foreach("wireless", "wifi-iface", - function(s) - local net - for net in utl.imatch(s.network) do - if net == name then - netid = _wifi_netid_by_sid(s[".name"]) - return false - end - end - end) - - return netid -end - -function _iface_virtual(x) - local _, p - for _, p in ipairs(IFACE_PATTERNS_VIRTUAL) do - if x:match(p) then - return true - end - end - return false -end - -function _iface_ignore(x) - local _, p - for _, p in ipairs(IFACE_PATTERNS_IGNORE) do - if x:match(p) then - return true - end - end - return false -end - -function init(cursor) - _uci = cursor or _uci or uci.cursor() - - _interfaces = { } - _bridge = { } - _switch = { } - _tunnel = { } - _swtopo = { } - - _ubusnetcache = { } - _ubusdevcache = { } - _ubuswificache = { } - - -- read interface information - local n, i - for n, i in ipairs(nxo.getifaddrs()) do - local name = i.name:match("[^:]+") - - if _iface_virtual(name) then - _tunnel[name] = true - end - - if _tunnel[name] or not (_iface_ignore(name) or _iface_virtual(name)) then - _interfaces[name] = _interfaces[name] or { - idx = i.ifindex or n, - name = name, - rawname = i.name, - flags = { }, - ipaddrs = { }, - ip6addrs = { } - } - - if i.family == "packet" then - _interfaces[name].flags = i.flags - _interfaces[name].stats = i.data - _interfaces[name].macaddr = ipc.checkmac(i.addr) - elseif i.family == "inet" then - _interfaces[name].ipaddrs[#_interfaces[name].ipaddrs+1] = ipc.IPv4(i.addr, i.netmask) - elseif i.family == "inet6" then - _interfaces[name].ip6addrs[#_interfaces[name].ip6addrs+1] = ipc.IPv6(i.addr, i.netmask) - end - end - end - - -- read bridge informaton - local b, l - for l in utl.execi("brctl show") do - if not l:match("STP") then - local r = utl.split(l, "%s+", nil, true) - if #r == 4 then - b = { - name = r[1], - id = r[2], - stp = r[3] == "yes", - ifnames = { _interfaces[r[4]] } - } - if b.ifnames[1] then - b.ifnames[1].bridge = b - end - _bridge[r[1]] = b - elseif b then - b.ifnames[#b.ifnames+1] = _interfaces[r[2]] - b.ifnames[#b.ifnames].bridge = b - end - end - end - - -- read switch topology - local boardinfo = jsc.parse(nfs.readfile("/etc/board.json") or "") - if type(boardinfo) == "table" and type(boardinfo.switch) == "table" then - local switch, layout - for switch, layout in pairs(boardinfo.switch) do - if type(layout) == "table" and type(layout.ports) == "table" then - local _, port - local ports = { } - local nports = { } - local netdevs = { } - - for _, port in ipairs(layout.ports) do - if type(port) == "table" and - type(port.num) == "number" and - (type(port.role) == "string" or - type(port.device) == "string") - then - local spec = { - num = port.num, - role = port.role or "cpu", - index = port.index or port.num - } - - if port.device then - spec.device = port.device - spec.tagged = port.need_tag - netdevs[tostring(port.num)] = port.device - end - - ports[#ports+1] = spec - - if port.role then - nports[port.role] = (nports[port.role] or 0) + 1 - end - end - end - - table.sort(ports, function(a, b) - if a.role ~= b.role then - return (a.role < b.role) - end - - return (a.index < b.index) - end) - - local pnum, role - for _, port in ipairs(ports) do - if port.role ~= role then - role = port.role - pnum = 1 - end - - if role == "cpu" then - port.label = "CPU (%s)" % port.device - elseif nports[role] > 1 then - port.label = "%s %d" %{ role:upper(), pnum } - pnum = pnum + 1 - else - port.label = role:upper() - end - - port.role = nil - port.index = nil - end - - _swtopo[switch] = { - ports = ports, - netdevs = netdevs - } - end - end - end - - return _M -end - -function save(self, ...) - _uci:save(...) - _uci:load(...) -end - -function commit(self, ...) - _uci:commit(...) - _uci:load(...) -end - -function ifnameof(self, x) - if utl.instanceof(x, interface) then - return x:name() - elseif utl.instanceof(x, protocol) then - return x:ifname() - elseif type(x) == "string" then - return x:match("^[^:]+") - end -end - -function get_protocol(self, protoname, netname) - local v = _protocols[protoname] - if v then - return v(netname or "__dummy__") - end -end - -function get_protocols(self) - local p = { } - local _, v - for _, v in ipairs(_protocols) do - p[#p+1] = v("__dummy__") - end - return p -end - -function register_protocol(self, protoname) - local proto = utl.class(protocol) - - function proto.__init__(self, name) - self.sid = name - end - - function proto.proto(self) - return protoname - end - - _protocols[#_protocols+1] = proto - _protocols[protoname] = proto - - return proto -end - -function register_pattern_virtual(self, pat) - IFACE_PATTERNS_VIRTUAL[#IFACE_PATTERNS_VIRTUAL+1] = pat -end - -function register_error_code(self, code, message) - if type(code) == "string" and - type(message) == "string" and - not IFACE_ERRORS[code] - then - IFACE_ERRORS[code] = message - return true - end - - return false -end - -function has_ipv6(self) - return nfs.access("/proc/net/ipv6_route") -end - -function add_network(self, n, options) - local oldnet = self:get_network(n) - if n and #n > 0 and n:match("^[a-zA-Z0-9_]+$") and not oldnet then - if _uci:section("network", "interface", n, options) then - return network(n) - end - elseif oldnet and oldnet:is_empty() then - if options then - local k, v - for k, v in pairs(options) do - oldnet:set(k, v) - end - end - return oldnet - end -end - -function get_network(self, n) - if n and _uci:get("network", n) == "interface" then - return network(n) - elseif n then - local stat = utl.ubus("network.interface", "status", { interface = n }) - if type(stat) == "table" and - type(stat.proto) == "string" - then - return network(n, stat.proto) - end - end -end - -function get_networks(self) - local nets = { } - local nls = { } - - _uci:foreach("network", "interface", - function(s) - nls[s['.name']] = network(s['.name']) - end) - - local dump = utl.ubus("network.interface", "dump", { }) - if type(dump) == "table" and - type(dump.interface) == "table" - then - local _, net - for _, net in ipairs(dump.interface) do - if type(net) == "table" and - type(net.proto) == "string" and - type(net.interface) == "string" - then - if not nls[net.interface] then - nls[net.interface] = network(net.interface, net.proto) - end - end - end - end - - local n - for n in utl.kspairs(nls) do - nets[#nets+1] = nls[n] - end - - return nets -end - -function del_network(self, n) - local r = _uci:delete("network", n) - if r then - _uci:delete_all("luci", "ifstate", - function(s) return (s.interface == n) end) - - _uci:delete_all("network", "alias", - function(s) return (s.interface == n) end) - - _uci:delete_all("network", "route", - function(s) return (s.interface == n) end) - - _uci:delete_all("network", "route6", - function(s) return (s.interface == n) end) - - _uci:foreach("wireless", "wifi-iface", - function(s) - local net - local rest = { } - for net in utl.imatch(s.network) do - if net ~= n then - rest[#rest+1] = net - end - end - if #rest > 0 then - _uci:set("wireless", s['.name'], "network", - table.concat(rest, " ")) - else - _uci:delete("wireless", s['.name'], "network") - end - end) - - local ok, fw = pcall(require, "luci.model.firewall") - if ok then - fw.init() - fw:del_network(n) - end - end - return r -end - -function rename_network(self, old, new) - local r - if new and #new > 0 and new:match("^[a-zA-Z0-9_]+$") and not self:get_network(new) then - r = _uci:section("network", "interface", new, _uci:get_all("network", old)) - - if r then - _uci:foreach("network", "alias", - function(s) - if s.interface == old then - _uci:set("network", s['.name'], "interface", new) - end - end) - - _uci:foreach("network", "route", - function(s) - if s.interface == old then - _uci:set("network", s['.name'], "interface", new) - end - end) - - _uci:foreach("network", "route6", - function(s) - if s.interface == old then - _uci:set("network", s['.name'], "interface", new) - end - end) - - _uci:foreach("wireless", "wifi-iface", - function(s) - local net - local list = { } - for net in utl.imatch(s.network) do - if net == old then - list[#list+1] = new - else - list[#list+1] = net - end - end - if #list > 0 then - _uci:set("wireless", s['.name'], "network", - table.concat(list, " ")) - end - end) - - _uci:delete("network", old) - end - end - return r or false -end - -function get_interface(self, i) - if _interfaces[i] or _wifi_iface(i) then - return interface(i) - else - local netid = _wifi_netid_by_sid(i) - return netid and interface(netid) - end -end - -function get_interfaces(self) - local iface - local ifaces = { } - local nfs = { } - - -- find normal interfaces - _uci:foreach("network", "interface", - function(s) - for iface in utl.imatch(s.ifname) do - if not _iface_ignore(iface) and not _iface_virtual(iface) and not _wifi_iface(iface) then - nfs[iface] = interface(iface) - end - end - end) - - for iface in utl.kspairs(_interfaces) do - if not (nfs[iface] or _iface_ignore(iface) or _iface_virtual(iface) or _wifi_iface(iface)) then - nfs[iface] = interface(iface) - end - end - - -- find vlan interfaces - _uci:foreach("network", "switch_vlan", - function(s) - if type(s.ports) ~= "string" or - type(s.device) ~= "string" or - type(_swtopo[s.device]) ~= "table" - then - return - end - - local pnum, ptag - for pnum, ptag in s.ports:gmatch("(%d+)([tu]?)") do - local netdev = _swtopo[s.device].netdevs[pnum] - if netdev then - if not nfs[netdev] then - nfs[netdev] = interface(netdev) - end - _switch[netdev] = true - - if ptag == "t" then - local vid = tonumber(s.vid or s.vlan) - if vid ~= nil and vid >= 0 and vid <= 4095 then - local iface = "%s.%d" %{ netdev, vid } - if not nfs[iface] then - nfs[iface] = interface(iface) - end - _switch[iface] = true - end - end - end - end - end) - - for iface in utl.kspairs(nfs) do - ifaces[#ifaces+1] = nfs[iface] - end - - -- find wifi interfaces - local num = { } - local wfs = { } - _uci:foreach("wireless", "wifi-iface", - function(s) - if s.device then - num[s.device] = num[s.device] and num[s.device] + 1 or 1 - local i = "%s.network%d" %{ s.device, num[s.device] } - wfs[i] = interface(i) - end - end) - - for iface in utl.kspairs(wfs) do - ifaces[#ifaces+1] = wfs[iface] - end - - return ifaces -end - -function ignore_interface(self, x) - return _iface_ignore(x) -end - -function get_wifidev(self, dev) - if _uci:get("wireless", dev) == "wifi-device" then - return wifidev(dev) - end -end - -function get_wifidevs(self) - local devs = { } - local wfd = { } - - _uci:foreach("wireless", "wifi-device", - function(s) wfd[#wfd+1] = s['.name'] end) - - local dev - for _, dev in utl.vspairs(wfd) do - devs[#devs+1] = wifidev(dev) - end - - return devs -end - -function get_wifinet(self, net) - local wnet = _wifi_sid_by_ifname(net) - if wnet then - return wifinet(wnet) - end -end - -function add_wifinet(self, net, options) - if type(options) == "table" and options.device and - _uci:get("wireless", options.device) == "wifi-device" - then - local wnet = _uci:section("wireless", "wifi-iface", nil, options) - return wifinet(wnet) - end -end - -function del_wifinet(self, net) - local wnet = _wifi_sid_by_ifname(net) - if wnet then - _uci:delete("wireless", wnet) - return true - end - return false -end - -function get_status_by_route(self, addr, mask) - local route_statuses = { } - local _, object - for _, object in ipairs(utl.ubus()) do - local net = object:match("^network%.interface%.(.+)") - if net then - local s = utl.ubus(object, "status", {}) - if s and s.route then - local rt - for _, rt in ipairs(s.route) do - if not rt.table and rt.target == addr and rt.mask == mask then - route_statuses[net] = s - end - end - end - end - end - - return route_statuses -end - -function get_status_by_address(self, addr) - local _, object - for _, object in ipairs(utl.ubus()) do - local net = object:match("^network%.interface%.(.+)") - if net then - local s = utl.ubus(object, "status", {}) - if s and s['ipv4-address'] then - local a - for _, a in ipairs(s['ipv4-address']) do - if a.address == addr then - return net, s - end - end - end - if s and s['ipv6-address'] then - local a - for _, a in ipairs(s['ipv6-address']) do - if a.address == addr then - return net, s - end - end - end - if s and s['ipv6-prefix-assignment'] then - local a - for _, a in ipairs(s['ipv6-prefix-assignment']) do - if a and a['local-address'] and a['local-address'].address == addr then - return net, s - end - end - end - end - end -end - -function get_wan_networks(self) - local k, v - local wan_nets = { } - local route_statuses = self:get_status_by_route("0.0.0.0", 0) - - for k, v in pairs(route_statuses) do - wan_nets[#wan_nets+1] = network(k, v.proto) - end - - return wan_nets -end - -function get_wan6_networks(self) - local k, v - local wan6_nets = { } - local route_statuses = self:get_status_by_route("::", 0) - - for k, v in pairs(route_statuses) do - wan6_nets[#wan6_nets+1] = network(k, v.proto) - end - - return wan6_nets -end - -function get_switch_topologies(self) - return _swtopo -end - - -function network(name, proto) - if name then - local p = proto or _uci:get("network", name, "proto") - local c = p and _protocols[p] or protocol - return c(name) - end -end - -function protocol.__init__(self, name) - self.sid = name -end - -function protocol._get(self, opt) - local v = _uci:get("network", self.sid, opt) - if type(v) == "table" then - return table.concat(v, " ") - end - return v or "" -end - -function protocol._ubus(self, field) - if not _ubusnetcache[self.sid] then - _ubusnetcache[self.sid] = utl.ubus("network.interface.%s" % self.sid, - "status", { }) - end - if _ubusnetcache[self.sid] and field then - return _ubusnetcache[self.sid][field] - end - return _ubusnetcache[self.sid] -end - -function protocol.get(self, opt) - return _get("network", self.sid, opt) -end - -function protocol.set(self, opt, val) - return _set("network", self.sid, opt, val) -end - -function protocol.ifname(self) - local ifname - if self:is_floating() then - ifname = self:_ubus("l3_device") - else - ifname = self:_ubus("device") - end - if not ifname then - ifname = _wifi_netid_by_netname(self.sid) - end - return ifname -end - -function protocol.proto(self) - return "none" -end - -function protocol.get_i18n(self) - local p = self:proto() - if p == "none" then - return lng.translate("Unmanaged") - elseif p == "static" then - return lng.translate("Static address") - elseif p == "dhcp" then - return lng.translate("DHCP client") - else - return lng.translate("Unknown") - end -end - -function protocol.type(self) - return self:_get("type") -end - -function protocol.name(self) - return self.sid -end - -function protocol.uptime(self) - return self:_ubus("uptime") or 0 -end - -function protocol.expires(self) - local u = self:_ubus("uptime") - local d = self:_ubus("data") - - if type(u) == "number" and type(d) == "table" and - type(d.leasetime) == "number" - then - local r = (d.leasetime - (u % d.leasetime)) - return r > 0 and r or 0 - end - - return -1 -end - -function protocol.metric(self) - return self:_ubus("metric") or 0 -end - -function protocol.zonename(self) - local d = self:_ubus("data") - - if type(d) == "table" and type(d.zone) == "string" then - return d.zone - end - - return nil -end - -function protocol.ipaddr(self) - local addrs = self:_ubus("ipv4-address") - return addrs and #addrs > 0 and addrs[1].address -end - -function protocol.ipaddrs(self) - local addrs = self:_ubus("ipv4-address") - local rv = { } - - if type(addrs) == "table" then - local n, addr - for n, addr in ipairs(addrs) do - rv[#rv+1] = "%s/%d" %{ addr.address, addr.mask } - end - end - - return rv -end - -function protocol.netmask(self) - local addrs = self:_ubus("ipv4-address") - return addrs and #addrs > 0 and - ipc.IPv4("0.0.0.0/%d" % addrs[1].mask):mask():string() -end - -function protocol.gwaddr(self) - local _, route - for _, route in ipairs(self:_ubus("route") or { }) do - if route.target == "0.0.0.0" and route.mask == 0 then - return route.nexthop - end - end -end - -function protocol.dnsaddrs(self) - local dns = { } - local _, addr - for _, addr in ipairs(self:_ubus("dns-server") or { }) do - if not addr:match(":") then - dns[#dns+1] = addr - end - end - return dns -end - -function protocol.ip6addr(self) - local addrs = self:_ubus("ipv6-address") - if addrs and #addrs > 0 then - return "%s/%d" %{ addrs[1].address, addrs[1].mask } - else - addrs = self:_ubus("ipv6-prefix-assignment") - if addrs and #addrs > 0 then - return "%s/%d" %{ addrs[1].address, addrs[1].mask } - end - end -end - -function protocol.ip6addrs(self) - local addrs = self:_ubus("ipv6-address") - local rv = { } - local n, addr - - if type(addrs) == "table" then - for n, addr in ipairs(addrs) do - rv[#rv+1] = "%s/%d" %{ addr.address, addr.mask } - end - end - - addrs = self:_ubus("ipv6-prefix-assignment") - - if type(addrs) == "table" then - for n, addr in ipairs(addrs) do - if type(addr["local-address"]) == "table" and - type(addr["local-address"].mask) == "number" and - type(addr["local-address"].address) == "string" - then - rv[#rv+1] = "%s/%d" %{ - addr["local-address"].address, - addr["local-address"].mask - } - end - end - end - - return rv -end - -function protocol.gw6addr(self) - local _, route - for _, route in ipairs(self:_ubus("route") or { }) do - if route.target == "::" and route.mask == 0 then - return ipc.IPv6(route.nexthop):string() - end - end -end - -function protocol.dns6addrs(self) - local dns = { } - local _, addr - for _, addr in ipairs(self:_ubus("dns-server") or { }) do - if addr:match(":") then - dns[#dns+1] = addr - end - end - return dns -end - -function protocol.ip6prefix(self) - local prefix = self:_ubus("ipv6-prefix") - if prefix and #prefix > 0 then - return "%s/%d" %{ prefix[1].address, prefix[1].mask } - end -end - -function protocol.errors(self) - local _, err, rv - local errors = self:_ubus("errors") - if type(errors) == "table" then - for _, err in ipairs(errors) do - if type(err) == "table" and - type(err.code) == "string" - then - rv = rv or { } - rv[#rv+1] = IFACE_ERRORS[err.code] or lng.translatef("Unknown error (%s)", err.code) - end - end - end - return rv -end - -function protocol.is_bridge(self) - return (not self:is_virtual() and self:type() == "bridge") -end - -function protocol.opkg_package(self) - return nil -end - -function protocol.is_installed(self) - return true -end - -function protocol.is_virtual(self) - return false -end - -function protocol.is_floating(self) - return false -end - -function protocol.is_dynamic(self) - return (self:_ubus("dynamic") == true) -end - -function protocol.is_auto(self) - return (self:_get("auto") ~= "0") -end - -function protocol.is_alias(self) - local ifn, parent = nil, nil - - for ifn in utl.imatch(_uci:get("network", self.sid, "ifname")) do - if #ifn > 1 and ifn:byte(1) == 64 then - parent = ifn:sub(2) - elseif parent ~= nil then - parent = nil - end - end - - return parent -end - -function protocol.is_empty(self) - if self:is_floating() then - return false - else - local empty = true - - if (self:_get("ifname") or ""):match("%S+") then - empty = false - end - - if empty and _wifi_netid_by_netname(self.sid) then - empty = false - end - - return empty - end -end - -function protocol.is_up(self) - return (self:_ubus("up") == true) -end - -function protocol.add_interface(self, ifname) - ifname = _M:ifnameof(ifname) - if ifname and not self:is_floating() then - -- if its a wifi interface, change its network option - local wif = _wifi_sid_by_ifname(ifname) - if wif then - _append("wireless", wif, "network", self.sid) - - -- add iface to our iface list - else - _append("network", self.sid, "ifname", ifname) - end - end -end - -function protocol.del_interface(self, ifname) - ifname = _M:ifnameof(ifname) - if ifname and not self:is_floating() then - -- if its a wireless interface, clear its network option - local wif = _wifi_sid_by_ifname(ifname) - if wif then _filter("wireless", wif, "network", self.sid) end - - -- remove the interface - _filter("network", self.sid, "ifname", ifname) - end -end - -function protocol.get_interface(self) - if self:is_virtual() then - _tunnel[self:proto() .. "-" .. self.sid] = true - return interface(self:proto() .. "-" .. self.sid, self) - elseif self:is_bridge() then - _bridge["br-" .. self.sid] = true - return interface("br-" .. self.sid, self) - else - local ifn = self:_ubus("l3_device") or self:_ubus("device") - if ifn then - return interface(ifn, self) - end - - for ifn in utl.imatch(_uci:get("network", self.sid, "ifname")) do - ifn = ifn:match("^[^:/]+") - return ifn and interface(ifn, self) - end - - ifn = _wifi_netid_by_netname(self.sid) - return ifn and interface(ifn, self) - end -end - -function protocol.get_interfaces(self) - if self:is_bridge() or (self:is_virtual() and not self:is_floating()) then - local ifaces = { } - - local ifn - local nfs = { } - for ifn in utl.imatch(self:get("ifname")) do - ifn = ifn:match("^[^:/]+") - nfs[ifn] = interface(ifn, self) - end - - for ifn in utl.kspairs(nfs) do - ifaces[#ifaces+1] = nfs[ifn] - end - - local wfs = { } - _uci:foreach("wireless", "wifi-iface", - function(s) - if s.device then - local net - for net in utl.imatch(s.network) do - if net == self.sid then - ifn = _wifi_netid_by_sid(s[".name"]) - if ifn then - wfs[ifn] = interface(ifn, self) - end - end - end - end - end) - - for ifn in utl.kspairs(wfs) do - ifaces[#ifaces+1] = wfs[ifn] - end - - return ifaces - end -end - -function protocol.contains_interface(self, ifname) - ifname = _M:ifnameof(ifname) - if not ifname then - return false - elseif self:is_virtual() and self:proto() .. "-" .. self.sid == ifname then - return true - elseif self:is_bridge() and "br-" .. self.sid == ifname then - return true - else - local ifn - for ifn in utl.imatch(self:get("ifname")) do - ifn = ifn:match("[^:]+") - if ifn == ifname then - return true - end - end - - local wif = _wifi_sid_by_ifname(ifname) - if wif then - local n - for n in utl.imatch(_uci:get("wireless", wif, "network")) do - if n == self.sid then - return true - end - end - end - end - - return false -end - -function protocol.adminlink(self) - local stat, dsp = pcall(require, "luci.dispatcher") - return stat and dsp.build_url("admin", "network", "network", self.sid) -end - - -interface = utl.class() - -function interface.__init__(self, ifname, network) - local wif = _wifi_sid_by_ifname(ifname) - if wif then - self.wif = wifinet(wif) - self.ifname = self.wif:ifname() - end - - self.ifname = self.ifname or ifname - self.dev = _interfaces[self.ifname] - self.network = network -end - -function interface._ubus(self, field) - if not _ubusdevcache[self.ifname] then - _ubusdevcache[self.ifname] = utl.ubus("network.device", "status", - { name = self.ifname }) - end - if _ubusdevcache[self.ifname] and field then - return _ubusdevcache[self.ifname][field] - end - return _ubusdevcache[self.ifname] -end - -function interface.name(self) - return self.wif and self.wif:ifname() or self.ifname -end - -function interface.mac(self) - return ipc.checkmac(self:_ubus("macaddr")) -end - -function interface.ipaddrs(self) - return self.dev and self.dev.ipaddrs or { } -end - -function interface.ip6addrs(self) - return self.dev and self.dev.ip6addrs or { } -end - -function interface.type(self) - if self.ifname and self.ifname:byte(1) == 64 then - return "alias" - elseif self.wif or _wifi_iface(self.ifname) then - return "wifi" - elseif _bridge[self.ifname] then - return "bridge" - elseif _tunnel[self.ifname] then - return "tunnel" - elseif self.ifname:match("%.") then - return "vlan" - elseif _switch[self.ifname] then - return "switch" - else - return "ethernet" - end -end - -function interface.shortname(self) - if self.wif then - return self.wif:shortname() - else - return self.ifname - end -end - -function interface.get_i18n(self) - if self.wif then - return "%s: %s %q" %{ - lng.translate("Wireless Network"), - self.wif:active_mode(), - self.wif:active_ssid() or self.wif:active_bssid() or self.wif:id() or "?" - } - else - return "%s: %q" %{ self:get_type_i18n(), self:name() } - end -end - -function interface.get_type_i18n(self) - local x = self:type() - if x == "alias" then - return lng.translate("Alias Interface") - elseif x == "wifi" then - return lng.translate("Wireless Adapter") - elseif x == "bridge" then - return lng.translate("Bridge") - elseif x == "switch" then - return lng.translate("Ethernet Switch") - elseif x == "vlan" then - if _switch[self.ifname] then - return lng.translate("Switch VLAN") - else - return lng.translate("Software VLAN") - end - elseif x == "tunnel" then - return lng.translate("Tunnel Interface") - else - return lng.translate("Ethernet Adapter") - end -end - -function interface.adminlink(self) - if self.wif then - return self.wif:adminlink() - end -end - -function interface.ports(self) - local members = self:_ubus("bridge-members") - if members then - local _, iface - local ifaces = { } - for _, iface in ipairs(members) do - ifaces[#ifaces+1] = interface(iface) - end - end -end - -function interface.bridge_id(self) - if self.br then - return self.br.id - else - return nil - end -end - -function interface.bridge_stp(self) - if self.br then - return self.br.stp - else - return false - end -end - -function interface.is_up(self) - local up = self:_ubus("up") - if up == nil then - up = (self:type() == "alias") - end - return up or false -end - -function interface.is_bridge(self) - return (self:type() == "bridge") -end - -function interface.is_bridgeport(self) - return self.dev and self.dev.bridge and true or false -end - -function interface.tx_bytes(self) - local stat = self:_ubus("statistics") - return stat and stat.tx_bytes or 0 -end - -function interface.rx_bytes(self) - local stat = self:_ubus("statistics") - return stat and stat.rx_bytes or 0 -end - -function interface.tx_packets(self) - local stat = self:_ubus("statistics") - return stat and stat.tx_packets or 0 -end - -function interface.rx_packets(self) - local stat = self:_ubus("statistics") - return stat and stat.rx_packets or 0 -end - -function interface.get_network(self) - return self:get_networks()[1] -end - -function interface.get_networks(self) - if not self.networks then - local nets = { } - local _, net - for _, net in ipairs(_M:get_networks()) do - if net:contains_interface(self.ifname) or - net:ifname() == self.ifname - then - nets[#nets+1] = net - end - end - table.sort(nets, function(a, b) return a.sid < b.sid end) - self.networks = nets - return nets - else - return self.networks - end -end - -function interface.get_wifinet(self) - return self.wif -end - - -wifidev = utl.class() - -function wifidev.__init__(self, name) - local t, n = _uci:get("wireless", name) - if t == "wifi-device" and n ~= nil then - self.sid = n - self.iwinfo = _wifi_iwinfo_by_ifname(self.sid, true) - end - self.sid = self.sid or name - self.iwinfo = self.iwinfo or { ifname = self.sid } -end - -function wifidev.get(self, opt) - return _get("wireless", self.sid, opt) -end - -function wifidev.set(self, opt, val) - return _set("wireless", self.sid, opt, val) -end - -function wifidev.name(self) - return self.sid -end - -function wifidev.hwmodes(self) - local l = self.iwinfo.hwmodelist - if l and next(l) then - return l - else - return { b = true, g = true } - end -end - -function wifidev.get_i18n(self) - local t = self.iwinfo.hardware_name or "Generic" - if self.iwinfo.type == "wl" then - t = "Broadcom" - end - - local m = "" - local l = self:hwmodes() - if l.a then m = m .. "a" end - if l.b then m = m .. "b" end - if l.g then m = m .. "g" end - if l.n then m = m .. "n" end - if l.ac then m = "ac" end - - return "%s 802.11%s Wireless Controller (%s)" %{ t, m, self:name() } -end - -function wifidev.is_up(self) - if _ubuswificache[self.sid] then - return (_ubuswificache[self.sid].up == true) - end - - return false -end - -function wifidev.get_wifinet(self, net) - if _uci:get("wireless", net) == "wifi-iface" then - return wifinet(net) - else - local wnet = _wifi_sid_by_ifname(net) - if wnet then - return wifinet(wnet) - end - end -end - -function wifidev.get_wifinets(self) - local nets = { } - - _uci:foreach("wireless", "wifi-iface", - function(s) - if s.device == self.sid then - nets[#nets+1] = wifinet(s['.name']) - end - end) - - return nets -end - -function wifidev.add_wifinet(self, options) - options = options or { } - options.device = self.sid - - local wnet = _uci:section("wireless", "wifi-iface", nil, options) - if wnet then - return wifinet(wnet, options) - end -end - -function wifidev.del_wifinet(self, net) - if utl.instanceof(net, wifinet) then - net = net.sid - elseif _uci:get("wireless", net) ~= "wifi-iface" then - net = _wifi_sid_by_ifname(net) - end - - if net and _uci:get("wireless", net, "device") == self.sid then - _uci:delete("wireless", net) - return true - end - - return false -end - - -wifinet = utl.class() - -function wifinet.__init__(self, name, data) - local sid, netid, radioname, radiostate, netstate - - -- lookup state by radio#.network# notation - sid = _wifi_sid_by_netid(name) - if sid then - netid = name - radioname, radiostate, netstate = _wifi_state_by_sid(sid) - else - -- lookup state by ifname (e.g. wlan0) - radioname, radiostate, netstate = _wifi_state_by_ifname(name) - if radioname and radiostate and netstate then - sid = netstate.section - netid = _wifi_netid_by_sid(sid) - else - -- lookup state by uci section id (e.g. cfg053579) - radioname, radiostate, netstate = _wifi_state_by_sid(name) - if radioname and radiostate and netstate then - sid = name - netid = _wifi_netid_by_sid(sid) - else - -- no state available, try to resolve from uci - netid, radioname = _wifi_netid_by_sid(name) - if netid and radioname then - sid = name - end - end - end - end - - local iwinfo = - (netstate and _wifi_iwinfo_by_ifname(netstate.ifname)) or - (radioname and _wifi_iwinfo_by_ifname(radioname)) or - { ifname = (netid or sid or name) } - - self.sid = sid or name - self.wdev = iwinfo.ifname - self.iwinfo = iwinfo - self.netid = netid - self._ubusdata = { - radio = radioname, - dev = radiostate, - net = netstate - } -end - -function wifinet.ubus(self, ...) - local n, v = self._ubusdata - for n = 1, select('#', ...) do - if type(v) == "table" then - v = v[select(n, ...)] - else - return nil - end - end - return v -end - -function wifinet.get(self, opt) - return _get("wireless", self.sid, opt) -end - -function wifinet.set(self, opt, val) - return _set("wireless", self.sid, opt, val) -end - -function wifinet.mode(self) - return self:ubus("net", "config", "mode") or self:get("mode") or "ap" -end - -function wifinet.ssid(self) - return self:ubus("net", "config", "ssid") or self:get("ssid") -end - -function wifinet.bssid(self) - return self:ubus("net", "config", "bssid") or self:get("bssid") -end - -function wifinet.network(self) - local net, networks = nil, { } - for net in utl.imatch(self:ubus("net", "config", "network") or self:get("network")) do - networks[#networks+1] = net - end - return networks -end - -function wifinet.id(self) - return self.netid -end - -function wifinet.name(self) - return self.sid -end - -function wifinet.ifname(self) - local ifname = self:ubus("net", "ifname") or self.iwinfo.ifname - if not ifname or ifname:match("^wifi%d") or ifname:match("^radio%d") then - ifname = self.netid - end - return ifname -end - -function wifinet.get_device(self) - local dev = self:ubus("radio") or self:get("device") - return dev and wifidev(dev) or nil -end - -function wifinet.is_up(self) - local ifc = self:get_interface() - return (ifc and ifc:is_up() or false) -end - -function wifinet.active_mode(self) - local m = self.iwinfo.mode or self:ubus("net", "config", "mode") or self:get("mode") or "ap" - - if m == "ap" then m = "Master" - elseif m == "sta" then m = "Client" - elseif m == "adhoc" then m = "Ad-Hoc" - elseif m == "mesh" then m = "Mesh" - elseif m == "monitor" then m = "Monitor" - end - - return m -end - -function wifinet.active_mode_i18n(self) - return lng.translate(self:active_mode()) -end - -function wifinet.active_ssid(self) - return self.iwinfo.ssid or self:ubus("net", "config", "ssid") or self:get("ssid") -end - -function wifinet.active_bssid(self) - return self.iwinfo.bssid or self:ubus("net", "config", "bssid") or self:get("bssid") -end - -function wifinet.active_encryption(self) - local enc = self.iwinfo and self.iwinfo.encryption - return enc and enc.description or "-" -end - -function wifinet.assoclist(self) - return self.iwinfo.assoclist or { } -end - -function wifinet.frequency(self) - local freq = self.iwinfo.frequency - if freq and freq > 0 then - return "%.03f" % (freq / 1000) - end -end - -function wifinet.bitrate(self) - local rate = self.iwinfo.bitrate - if rate and rate > 0 then - return (rate / 1000) - end -end - -function wifinet.channel(self) - return self.iwinfo.channel or self:ubus("dev", "config", "channel") or - tonumber(self:get("channel")) -end - -function wifinet.signal(self) - return self.iwinfo.signal or 0 -end - -function wifinet.noise(self) - return self.iwinfo.noise or 0 -end - -function wifinet.country(self) - return self.iwinfo.country or self:ubus("dev", "config", "country") or "00" -end - -function wifinet.txpower(self) - local pwr = (self.iwinfo.txpower or 0) - return pwr + self:txpower_offset() -end - -function wifinet.txpower_offset(self) - return self.iwinfo.txpower_offset or 0 -end - -function wifinet.signal_level(self, s, n) - if self:active_bssid() ~= "00:00:00:00:00:00" then - local signal = s or self:signal() - local noise = n or self:noise() - - if signal < 0 and noise < 0 then - local snr = -1 * (noise - signal) - return math.floor(snr / 5) - else - return 0 - end - else - return -1 - end -end - -function wifinet.signal_percent(self) - local qc = self.iwinfo.quality or 0 - local qm = self.iwinfo.quality_max or 0 - - if qc > 0 and qm > 0 then - return math.floor((100 / qm) * qc) - else - return 0 - end -end - -function wifinet.shortname(self) - return "%s %q" %{ - lng.translate(self:active_mode()), - self:active_ssid() or self:active_bssid() or self:id() - } -end - -function wifinet.get_i18n(self) - return "%s: %s %q (%s)" %{ - lng.translate("Wireless Network"), - lng.translate(self:active_mode()), - self:active_ssid() or self:active_bssid() or self:id(), - self:ifname() - } -end - -function wifinet.adminlink(self) - local stat, dsp = pcall(require, "luci.dispatcher") - return dsp and dsp.build_url("admin", "network", "wireless", self.netid) -end - -function wifinet.get_network(self) - return self:get_networks()[1] -end - -function wifinet.get_networks(self) - local nets = { } - local net - for net in utl.imatch(self:ubus("net", "config", "network") or self:get("network")) do - if _uci:get("network", net) == "interface" then - nets[#nets+1] = network(net) - end - end - table.sort(nets, function(a, b) return a.sid < b.sid end) - return nets -end - -function wifinet.get_interface(self) - return interface(self:ifname()) -end - - --- setup base protocols -_M:register_protocol("static") -_M:register_protocol("dhcp") -_M:register_protocol("none") - --- load protocol extensions -local exts = nfs.dir(utl.libpath() .. "/model/network") -if exts then - local ext - for ext in exts do - if ext:match("%.lua$") then - require("luci.model.network." .. ext:gsub("%.lua$", "")) - end - end -end diff --git a/luci-base/luasrc/model/uci.lua b/luci-base/luasrc/model/uci.lua deleted file mode 100644 index a50e28a87..000000000 --- a/luci-base/luasrc/model/uci.lua +++ /dev/null @@ -1,508 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local os = require "os" -local util = require "luci.util" -local table = require "table" - - -local setmetatable, rawget, rawset = setmetatable, rawget, rawset -local require, getmetatable, assert = require, getmetatable, assert -local error, pairs, ipairs, select = error, pairs, ipairs, select -local type, tostring, tonumber, unpack = type, tostring, tonumber, unpack - --- The typical workflow for UCI is: Get a cursor instance from the --- cursor factory, modify data (via Cursor.add, Cursor.delete, etc.), --- save the changes to the staging area via Cursor.save and finally --- Cursor.commit the data to the actual config files. --- LuCI then needs to Cursor.apply the changes so daemons etc. are --- reloaded. -module "luci.model.uci" - -local ERRSTR = { - "Invalid command", - "Invalid argument", - "Method not found", - "Entry not found", - "No data", - "Permission denied", - "Timeout", - "Not supported", - "Unknown error", - "Connection failed" -} - -local session_id = nil - -local function call(cmd, args) - if type(args) == "table" and session_id then - args.ubus_rpc_session = session_id - end - return util.ubus("uci", cmd, args) -end - - -function cursor() - return _M -end - -function cursor_state() - return _M -end - -function substate(self) - return self -end - - -function get_confdir(self) - return "/etc/config" -end - -function get_savedir(self) - return "/tmp/.uci" -end - -function get_session_id(self) - return session_id -end - -function set_confdir(self, directory) - return false -end - -function set_savedir(self, directory) - return false -end - -function set_session_id(self, id) - session_id = id - return true -end - - -function load(self, config) - return true -end - -function save(self, config) - return true -end - -function unload(self, config) - return true -end - - -function changes(self, config) - local rv, err = call("changes", { config = config }) - - if type(rv) == "table" and type(rv.changes) == "table" then - return rv.changes - elseif err then - return nil, ERRSTR[err] - else - return { } - end -end - - -function revert(self, config) - local _, err = call("revert", { config = config }) - return (err == nil), ERRSTR[err] -end - -function commit(self, config) - local _, err = call("commit", { config = config }) - return (err == nil), ERRSTR[err] -end - -function apply(self, rollback) - local _, err - - if rollback then - local sys = require "luci.sys" - local conf = require "luci.config" - local timeout = tonumber(conf and conf.apply and conf.apply.rollback or 30) or 0 - - _, err = call("apply", { - timeout = (timeout > 30) and timeout or 30, - rollback = true - }) - - if not err then - local now = os.time() - local token = sys.uniqueid(16) - - util.ubus("session", "set", { - ubus_rpc_session = "00000000000000000000000000000000", - values = { - rollback = { - token = token, - session = session_id, - timeout = now + timeout - } - } - }) - - return token - end - else - _, err = call("changes", {}) - - if not err then - if type(_) == "table" and type(_.changes) == "table" then - local k, v - for k, v in pairs(_.changes) do - _, err = call("commit", { config = k }) - if err then - break - end - end - end - end - - if not err then - _, err = call("apply", { rollback = false }) - end - end - - return (err == nil), ERRSTR[err] -end - -function confirm(self, token) - local is_pending, time_remaining, rollback_sid, rollback_token = self:rollback_pending() - - if is_pending then - if token ~= rollback_token then - return false, "Permission denied" - end - - local _, err = util.ubus("uci", "confirm", { - ubus_rpc_session = rollback_sid - }) - - if not err then - util.ubus("session", "set", { - ubus_rpc_session = "00000000000000000000000000000000", - values = { rollback = {} } - }) - end - - return (err == nil), ERRSTR[err] - end - - return false, "No data" -end - -function rollback(self) - local is_pending, time_remaining, rollback_sid = self:rollback_pending() - - if is_pending then - local _, err = util.ubus("uci", "rollback", { - ubus_rpc_session = rollback_sid - }) - - if not err then - util.ubus("session", "set", { - ubus_rpc_session = "00000000000000000000000000000000", - values = { rollback = {} } - }) - end - - return (err == nil), ERRSTR[err] - end - - return false, "No data" -end - -function rollback_pending(self) - local rv, err = util.ubus("session", "get", { - ubus_rpc_session = "00000000000000000000000000000000", - keys = { "rollback" } - }) - - local now = os.time() - - if type(rv) == "table" and - type(rv.values) == "table" and - type(rv.values.rollback) == "table" and - type(rv.values.rollback.token) == "string" and - type(rv.values.rollback.session) == "string" and - type(rv.values.rollback.timeout) == "number" and - rv.values.rollback.timeout > now - then - return true, - rv.values.rollback.timeout - now, - rv.values.rollback.session, - rv.values.rollback.token - end - - return false, ERRSTR[err] -end - - -function foreach(self, config, stype, callback) - if type(callback) == "function" then - local rv, err = call("get", { - config = config, - type = stype - }) - - if type(rv) == "table" and type(rv.values) == "table" then - local sections = { } - local res = false - local index = 1 - - local _, section - for _, section in pairs(rv.values) do - section[".index"] = section[".index"] or index - sections[index] = section - index = index + 1 - end - - table.sort(sections, function(a, b) - return a[".index"] < b[".index"] - end) - - for _, section in ipairs(sections) do - local continue = callback(section) - res = true - if continue == false then - break - end - end - return res - else - return false, ERRSTR[err] or "No data" - end - else - return false, "Invalid argument" - end -end - -local function _get(self, operation, config, section, option) - if section == nil then - return nil - elseif type(option) == "string" and option:byte(1) ~= 46 then - local rv, err = call(operation, { - config = config, - section = section, - option = option - }) - - if type(rv) == "table" then - return rv.value or nil - elseif err then - return false, ERRSTR[err] - else - return nil - end - elseif option == nil then - local values = self:get_all(config, section) - if values then - return values[".type"], values[".name"] - else - return nil - end - else - return false, "Invalid argument" - end -end - -function get(self, ...) - return _get(self, "get", ...) -end - -function get_state(self, ...) - return _get(self, "state", ...) -end - -function get_all(self, config, section) - local rv, err = call("get", { - config = config, - section = section - }) - - if type(rv) == "table" and type(rv.values) == "table" then - return rv.values - elseif err then - return false, ERRSTR[err] - else - return nil - end -end - -function get_bool(self, ...) - local val = self:get(...) - return (val == "1" or val == "true" or val == "yes" or val == "on") -end - -function get_first(self, config, stype, option, default) - local rv = default - - self:foreach(config, stype, function(s) - local val = not option and s[".name"] or s[option] - - if type(default) == "number" then - val = tonumber(val) - elseif type(default) == "boolean" then - val = (val == "1" or val == "true" or - val == "yes" or val == "on") - end - - if val ~= nil then - rv = val - return false - end - end) - - return rv -end - -function get_list(self, config, section, option) - if config and section and option then - local val = self:get(config, section, option) - return (type(val) == "table" and val or { val }) - end - return { } -end - - -function section(self, config, stype, name, values) - local rv, err = call("add", { - config = config, - type = stype, - name = name, - values = values - }) - - if type(rv) == "table" then - return rv.section - elseif err then - return false, ERRSTR[err] - else - return nil - end -end - - -function add(self, config, stype) - return self:section(config, stype) -end - -function set(self, config, section, option, ...) - if select('#', ...) == 0 then - local sname, err = self:section(config, option, section) - return (not not sname), err - else - local _, err = call("set", { - config = config, - section = section, - values = { [option] = select(1, ...) } - }) - return (err == nil), ERRSTR[err] - end -end - -function set_list(self, config, section, option, value) - if section == nil or option == nil then - return false - elseif value == nil or (type(value) == "table" and #value == 0) then - return self:delete(config, section, option) - elseif type(value) == "table" then - return self:set(config, section, option, value) - else - return self:set(config, section, option, { value }) - end -end - -function tset(self, config, section, values) - local _, err = call("set", { - config = config, - section = section, - values = values - }) - return (err == nil), ERRSTR[err] -end - -function reorder(self, config, section, index) - local sections - - if type(section) == "string" and type(index) == "number" then - local pos = 0 - - sections = { } - - self:foreach(config, nil, function(s) - if pos == index then - pos = pos + 1 - end - - if s[".name"] ~= section then - pos = pos + 1 - sections[pos] = s[".name"] - else - sections[index + 1] = section - end - end) - elseif type(section) == "table" then - sections = section - else - return false, "Invalid argument" - end - - local _, err = call("order", { - config = config, - sections = sections - }) - - return (err == nil), ERRSTR[err] -end - - -function delete(self, config, section, option) - local _, err = call("delete", { - config = config, - section = section, - option = option - }) - return (err == nil), ERRSTR[err] -end - -function delete_all(self, config, stype, comparator) - local _, err - if type(comparator) == "table" then - _, err = call("delete", { - config = config, - type = stype, - match = comparator - }) - elseif type(comparator) == "function" then - local rv = call("get", { - config = config, - type = stype - }) - - if type(rv) == "table" and type(rv.values) == "table" then - local sname, section - for sname, section in pairs(rv.values) do - if comparator(section) then - _, err = call("delete", { - config = config, - section = sname - }) - end - end - end - elseif comparator == nil then - _, err = call("delete", { - config = config, - type = stype - }) - else - return false, "Invalid argument" - end - - return (err == nil), ERRSTR[err] -end diff --git a/luci-base/luasrc/model/uci.luadoc b/luci-base/luasrc/model/uci.luadoc deleted file mode 100644 index 0189d49aa..000000000 --- a/luci-base/luasrc/model/uci.luadoc +++ /dev/null @@ -1,369 +0,0 @@ ----[[ -LuCI UCI model library. - -The typical workflow for UCI is: Get a cursor instance from the -cursor factory, modify data (via Cursor.add, Cursor.delete, etc.), -save the changes to the staging area via Cursor.save and finally -Cursor.commit the data to the actual config files. -LuCI then needs to Cursor.apply the changes so daemons etc. are -reloaded. -@cstyle instance -]] -module "luci.model.uci" - ----[[ -Create a new UCI-Cursor. - -@class function -@name cursor -@return UCI-Cursor -]] - ----[[ -Create a new Cursor initialized to the state directory. - -@class function -@name cursor_state -@return UCI cursor -]] - ----[[ -Applies UCI configuration changes. - -If the rollback parameter is set to true, the apply function will invoke the -rollback mechanism which causes the configuration to be automatically reverted -if no confirm() call occurs within a certain timeout. - -The current default timeout is 30s and can be increased using the -"luci.apply.timeout" uci configuration key. - -@class function -@name Cursor.apply -@param rollback Enable rollback mechanism -@return Boolean whether operation succeeded -]] - ----[[ -Confirms UCI apply process. - -If a previous UCI apply with rollback has been invoked using apply(true), -this function confirms the process and cancels the pending rollback timer. - -If no apply with rollback session is active, the function has no effect and -returns with a "No data" error. - -@class function -@name Cursor.confirm -@return Boolean whether operation succeeded -]] - ----[[ -Cancels UCI apply process. - -If a previous UCI apply with rollback has been invoked using apply(true), -this function cancels the process and rolls back the configuration to the -pre-apply state. - -If no apply with rollback session is active, the function has no effect and -returns with a "No data" error. - -@class function -@name Cursor.rollback -@return Boolean whether operation succeeded -]] - ----[[ -Checks whether a pending rollback is scheduled. - -If a previous UCI apply with rollback has been invoked using apply(true), -and has not been confirmed or rolled back yet, this function returns true -and the remaining time until rollback in seconds. If no rollback is pending, -the function returns false. On error, the function returns false and an -additional string describing the error. - -@class function -@name Cursor.rollback_pending -@return Boolean whether rollback is pending -@return Remaining time in seconds -]] - ----[[ -Delete all sections of a given type that match certain criteria. - -@class function -@name Cursor.delete_all -@param config UCI config -@param type UCI section type -@param comparator Function that will be called for each section and returns - a boolean whether to delete the current section (optional) -]] - ----[[ -Create a new section and initialize it with data. - -@class function -@name Cursor.section -@param config UCI config -@param type UCI section type -@param name UCI section name (optional) -@param values Table of key - value pairs to initialize the section with -@return Name of created section -]] - ----[[ -Updated the data of a section using data from a table. - -@class function -@name Cursor.tset -@param config UCI config -@param section UCI section name (optional) -@param values Table of key - value pairs to update the section with -]] - ----[[ -Get a boolean option and return it's value as true or false. - -@class function -@name Cursor.get_bool -@param config UCI config -@param section UCI section name -@param option UCI option -@return Boolean -]] - ----[[ -Get an option or list and return values as table. - -@class function -@name Cursor.get_list -@param config UCI config -@param section UCI section name -@param option UCI option -@return table. If the option was not found, you will simply get an empty - table. -]] - ----[[ -Get the given option from the first section with the given type. - -@class function -@name Cursor.get_first -@param config UCI config -@param type UCI section type -@param option UCI option (optional) -@param default Default value (optional) -@return UCI value -]] - ----[[ -Set given values as list. Setting a list option to an empty list -has the same effect as deleting the option. - -@class function -@name Cursor.set_list -@param config UCI config -@param section UCI section name -@param option UCI option -@param value Value or table. Non-table values will be set as single - item UCI list. -@return Boolean whether operation succeeded -]] - ----[[ -Create a sub-state of this cursor. - -The sub-state is tied to the parent cursor, means it the parent unloads or -loads configs, the sub state will do so as well. - -@class function -@name Cursor.substate -@return UCI state cursor tied to the parent cursor -]] - ----[[ -Add an anonymous section. - -@class function -@name Cursor.add -@param config UCI config -@param type UCI section type -@return Name of created section -]] - ----[[ -Get a table of saved but uncommitted changes. - -@class function -@name Cursor.changes -@param config UCI config -@return Table of changes -@see Cursor.save -]] - ----[[ -Commit saved changes. - -@class function -@name Cursor.commit -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.revert -@see Cursor.save -]] - ----[[ -Deletes a section or an option. - -@class function -@name Cursor.delete -@param config UCI config -@param section UCI section name -@param option UCI option (optional) -@return Boolean whether operation succeeded -]] - ----[[ -Call a function for every section of a certain type. - -@class function -@name Cursor.foreach -@param config UCI config -@param type UCI section type -@param callback Function to be called -@return Boolean whether operation succeeded -]] - ----[[ -Get a section type or an option - -@class function -@name Cursor.get -@param config UCI config -@param section UCI section name -@param option UCI option (optional) -@return UCI value -]] - ----[[ -Get all sections of a config or all values of a section. - -@class function -@name Cursor.get_all -@param config UCI config -@param section UCI section name (optional) -@return Table of UCI sections or table of UCI values -]] - ----[[ -Manually load a config. - -@class function -@name Cursor.load -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.save -@see Cursor.unload -]] - ----[[ -Revert saved but uncommitted changes. - -@class function -@name Cursor.revert -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.commit -@see Cursor.save -]] - ----[[ -Saves changes made to a config to make them committable. - -@class function -@name Cursor.save -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.load -@see Cursor.unload -]] - ----[[ -Set a value or create a named section. - -When invoked with three arguments `config`, `sectionname`, `sectiontype`, -then a named section of the given type is created. - -When invoked with four arguments `config`, `sectionname`, `optionname` and -`optionvalue` then the value of the specified option is set to the given value. - -@class function -@name Cursor.set -@param config UCI config -@param section UCI section name -@param option UCI option or UCI section type -@param value UCI value or nothing if you want to create a section -@return Boolean whether operation succeeded -]] - ----[[ -Get the configuration directory. - -@class function -@name Cursor.get_confdir -@return Configuration directory -]] - ----[[ -Get the directory for uncomitted changes. - -@class function -@name Cursor.get_savedir -@return Save directory -]] - ----[[ -Get the effective session ID. - -@class function -@name Cursor.get_session_id -@return String containing the session ID -]] - ----[[ -Set the configuration directory. - -@class function -@name Cursor.set_confdir -@param directory UCI configuration directory -@return Boolean whether operation succeeded -]] - ----[[ -Set the directory for uncommitted changes. - -@class function -@name Cursor.set_savedir -@param directory UCI changes directory -@return Boolean whether operation succeeded -]] - ----[[ -Set the effective session ID. - -@class function -@name Cursor.set_session_id -@param id String containing the session ID to set -@return Boolean whether operation succeeded -]] - ----[[ -Discard changes made to a config. - -@class function -@name Cursor.unload -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.load -@see Cursor.save -]] - diff --git a/luci-base/luasrc/sgi/cgi.lua b/luci-base/luasrc/sgi/cgi.lua deleted file mode 100644 index 68ae17a9e..000000000 --- a/luci-base/luasrc/sgi/cgi.lua +++ /dev/null @@ -1,73 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -exectime = os.clock() -module("luci.sgi.cgi", package.seeall) -local ltn12 = require("luci.ltn12") -require("nixio.util") -require("luci.http") -require("luci.sys") -require("luci.dispatcher") - --- Limited source to avoid endless blocking -local function limitsource(handle, limit) - limit = limit or 0 - local BLOCKSIZE = ltn12.BLOCKSIZE - - return function() - if limit < 1 then - handle:close() - return nil - else - local read = (limit > BLOCKSIZE) and BLOCKSIZE or limit - limit = limit - read - - local chunk = handle:read(read) - if not chunk then handle:close() end - return chunk - end - end -end - -function run() - local r = luci.http.Request( - luci.sys.getenv(), - limitsource(io.stdin, tonumber(luci.sys.getenv("CONTENT_LENGTH"))), - ltn12.sink.file(io.stderr) - ) - - local x = coroutine.create(luci.dispatcher.httpdispatch) - local hcache = "" - local active = true - - while coroutine.status(x) ~= "dead" do - local res, id, data1, data2 = coroutine.resume(x, r) - - if not res then - print("Status: 500 Internal Server Error") - print("Content-Type: text/plain\n") - print(id) - break; - end - - if active then - if id == 1 then - io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\r\n") - elseif id == 2 then - hcache = hcache .. data1 .. ": " .. data2 .. "\r\n" - elseif id == 3 then - io.write(hcache) - io.write("\r\n") - elseif id == 4 then - io.write(tostring(data1 or "")) - elseif id == 5 then - io.flush() - io.close() - active = false - elseif id == 6 then - data1:copyz(nixio.stdout, data2) - data1:close() - end - end - end -end diff --git a/luci-base/luasrc/sgi/uhttpd.lua b/luci-base/luasrc/sgi/uhttpd.lua deleted file mode 100644 index 2836bf00c..000000000 --- a/luci-base/luasrc/sgi/uhttpd.lua +++ /dev/null @@ -1,89 +0,0 @@ --- Copyright 2010 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -require "nixio.util" -require "luci.http" -require "luci.sys" -require "luci.dispatcher" -require "luci.ltn12" - -function handle_request(env) - exectime = os.clock() - local renv = { - CONTENT_LENGTH = env.CONTENT_LENGTH, - CONTENT_TYPE = env.CONTENT_TYPE, - REQUEST_METHOD = env.REQUEST_METHOD, - REQUEST_URI = env.REQUEST_URI, - PATH_INFO = env.PATH_INFO, - SCRIPT_NAME = env.SCRIPT_NAME:gsub("/+$", ""), - SCRIPT_FILENAME = env.SCRIPT_NAME, - SERVER_PROTOCOL = env.SERVER_PROTOCOL, - QUERY_STRING = env.QUERY_STRING - } - - local k, v - for k, v in pairs(env.headers) do - k = k:upper():gsub("%-", "_") - renv["HTTP_" .. k] = v - end - - local len = tonumber(env.CONTENT_LENGTH) or 0 - local function recv() - if len > 0 then - local rlen, rbuf = uhttpd.recv(4096) - if rlen >= 0 then - len = len - rlen - return rbuf - end - end - return nil - end - - local send = uhttpd.send - - local req = luci.http.Request( - renv, recv, luci.ltn12.sink.file(io.stderr) - ) - - - local x = coroutine.create(luci.dispatcher.httpdispatch) - local hcache = { } - local active = true - - while coroutine.status(x) ~= "dead" do - local res, id, data1, data2 = coroutine.resume(x, req) - - if not res then - send("Status: 500 Internal Server Error\r\n") - send("Content-Type: text/plain\r\n\r\n") - send(tostring(id)) - break - end - - if active then - if id == 1 then - send("Status: ") - send(tostring(data1)) - send(" ") - send(tostring(data2)) - send("\r\n") - elseif id == 2 then - hcache[data1] = data2 - elseif id == 3 then - for k, v in pairs(hcache) do - send(tostring(k)) - send(": ") - send(tostring(v)) - send("\r\n") - end - send("\r\n") - elseif id == 4 then - send(tostring(data1 or "")) - elseif id == 5 then - active = false - elseif id == 6 then - data1:copyz(nixio.stdout, data2) - end - end - end -end diff --git a/luci-base/luasrc/store.lua b/luci-base/luasrc/store.lua deleted file mode 100644 index 34eb29622..000000000 --- a/luci-base/luasrc/store.lua +++ /dev/null @@ -1,6 +0,0 @@ --- Copyright 2009 Steven Barth --- Copyright 2009 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local util = require "luci.util" -module("luci.store", util.threadlocal) \ No newline at end of file diff --git a/luci-base/luasrc/sys.lua b/luci-base/luasrc/sys.lua deleted file mode 100644 index d0df27572..000000000 --- a/luci-base/luasrc/sys.lua +++ /dev/null @@ -1,669 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local io = require "io" -local os = require "os" -local table = require "table" -local nixio = require "nixio" -local fs = require "nixio.fs" -local uci = require "luci.model.uci" -local ntm = require "luci.model.network" - -local luci = {} -luci.util = require "luci.util" -luci.ip = require "luci.ip" - -local tonumber, ipairs, pairs, pcall, type, next, setmetatable, require, select, unpack = - tonumber, ipairs, pairs, pcall, type, next, setmetatable, require, select, unpack - - -module "luci.sys" - -function call(...) - return os.execute(...) / 256 -end - -exec = luci.util.exec - -function mounts() - local data = {} - local k = {"fs", "blocks", "used", "available", "percent", "mountpoint"} - local ps = luci.util.execi("df") - - if not ps then - return - else - ps() - end - - for line in ps do - local row = {} - - local j = 1 - for value in line:gmatch("[^%s]+") do - row[k[j]] = value - j = j + 1 - end - - if row[k[1]] then - - -- this is a rather ugly workaround to cope with wrapped lines in - -- the df output: - -- - -- /dev/scsi/host0/bus0/target0/lun0/part3 - -- 114382024 93566472 15005244 86% /mnt/usb - -- - - if not row[k[2]] then - j = 2 - line = ps() - for value in line:gmatch("[^%s]+") do - row[k[j]] = value - j = j + 1 - end - end - - table.insert(data, row) - end - end - - return data -end - -function mtds() - local data = {} - - if fs.access("/proc/mtd") then - for l in io.lines("/proc/mtd") do - local d, s, e, n = l:match('^([^%s]+)%s+([^%s]+)%s+([^%s]+)%s+"([^%s]+)"') - if s and n then - local d = {} - d.size = tonumber(s, 16) - d.name = n - table.insert(data, d) - end - end - end - - return data -end - --- containing the whole environment is returned otherwise this function returns --- the corresponding string value for the given name or nil if no such variable --- exists. -getenv = nixio.getenv - -function hostname(newname) - if type(newname) == "string" and #newname > 0 then - fs.writefile( "/proc/sys/kernel/hostname", newname ) - return newname - else - return nixio.uname().nodename - end -end - -function httpget(url, stream, target) - if not target then - local source = stream and io.popen or luci.util.exec - return source("wget -qO- %s" % luci.util.shellquote(url)) - else - return os.execute("wget -qO %s %s" % - {luci.util.shellquote(target), luci.util.shellquote(url)}) - end -end - -function reboot() - return os.execute("reboot >/dev/null 2>&1") -end - -function syslog() - return luci.util.exec("logread") -end - -function dmesg() - return luci.util.exec("dmesg") -end - -function uniqueid(bytes) - local rand = fs.readfile("/dev/urandom", bytes) - return rand and nixio.bin.hexlify(rand) -end - -function uptime() - return nixio.sysinfo().uptime -end - - -net = {} - -local function _nethints(what, callback) - local _, k, e, mac, ip, name, duid, iaid - local cur = uci.cursor() - local ifn = { } - local hosts = { } - local lookup = { } - - local function _add(i, ...) - local k = select(i, ...) - if k then - if not hosts[k] then hosts[k] = { } end - hosts[k][1] = select(1, ...) or hosts[k][1] - hosts[k][2] = select(2, ...) or hosts[k][2] - hosts[k][3] = select(3, ...) or hosts[k][3] - hosts[k][4] = select(4, ...) or hosts[k][4] - end - end - - luci.ip.neighbors(nil, function(neigh) - if neigh.mac and neigh.family == 4 then - _add(what, neigh.mac:string(), neigh.dest:string(), nil, nil) - elseif neigh.mac and neigh.family == 6 then - _add(what, neigh.mac:string(), nil, neigh.dest:string(), nil) - end - end) - - if fs.access("/etc/ethers") then - for e in io.lines("/etc/ethers") do - mac, name = e:match("^([a-fA-F0-9:-]+)%s+(%S+)") - mac = luci.ip.checkmac(mac) - if mac and name then - if luci.ip.checkip4(name) then - _add(what, mac, name, nil, nil) - else - _add(what, mac, nil, nil, name) - end - end - end - end - - cur:foreach("dhcp", "dnsmasq", - function(s) - if s.leasefile and fs.access(s.leasefile) then - for e in io.lines(s.leasefile) do - mac, ip, name = e:match("^%d+ (%S+) (%S+) (%S+)") - mac = luci.ip.checkmac(mac) - if mac and ip then - _add(what, mac, ip, nil, name ~= "*" and name) - end - end - end - end - ) - - cur:foreach("dhcp", "odhcpd", - function(s) - if type(s.leasefile) == "string" and fs.access(s.leasefile) then - for e in io.lines(s.leasefile) do - duid, iaid, name, _, ip = e:match("^# %S+ (%S+) (%S+) (%S+) (-?%d+) %S+ %S+ ([0-9a-f:.]+)/[0-9]+") - mac = net.duid_to_mac(duid) - if mac then - if ip and iaid == "ipv4" then - _add(what, mac, ip, nil, name ~= "*" and name) - elseif ip then - _add(what, mac, nil, ip, name ~= "*" and name) - end - end - end - end - end - ) - - cur:foreach("dhcp", "host", - function(s) - for mac in luci.util.imatch(s.mac) do - mac = luci.ip.checkmac(mac) - if mac then - _add(what, mac, s.ip, nil, s.name) - end - end - end) - - for _, e in ipairs(nixio.getifaddrs()) do - if e.name ~= "lo" then - ifn[e.name] = ifn[e.name] or { } - if e.family == "packet" and e.addr and #e.addr == 17 then - ifn[e.name][1] = e.addr:upper() - elseif e.family == "inet" then - ifn[e.name][2] = e.addr - elseif e.family == "inet6" then - ifn[e.name][3] = e.addr - end - end - end - - for _, e in pairs(ifn) do - if e[what] and (e[2] or e[3]) then - _add(what, e[1], e[2], e[3], e[4]) - end - end - - for _, e in pairs(hosts) do - lookup[#lookup+1] = (what > 1) and e[what] or (e[2] or e[3]) - end - - if #lookup > 0 then - lookup = luci.util.ubus("network.rrdns", "lookup", { - addrs = lookup, - timeout = 250, - limit = 1000 - }) or { } - end - - for _, e in luci.util.kspairs(hosts) do - callback(e[1], e[2], e[3], lookup[e[2]] or lookup[e[3]] or e[4]) - end -end - --- Each entry contains the values in the following order: --- [ "mac", "name" ] -function net.mac_hints(callback) - if callback then - _nethints(1, function(mac, v4, v6, name) - name = name or v4 - if name and name ~= mac then - callback(mac, name or v4) - end - end) - else - local rv = { } - _nethints(1, function(mac, v4, v6, name) - name = name or v4 - if name and name ~= mac then - rv[#rv+1] = { mac, name or v4 } - end - end) - return rv - end -end - --- Each entry contains the values in the following order: --- [ "ip", "name" ] -function net.ipv4_hints(callback) - if callback then - _nethints(2, function(mac, v4, v6, name) - name = name or mac - if name and name ~= v4 then - callback(v4, name) - end - end) - else - local rv = { } - _nethints(2, function(mac, v4, v6, name) - name = name or mac - if name and name ~= v4 then - rv[#rv+1] = { v4, name } - end - end) - return rv - end -end - --- Each entry contains the values in the following order: --- [ "ip", "name" ] -function net.ipv6_hints(callback) - if callback then - _nethints(3, function(mac, v4, v6, name) - name = name or mac - if name and name ~= v6 then - callback(v6, name) - end - end) - else - local rv = { } - _nethints(3, function(mac, v4, v6, name) - name = name or mac - if name and name ~= v6 then - rv[#rv+1] = { v6, name } - end - end) - return rv - end -end - -function net.host_hints(callback) - if callback then - _nethints(1, function(mac, v4, v6, name) - if mac and mac ~= "00:00:00:00:00:00" and (v4 or v6 or name) then - callback(mac, v4, v6, name) - end - end) - else - local rv = { } - _nethints(1, function(mac, v4, v6, name) - if mac and mac ~= "00:00:00:00:00:00" and (v4 or v6 or name) then - local e = { } - if v4 then e.ipv4 = v4 end - if v6 then e.ipv6 = v6 end - if name then e.name = name end - rv[mac] = e - end - end) - return rv - end -end - -function net.conntrack(callback) - local ok, nfct = pcall(io.lines, "/proc/net/nf_conntrack") - if not ok or not nfct then - return nil - end - - local line, connt = nil, (not callback) and { } - for line in nfct do - local fam, l3, l4, timeout, tuples = - line:match("^(ipv[46]) +(%d+) +%S+ +(%d+) +(%d+) +(.+)$") - - if fam and l3 and l4 and timeout and not tuples:match("^TIME_WAIT ") then - l4 = nixio.getprotobynumber(l4) - - local entry = { - bytes = 0, - packets = 0, - layer3 = fam, - layer4 = l4 and l4.name or "unknown", - timeout = tonumber(timeout, 10) - } - - local key, val - for key, val in tuples:gmatch("(%w+)=(%S+)") do - if key == "bytes" or key == "packets" then - entry[key] = entry[key] + tonumber(val, 10) - elseif key == "src" or key == "dst" then - if entry[key] == nil then - entry[key] = luci.ip.new(val):string() - end - elseif key == "sport" or key == "dport" then - if entry[key] == nil then - entry[key] = val - end - elseif val then - entry[key] = val - end - end - - if callback then - callback(entry) - else - connt[#connt+1] = entry - end - end - end - - return callback and true or connt -end - -function net.devices() - local devs = {} - local seen = {} - for k, v in ipairs(nixio.getifaddrs()) do - if v.name and not seen[v.name] then - seen[v.name] = true - devs[#devs+1] = v.name - end - end - return devs -end - -function net.duid_to_mac(duid) - local b1, b2, b3, b4, b5, b6 - - if type(duid) == "string" then - -- DUID-LLT / Ethernet - if #duid == 28 then - b1, b2, b3, b4, b5, b6 = duid:match("^00010001(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)%x%x%x%x%x%x%x%x$") - - -- DUID-LL / Ethernet - elseif #duid == 20 then - b1, b2, b3, b4, b5, b6 = duid:match("^00030001(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)$") - - -- DUID-LL / Ethernet (Without Header) - elseif #duid == 12 then - b1, b2, b3, b4, b5, b6 = duid:match("^(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)$") - end - end - - return b1 and luci.ip.checkmac(table.concat({ b1, b2, b3, b4, b5, b6 }, ":")) -end - -process = {} - -function process.info(key) - local s = {uid = nixio.getuid(), gid = nixio.getgid()} - return not key and s or s[key] -end - -function process.list() - local data = {} - local k - local ps = luci.util.execi("/bin/busybox top -bn1") - - if not ps then - return - end - - for line in ps do - local pid, ppid, user, stat, vsz, mem, cpu, cmd = line:match( - "^ *(%d+) +(%d+) +(%S.-%S) +([RSDZTW][ 2 then - fd:close() - end -end - -function process.exec(command, stdout, stderr, nowait) - local out_r, out_w, err_r, err_w - if stdout then out_r, out_w = nixio.pipe() end - if stderr then err_r, err_w = nixio.pipe() end - - local pid = nixio.fork() - if pid == 0 then - nixio.chdir("/") - - local null = nixio.open("/dev/null", "w+") - if null then - nixio.dup(out_w or null, nixio.stdout) - nixio.dup(err_w or null, nixio.stderr) - nixio.dup(null, nixio.stdin) - xclose(out_w) - xclose(out_r) - xclose(err_w) - xclose(err_r) - xclose(null) - end - - nixio.exec(unpack(command)) - os.exit(-1) - end - - local _, pfds, rv = nil, {}, { code = -1, pid = pid } - - xclose(out_w) - xclose(err_w) - - if out_r then - pfds[#pfds+1] = { - fd = out_r, - cb = type(stdout) == "function" and stdout, - name = "stdout", - events = nixio.poll_flags("in", "err", "hup") - } - end - - if err_r then - pfds[#pfds+1] = { - fd = err_r, - cb = type(stderr) == "function" and stderr, - name = "stderr", - events = nixio.poll_flags("in", "err", "hup") - } - end - - while #pfds > 0 do - local nfds, err = nixio.poll(pfds, -1) - if not nfds and err ~= nixio.const.EINTR then - break - end - - local i - for i = #pfds, 1, -1 do - local rfd = pfds[i] - if rfd.revents > 0 then - local chunk, err = rfd.fd:read(4096) - if chunk and #chunk > 0 then - if rfd.cb then - rfd.cb(chunk) - else - rfd.buf = rfd.buf or {} - rfd.buf[#rfd.buf + 1] = chunk - end - else - table.remove(pfds, i) - if rfd.buf then - rv[rfd.name] = table.concat(rfd.buf, "") - end - rfd.fd:close() - end - end - end - end - - if not nowait then - _, _, rv.code = nixio.waitpid(pid) - end - - return rv -end - - -user = {} - --- { "uid", "gid", "name", "passwd", "dir", "shell", "gecos" } -user.getuser = nixio.getpw - -function user.getpasswd(username) - local pwe = nixio.getsp and nixio.getsp(username) or nixio.getpw(username) - local pwh = pwe and (pwe.pwdp or pwe.passwd) - if not pwh or #pwh < 1 or pwh == "!" or pwh == "x" then - return nil, pwe - else - return pwh, pwe - end -end - -function user.checkpasswd(username, pass) - local pwh, pwe = user.getpasswd(username) - if pwe then - return (pwh == nil or nixio.crypt(pass, pwh) == pwh) - end - return false -end - -function user.setpasswd(username, password) - return os.execute("(echo %s; sleep 1; echo %s) | passwd %s >/dev/null 2>&1" %{ - luci.util.shellquote(password), - luci.util.shellquote(password), - luci.util.shellquote(username) - }) -end - - -wifi = {} - -function wifi.getiwinfo(ifname) - ntm.init() - - local wnet = ntm:get_wifinet(ifname) - if wnet and wnet.iwinfo then - return wnet.iwinfo - end - - local wdev = ntm:get_wifidev(ifname) - if wdev and wdev.iwinfo then - return wdev.iwinfo - end - - return { ifname = ifname } -end - - -init = {} -init.dir = "/etc/init.d/" - -function init.names() - local names = { } - for name in fs.glob(init.dir.."*") do - names[#names+1] = fs.basename(name) - end - return names -end - -function init.index(name) - if fs.access(init.dir..name) then - return call("env -i sh -c 'source %s%s enabled; exit ${START:-255}' >/dev/null" - %{ init.dir, name }) - end -end - -local function init_action(action, name) - if fs.access(init.dir..name) then - return call("env -i %s%s %s >/dev/null" %{ init.dir, name, action }) - end -end - -function init.enabled(name) - return (init_action("enabled", name) == 0) -end - -function init.enable(name) - return (init_action("enable", name) == 1) -end - -function init.disable(name) - return (init_action("disable", name) == 0) -end - -function init.start(name) - return (init_action("start", name) == 0) -end - -function init.stop(name) - return (init_action("stop", name) == 0) -end - -function init.restart(name) - return (init_action("restart", name) == 0) -end - -function init.reload(name) - return (init_action("reload", name) == 0) -end diff --git a/luci-base/luasrc/sys.luadoc b/luci-base/luasrc/sys.luadoc deleted file mode 100644 index 162650e7a..000000000 --- a/luci-base/luasrc/sys.luadoc +++ /dev/null @@ -1,441 +0,0 @@ ----[[ -LuCI Linux and POSIX system utilities. -]] -module "luci.sys" - ----[[ -Execute a given shell command and return the error code - -@class function -@name call -@param ... Command to call -@return Error code of the command -]] - ----[[ -Execute a given shell command and capture its standard output - -@class function -@name exec -@param command Command to call -@return String containing the return the output of the command -]] - ----[[ -Retrieve information about currently mounted file systems. - -@class function -@name mounts -@return Table containing mount information -]] - ----[[ -Retrieve environment variables. If no variable is given then a table - -containing the whole environment is returned otherwise this function returns -the corresponding string value for the given name or nil if no such variable -exists. -@class function -@name getenv -@param var Name of the environment variable to retrieve (optional) -@return String containing the value of the specified variable -@return Table containing all variables if no variable name is given -]] - ----[[ -Get or set the current hostname. - -@class function -@name hostname -@param String containing a new hostname to set (optional) -@return String containing the system hostname -]] - ----[[ -Returns the contents of a documented referred by an URL. - -@class function -@name httpget -@param url The URL to retrieve -@param stream Return a stream instead of a buffer -@param target Directly write to target file name -@return String containing the contents of given the URL -]] - ----[[ -Initiate a system reboot. - -@class function -@name reboot -@return Return value of os.execute() -]] - ----[[ -Retrieves the output of the "logread" command. - -@class function -@name syslog -@return String containing the current log buffer -]] - ----[[ -Retrieves the output of the "dmesg" command. - -@class function -@name dmesg -@return String containing the current log buffer -]] - ----[[ -Generates a random id with specified length. - -@class function -@name uniqueid -@param bytes Number of bytes for the unique id -@return String containing hex encoded id -]] - ----[[ -Returns the current system uptime stats. - -@class function -@name uptime -@return String containing total uptime in seconds -]] - ----[[ -LuCI system utilities / network related functions. - -@class module -@name luci.sys.net -]] - ----[[ -Returns the current arp-table entries as two-dimensional table. - -@class function -@name net.arptable -@return Table of table containing the current arp entries. --- The following fields are defined for arp entry objects: --- { "IP address", "HW address", "HW type", "Flags", "Mask", "Device" } -]] - ----[[ -Returns a two-dimensional table of mac address hints. - -@class function -@name net.mac_hints -@return Table of table containing known hosts from various sources. - Each entry contains the values in the following order: - [ "mac", "name" ] -]] - ----[[ -Returns a two-dimensional table of IPv4 address hints. - -@class function -@name net.ipv4_hints -@return Table of table containing known hosts from various sources. - Each entry contains the values in the following order: - [ "ip", "name" ] -]] - ----[[ -Returns a two-dimensional table of IPv6 address hints. - -@class function -@name net.ipv6_hints -@return Table of table containing known hosts from various sources. - Each entry contains the values in the following order: - [ "ip", "name" ] -]] - ----[[ -Returns a two-dimensional table of host hints. - -@class function -@name net.host_hints -@return Table of table containing known hosts from various sources, - indexed by mac address. Each subtable contains at least one - of the fields "name", "ipv4" or "ipv6". -]] - ----[[ -Returns conntrack information - -@class function -@name net.conntrack -@return Table with the currently tracked IP connections -]] - ----[[ -Determine the names of available network interfaces. - -@class function -@name net.devices -@return Table containing all current interface names -]] - ----[[ -Return information about available network interfaces. - -@class function -@name net.deviceinfo -@return Table containing all current interface names and their information -]] - ----[[ -Returns the current kernel routing table entries. - -@class function -@name net.routes -@return Table of tables with properties of the corresponding routes. --- The following fields are defined for route entry tables: --- { "dest", "gateway", "metric", "refcount", "usecount", "irtt", --- "flags", "device" } -]] - ----[[ -Returns the current ipv6 kernel routing table entries. - -@class function -@name net.routes6 -@return Table of tables with properties of the corresponding routes. --- The following fields are defined for route entry tables: --- { "source", "dest", "nexthop", "metric", "refcount", "usecount", --- "flags", "device" } -]] - ----[[ -Tests whether the given host responds to ping probes. - -@class function -@name net.pingtest -@param host String containing a hostname or IPv4 address -@return Number containing 0 on success and >= 1 on error -]] - ----[[ -LuCI system utilities / process related functions. - -@class module -@name luci.sys.process -]] - ----[[ -Get the current process id. - -@class function -@name process.info -@return Number containing the current pid -]] - ----[[ -Retrieve information about currently running processes. - -@class function -@name process.list -@return Table containing process information -]] - ----[[ -Set the gid of a process identified by given pid. - -@class function -@name process.setgroup -@param gid Number containing the Unix group id -@return Boolean indicating successful operation -@return String containing the error message if failed -@return Number containing the error code if failed -]] - ----[[ -Set the uid of a process identified by given pid. - -@class function -@name process.setuser -@param uid Number containing the Unix user id -@return Boolean indicating successful operation -@return String containing the error message if failed -@return Number containing the error code if failed -]] - ----[[ -Send a signal to a process identified by given pid. - -@class function -@name process.signal -@param pid Number containing the process id -@param sig Signal to send (default: 15 [SIGTERM]) -@return Boolean indicating successful operation -@return Number containing the error code if failed -]] - ----[[ -Execute a process, optionally capturing stdio. - -Executes the process specified by the given argv vector, e.g. -`{ "/bin/sh", "-c", "echo 1" }` and waits for it to terminate unless a true -value has been passed for the "nowait" parameter. - -When a function value is passed for the stdout or stderr arguments, the passed -function is repeatedly called for each chunk read from the corresponding stdio -stream. The read data is passed as string containing at most 4096 bytes at a -time. - -When a true, non-function value is passed for the stdout or stderr arguments, -the data of the corresponding stdio stream is read into an internal string -buffer and returned as "stdout" or "stderr" field respectively in the result -table. - -When a true value is passed to the nowait parameter, the function does not -await process termination but returns as soon as all captured stdio streams -have been closed or - if no streams are captured - immediately after launching -the process. - -@class function -@name process.exec -@param commend Table containing the argv vector to execute -@param stdout Callback function or boolean to indicate capturing (optional) -@param stderr Callback function or boolean to indicate capturing (optional) -@param nowait Don't wait for process termination when true (optional) -@return Table containing at least the fields "code" which holds the exit - status of the invoked process or "-1" on error and "pid", which - contains the process id assigned to the spawned process. When - stdout and/or stderr capturing has been requested, it additionally - contains "stdout" and "stderr" fields respectively, holding the - captured stdio data as string. -]] - ----[[ -LuCI system utilities / user related functions. - -@class module -@name luci.sys.user -]] - ----[[ -Retrieve user information for given uid. - -@class function -@name getuser -@param uid Number containing the Unix user id -@return Table containing the following fields: --- { "uid", "gid", "name", "passwd", "dir", "shell", "gecos" } -]] - ----[[ -Retrieve the current user password hash. - -@class function -@name user.getpasswd -@param username String containing the username to retrieve the password for -@return String containing the hash or nil if no password is set. -@return Password database entry -]] - ----[[ -Test whether given string matches the password of a given system user. - -@class function -@name user.checkpasswd -@param username String containing the Unix user name -@param pass String containing the password to compare -@return Boolean indicating whether the passwords are equal -]] - ----[[ -Change the password of given user. - -@class function -@name user.setpasswd -@param username String containing the Unix user name -@param password String containing the password to compare -@return Number containing 0 on success and >= 1 on error -]] - ----[[ -LuCI system utilities / wifi related functions. - -@class module -@name luci.sys.wifi -]] - ----[[ -Get wireless information for given interface. - -@class function -@name wifi.getiwinfo -@param ifname String containing the interface name -@return A wrapped iwinfo object instance -]] - ----[[ -LuCI system utilities / init related functions. - -@class module -@name luci.sys.init -]] - ----[[ -Get the names of all installed init scripts - -@class function -@name init.names -@return Table containing the names of all inistalled init scripts -]] - ----[[ -Get the index of he given init script - -@class function -@name init.index -@param name Name of the init script -@return Numeric index value -]] - ----[[ -Test whether the given init script is enabled - -@class function -@name init.enabled -@param name Name of the init script -@return Boolean indicating whether init is enabled -]] - ----[[ -Enable the given init script - -@class function -@name init.enable -@param name Name of the init script -@return Boolean indicating success -]] - ----[[ -Disable the given init script - -@class function -@name init.disable -@param name Name of the init script -@return Boolean indicating success -]] - ----[[ -Start the given init script - -@class function -@name init.start -@param name Name of the init script -@return Boolean indicating success -]] - ----[[ -Stop the given init script - -@class function -@name init.stop -@param name Name of the init script -@return Boolean indicating success -]] - diff --git a/luci-base/luasrc/sys/zoneinfo.lua b/luci-base/luasrc/sys/zoneinfo.lua deleted file mode 100644 index aa054a246..000000000 --- a/luci-base/luasrc/sys/zoneinfo.lua +++ /dev/null @@ -1,19 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -local setmetatable, require, rawget, rawset = setmetatable, require, rawget, rawset - -module "luci.sys.zoneinfo" - -setmetatable(_M, { - __index = function(t, k) - if k == "TZ" and not rawget(t, k) then - local m = require "luci.sys.zoneinfo.tzdata" - rawset(t, k, rawget(m, k)) - elseif k == "OFFSET" and not rawget(t, k) then - local m = require "luci.sys.zoneinfo.tzoffset" - rawset(t, k, rawget(m, k)) - end - - return rawget(t, k) - end -}) diff --git a/luci-base/luasrc/sys/zoneinfo/tzdata.lua b/luci-base/luasrc/sys/zoneinfo/tzdata.lua deleted file mode 100644 index eec91820a..000000000 --- a/luci-base/luasrc/sys/zoneinfo/tzdata.lua +++ /dev/null @@ -1,458 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -module "luci.sys.zoneinfo.tzdata" - -TZ = { - { 'Africa/Abidjan', 'GMT0' }, - { 'Africa/Accra', 'GMT0' }, - { 'Africa/Addis Ababa', 'EAT-3' }, - { 'Africa/Algiers', 'CET-1' }, - { 'Africa/Asmara', 'EAT-3' }, - { 'Africa/Bamako', 'GMT0' }, - { 'Africa/Bangui', 'WAT-1' }, - { 'Africa/Banjul', 'GMT0' }, - { 'Africa/Bissau', 'GMT0' }, - { 'Africa/Blantyre', 'CAT-2' }, - { 'Africa/Brazzaville', 'WAT-1' }, - { 'Africa/Bujumbura', 'CAT-2' }, - { 'Africa/Cairo', 'EET-2' }, - { 'Africa/Casablanca', '<+01>-1' }, - { 'Africa/Ceuta', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Africa/Conakry', 'GMT0' }, - { 'Africa/Dakar', 'GMT0' }, - { 'Africa/Dar es Salaam', 'EAT-3' }, - { 'Africa/Djibouti', 'EAT-3' }, - { 'Africa/Douala', 'WAT-1' }, - { 'Africa/El Aaiun', '<+01>-1' }, - { 'Africa/Freetown', 'GMT0' }, - { 'Africa/Gaborone', 'CAT-2' }, - { 'Africa/Harare', 'CAT-2' }, - { 'Africa/Johannesburg', 'SAST-2' }, - { 'Africa/Juba', 'EAT-3' }, - { 'Africa/Kampala', 'EAT-3' }, - { 'Africa/Khartoum', 'CAT-2' }, - { 'Africa/Kigali', 'CAT-2' }, - { 'Africa/Kinshasa', 'WAT-1' }, - { 'Africa/Lagos', 'WAT-1' }, - { 'Africa/Libreville', 'WAT-1' }, - { 'Africa/Lome', 'GMT0' }, - { 'Africa/Luanda', 'WAT-1' }, - { 'Africa/Lubumbashi', 'CAT-2' }, - { 'Africa/Lusaka', 'CAT-2' }, - { 'Africa/Malabo', 'WAT-1' }, - { 'Africa/Maputo', 'CAT-2' }, - { 'Africa/Maseru', 'SAST-2' }, - { 'Africa/Mbabane', 'SAST-2' }, - { 'Africa/Mogadishu', 'EAT-3' }, - { 'Africa/Monrovia', 'GMT0' }, - { 'Africa/Nairobi', 'EAT-3' }, - { 'Africa/Ndjamena', 'WAT-1' }, - { 'Africa/Niamey', 'WAT-1' }, - { 'Africa/Nouakchott', 'GMT0' }, - { 'Africa/Ouagadougou', 'GMT0' }, - { 'Africa/Porto-Novo', 'WAT-1' }, - { 'Africa/Sao Tome', 'GMT0' }, - { 'Africa/Tripoli', 'EET-2' }, - { 'Africa/Tunis', 'CET-1' }, - { 'Africa/Windhoek', 'CAT-2' }, - { 'America/Adak', 'HST10HDT,M3.2.0,M11.1.0' }, - { 'America/Anchorage', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Anguilla', 'AST4' }, - { 'America/Antigua', 'AST4' }, - { 'America/Araguaina', '<-03>3' }, - { 'America/Argentina/Buenos Aires', '<-03>3' }, - { 'America/Argentina/Catamarca', '<-03>3' }, - { 'America/Argentina/Cordoba', '<-03>3' }, - { 'America/Argentina/Jujuy', '<-03>3' }, - { 'America/Argentina/La Rioja', '<-03>3' }, - { 'America/Argentina/Mendoza', '<-03>3' }, - { 'America/Argentina/Rio Gallegos', '<-03>3' }, - { 'America/Argentina/Salta', '<-03>3' }, - { 'America/Argentina/San Juan', '<-03>3' }, - { 'America/Argentina/San Luis', '<-03>3' }, - { 'America/Argentina/Tucuman', '<-03>3' }, - { 'America/Argentina/Ushuaia', '<-03>3' }, - { 'America/Aruba', 'AST4' }, - { 'America/Asuncion', '<-04>4<-03>,M10.1.0/0,M3.4.0/0' }, - { 'America/Atikokan', 'EST5' }, - { 'America/Bahia', '<-03>3' }, - { 'America/Bahia Banderas', 'CST6CDT,M4.1.0,M10.5.0' }, - { 'America/Barbados', 'AST4' }, - { 'America/Belem', '<-03>3' }, - { 'America/Belize', 'CST6' }, - { 'America/Blanc-Sablon', 'AST4' }, - { 'America/Boa Vista', '<-04>4' }, - { 'America/Bogota', '<-05>5' }, - { 'America/Boise', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Cambridge Bay', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Campo Grande', '<-04>4' }, - { 'America/Cancun', 'EST5' }, - { 'America/Caracas', '<-04>4' }, - { 'America/Cayenne', '<-03>3' }, - { 'America/Cayman', 'EST5' }, - { 'America/Chicago', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Chihuahua', 'MST7MDT,M4.1.0,M10.5.0' }, - { 'America/Costa Rica', 'CST6' }, - { 'America/Creston', 'MST7' }, - { 'America/Cuiaba', '<-04>4' }, - { 'America/Curacao', 'AST4' }, - { 'America/Danmarkshavn', 'GMT0' }, - { 'America/Dawson', 'PST8PDT,M3.2.0,M11.1.0' }, - { 'America/Dawson Creek', 'MST7' }, - { 'America/Denver', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Detroit', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Dominica', 'AST4' }, - { 'America/Edmonton', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Eirunepe', '<-05>5' }, - { 'America/El Salvador', 'CST6' }, - { 'America/Fort Nelson', 'MST7' }, - { 'America/Fortaleza', '<-03>3' }, - { 'America/Glace Bay', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Godthab', '<-03>3<-02>,M3.5.0/-2,M10.5.0/-1' }, - { 'America/Goose Bay', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Grand Turk', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Grenada', 'AST4' }, - { 'America/Guadeloupe', 'AST4' }, - { 'America/Guatemala', 'CST6' }, - { 'America/Guayaquil', '<-05>5' }, - { 'America/Guyana', '<-04>4' }, - { 'America/Halifax', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Havana', 'CST5CDT,M3.2.0/0,M11.1.0/1' }, - { 'America/Hermosillo', 'MST7' }, - { 'America/Indiana/Indianapolis', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Knox', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Marengo', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Petersburg', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Tell City', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Vevay', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Vincennes', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Winamac', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Inuvik', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Iqaluit', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Jamaica', 'EST5' }, - { 'America/Juneau', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Kentucky/Louisville', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Kentucky/Monticello', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Kralendijk', 'AST4' }, - { 'America/La Paz', '<-04>4' }, - { 'America/Lima', '<-05>5' }, - { 'America/Los Angeles', 'PST8PDT,M3.2.0,M11.1.0' }, - { 'America/Lower Princes', 'AST4' }, - { 'America/Maceio', '<-03>3' }, - { 'America/Managua', 'CST6' }, - { 'America/Manaus', '<-04>4' }, - { 'America/Marigot', 'AST4' }, - { 'America/Martinique', 'AST4' }, - { 'America/Matamoros', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Mazatlan', 'MST7MDT,M4.1.0,M10.5.0' }, - { 'America/Menominee', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Merida', 'CST6CDT,M4.1.0,M10.5.0' }, - { 'America/Metlakatla', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Mexico City', 'CST6CDT,M4.1.0,M10.5.0' }, - { 'America/Miquelon', '<-03>3<-02>,M3.2.0,M11.1.0' }, - { 'America/Moncton', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Monterrey', 'CST6CDT,M4.1.0,M10.5.0' }, - { 'America/Montevideo', '<-03>3' }, - { 'America/Montserrat', 'AST4' }, - { 'America/Nassau', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/New York', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Nipigon', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Nome', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Noronha', '<-02>2' }, - { 'America/North Dakota/Beulah', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/North Dakota/Center', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/North Dakota/New Salem', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Ojinaga', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Panama', 'EST5' }, - { 'America/Pangnirtung', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Paramaribo', '<-03>3' }, - { 'America/Phoenix', 'MST7' }, - { 'America/Port of Spain', 'AST4' }, - { 'America/Port-au-Prince', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Porto Velho', '<-04>4' }, - { 'America/Puerto Rico', 'AST4' }, - { 'America/Punta Arenas', '<-03>3' }, - { 'America/Rainy River', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Rankin Inlet', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Recife', '<-03>3' }, - { 'America/Regina', 'CST6' }, - { 'America/Resolute', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Rio Branco', '<-05>5' }, - { 'America/Santarem', '<-03>3' }, - { 'America/Santiago', '<-04>4<-03>,M9.1.6/24,M4.1.6/24' }, - { 'America/Santo Domingo', 'AST4' }, - { 'America/Sao Paulo', '<-03>3' }, - { 'America/Scoresbysund', '<-01>1<+00>,M3.5.0/0,M10.5.0/1' }, - { 'America/Sitka', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/St Barthelemy', 'AST4' }, - { 'America/St Johns', 'NST3:30NDT,M3.2.0,M11.1.0' }, - { 'America/St Kitts', 'AST4' }, - { 'America/St Lucia', 'AST4' }, - { 'America/St Thomas', 'AST4' }, - { 'America/St Vincent', 'AST4' }, - { 'America/Swift Current', 'CST6' }, - { 'America/Tegucigalpa', 'CST6' }, - { 'America/Thule', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Thunder Bay', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Tijuana', 'PST8PDT,M3.2.0,M11.1.0' }, - { 'America/Toronto', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Tortola', 'AST4' }, - { 'America/Vancouver', 'PST8PDT,M3.2.0,M11.1.0' }, - { 'America/Whitehorse', 'PST8PDT,M3.2.0,M11.1.0' }, - { 'America/Winnipeg', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Yakutat', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Yellowknife', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'Antarctica/Casey', '<+08>-8' }, - { 'Antarctica/Davis', '<+07>-7' }, - { 'Antarctica/DumontDUrville', '<+10>-10' }, - { 'Antarctica/Macquarie', '<+11>-11' }, - { 'Antarctica/Mawson', '<+05>-5' }, - { 'Antarctica/McMurdo', 'NZST-12NZDT,M9.5.0,M4.1.0/3' }, - { 'Antarctica/Palmer', '<-03>3' }, - { 'Antarctica/Rothera', '<-03>3' }, - { 'Antarctica/Syowa', '<+03>-3' }, - { 'Antarctica/Troll', '<+00>0<+02>-2,M3.5.0/1,M10.5.0/3' }, - { 'Antarctica/Vostok', '<+06>-6' }, - { 'Arctic/Longyearbyen', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Asia/Aden', '<+03>-3' }, - { 'Asia/Almaty', '<+06>-6' }, - { 'Asia/Amman', 'EET-2EEST,M3.5.4/24,M10.5.5/1' }, - { 'Asia/Anadyr', '<+12>-12' }, - { 'Asia/Aqtau', '<+05>-5' }, - { 'Asia/Aqtobe', '<+05>-5' }, - { 'Asia/Ashgabat', '<+05>-5' }, - { 'Asia/Atyrau', '<+05>-5' }, - { 'Asia/Baghdad', '<+03>-3' }, - { 'Asia/Bahrain', '<+03>-3' }, - { 'Asia/Baku', '<+04>-4' }, - { 'Asia/Bangkok', '<+07>-7' }, - { 'Asia/Barnaul', '<+07>-7' }, - { 'Asia/Beirut', 'EET-2EEST,M3.5.0/0,M10.5.0/0' }, - { 'Asia/Bishkek', '<+06>-6' }, - { 'Asia/Brunei', '<+08>-8' }, - { 'Asia/Chita', '<+09>-9' }, - { 'Asia/Choibalsan', '<+08>-8' }, - { 'Asia/Colombo', '<+0530>-5:30' }, - { 'Asia/Damascus', 'EET-2EEST,M3.5.5/0,M10.5.5/0' }, - { 'Asia/Dhaka', '<+06>-6' }, - { 'Asia/Dili', '<+09>-9' }, - { 'Asia/Dubai', '<+04>-4' }, - { 'Asia/Dushanbe', '<+05>-5' }, - { 'Asia/Famagusta', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Asia/Gaza', 'EET-2EEST,M3.5.5/0,M10.5.6/1' }, - { 'Asia/Hebron', 'EET-2EEST,M3.5.5/0,M10.5.6/1' }, - { 'Asia/Ho Chi Minh', '<+07>-7' }, - { 'Asia/Hong Kong', 'HKT-8' }, - { 'Asia/Hovd', '<+07>-7' }, - { 'Asia/Irkutsk', '<+08>-8' }, - { 'Asia/Jakarta', 'WIB-7' }, - { 'Asia/Jayapura', 'WIT-9' }, - { 'Asia/Jerusalem', 'IST-2IDT,M3.4.4/26,M10.5.0' }, - { 'Asia/Kabul', '<+0430>-4:30' }, - { 'Asia/Kamchatka', '<+12>-12' }, - { 'Asia/Karachi', 'PKT-5' }, - { 'Asia/Kathmandu', '<+0545>-5:45' }, - { 'Asia/Khandyga', '<+09>-9' }, - { 'Asia/Kolkata', 'IST-5:30' }, - { 'Asia/Krasnoyarsk', '<+07>-7' }, - { 'Asia/Kuala Lumpur', '<+08>-8' }, - { 'Asia/Kuching', '<+08>-8' }, - { 'Asia/Kuwait', '<+03>-3' }, - { 'Asia/Macau', 'CST-8' }, - { 'Asia/Magadan', '<+11>-11' }, - { 'Asia/Makassar', 'WITA-8' }, - { 'Asia/Manila', 'PST-8' }, - { 'Asia/Muscat', '<+04>-4' }, - { 'Asia/Nicosia', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Asia/Novokuznetsk', '<+07>-7' }, - { 'Asia/Novosibirsk', '<+07>-7' }, - { 'Asia/Omsk', '<+06>-6' }, - { 'Asia/Oral', '<+05>-5' }, - { 'Asia/Phnom Penh', '<+07>-7' }, - { 'Asia/Pontianak', 'WIB-7' }, - { 'Asia/Pyongyang', 'KST-9' }, - { 'Asia/Qatar', '<+03>-3' }, - { 'Asia/Qostanay', '<+06>-6' }, - { 'Asia/Qyzylorda', '<+05>-5' }, - { 'Asia/Riyadh', '<+03>-3' }, - { 'Asia/Sakhalin', '<+11>-11' }, - { 'Asia/Samarkand', '<+05>-5' }, - { 'Asia/Seoul', 'KST-9' }, - { 'Asia/Shanghai', 'CST-8' }, - { 'Asia/Singapore', '<+08>-8' }, - { 'Asia/Srednekolymsk', '<+11>-11' }, - { 'Asia/Taipei', 'CST-8' }, - { 'Asia/Tashkent', '<+05>-5' }, - { 'Asia/Tbilisi', '<+04>-4' }, - { 'Asia/Tehran', '<+0330>-3:30<+0430>,J79/24,J263/24' }, - { 'Asia/Thimphu', '<+06>-6' }, - { 'Asia/Tokyo', 'JST-9' }, - { 'Asia/Tomsk', '<+07>-7' }, - { 'Asia/Ulaanbaatar', '<+08>-8' }, - { 'Asia/Urumqi', '<+06>-6' }, - { 'Asia/Ust-Nera', '<+10>-10' }, - { 'Asia/Vientiane', '<+07>-7' }, - { 'Asia/Vladivostok', '<+10>-10' }, - { 'Asia/Yakutsk', '<+09>-9' }, - { 'Asia/Yangon', '<+0630>-6:30' }, - { 'Asia/Yekaterinburg', '<+05>-5' }, - { 'Asia/Yerevan', '<+04>-4' }, - { 'Atlantic/Azores', '<-01>1<+00>,M3.5.0/0,M10.5.0/1' }, - { 'Atlantic/Bermuda', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'Atlantic/Canary', 'WET0WEST,M3.5.0/1,M10.5.0' }, - { 'Atlantic/Cape Verde', '<-01>1' }, - { 'Atlantic/Faroe', 'WET0WEST,M3.5.0/1,M10.5.0' }, - { 'Atlantic/Madeira', 'WET0WEST,M3.5.0/1,M10.5.0' }, - { 'Atlantic/Reykjavik', 'GMT0' }, - { 'Atlantic/South Georgia', '<-02>2' }, - { 'Atlantic/St Helena', 'GMT0' }, - { 'Atlantic/Stanley', '<-03>3' }, - { 'Australia/Adelaide', 'ACST-9:30ACDT,M10.1.0,M4.1.0/3' }, - { 'Australia/Brisbane', 'AEST-10' }, - { 'Australia/Broken Hill', 'ACST-9:30ACDT,M10.1.0,M4.1.0/3' }, - { 'Australia/Currie', 'AEST-10AEDT,M10.1.0,M4.1.0/3' }, - { 'Australia/Darwin', 'ACST-9:30' }, - { 'Australia/Eucla', '<+0845>-8:45' }, - { 'Australia/Hobart', 'AEST-10AEDT,M10.1.0,M4.1.0/3' }, - { 'Australia/Lindeman', 'AEST-10' }, - { 'Australia/Lord Howe', '<+1030>-10:30<+11>-11,M10.1.0,M4.1.0' }, - { 'Australia/Melbourne', 'AEST-10AEDT,M10.1.0,M4.1.0/3' }, - { 'Australia/Perth', 'AWST-8' }, - { 'Australia/Sydney', 'AEST-10AEDT,M10.1.0,M4.1.0/3' }, - { 'Etc/GMT', 'GMT0' }, - { 'Etc/GMT+1', '<-01>1' }, - { 'Etc/GMT+10', '<-10>10' }, - { 'Etc/GMT+11', '<-11>11' }, - { 'Etc/GMT+12', '<-12>12' }, - { 'Etc/GMT+2', '<-02>2' }, - { 'Etc/GMT+3', '<-03>3' }, - { 'Etc/GMT+4', '<-04>4' }, - { 'Etc/GMT+5', '<-05>5' }, - { 'Etc/GMT+6', '<-06>6' }, - { 'Etc/GMT+7', '<-07>7' }, - { 'Etc/GMT+8', '<-08>8' }, - { 'Etc/GMT+9', '<-09>9' }, - { 'Etc/GMT-1', '<+01>-1' }, - { 'Etc/GMT-10', '<+10>-10' }, - { 'Etc/GMT-11', '<+11>-11' }, - { 'Etc/GMT-12', '<+12>-12' }, - { 'Etc/GMT-13', '<+13>-13' }, - { 'Etc/GMT-14', '<+14>-14' }, - { 'Etc/GMT-2', '<+02>-2' }, - { 'Etc/GMT-3', '<+03>-3' }, - { 'Etc/GMT-4', '<+04>-4' }, - { 'Etc/GMT-5', '<+05>-5' }, - { 'Etc/GMT-6', '<+06>-6' }, - { 'Etc/GMT-7', '<+07>-7' }, - { 'Etc/GMT-8', '<+08>-8' }, - { 'Etc/GMT-9', '<+09>-9' }, - { 'Europe/Amsterdam', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Andorra', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Astrakhan', '<+04>-4' }, - { 'Europe/Athens', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Belgrade', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Berlin', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Bratislava', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Brussels', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Bucharest', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Budapest', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Busingen', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Chisinau', 'EET-2EEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Copenhagen', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Dublin', 'IST-1GMT0,M10.5.0,M3.5.0/1' }, - { 'Europe/Gibraltar', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Guernsey', 'GMT0BST,M3.5.0/1,M10.5.0' }, - { 'Europe/Helsinki', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Isle of Man', 'GMT0BST,M3.5.0/1,M10.5.0' }, - { 'Europe/Istanbul', '<+03>-3' }, - { 'Europe/Jersey', 'GMT0BST,M3.5.0/1,M10.5.0' }, - { 'Europe/Kaliningrad', 'EET-2' }, - { 'Europe/Kiev', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Kirov', '<+03>-3' }, - { 'Europe/Lisbon', 'WET0WEST,M3.5.0/1,M10.5.0' }, - { 'Europe/Ljubljana', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/London', 'GMT0BST,M3.5.0/1,M10.5.0' }, - { 'Europe/Luxembourg', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Madrid', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Malta', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Mariehamn', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Minsk', '<+03>-3' }, - { 'Europe/Monaco', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Moscow', 'MSK-3' }, - { 'Europe/Oslo', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Paris', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Podgorica', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Prague', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Riga', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Rome', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Samara', '<+04>-4' }, - { 'Europe/San Marino', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Sarajevo', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Saratov', '<+04>-4' }, - { 'Europe/Simferopol', 'MSK-3' }, - { 'Europe/Skopje', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Sofia', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Stockholm', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Tallinn', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Tirane', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Ulyanovsk', '<+04>-4' }, - { 'Europe/Uzhgorod', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Vaduz', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Vatican', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Vienna', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Vilnius', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Volgograd', '<+04>-4' }, - { 'Europe/Warsaw', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Zagreb', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Zaporozhye', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Zurich', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Indian/Antananarivo', 'EAT-3' }, - { 'Indian/Chagos', '<+06>-6' }, - { 'Indian/Christmas', '<+07>-7' }, - { 'Indian/Cocos', '<+0630>-6:30' }, - { 'Indian/Comoro', 'EAT-3' }, - { 'Indian/Kerguelen', '<+05>-5' }, - { 'Indian/Mahe', '<+04>-4' }, - { 'Indian/Maldives', '<+05>-5' }, - { 'Indian/Mauritius', '<+04>-4' }, - { 'Indian/Mayotte', 'EAT-3' }, - { 'Indian/Reunion', '<+04>-4' }, - { 'Pacific/Apia', '<+13>-13<+14>,M9.5.0/3,M4.1.0/4' }, - { 'Pacific/Auckland', 'NZST-12NZDT,M9.5.0,M4.1.0/3' }, - { 'Pacific/Bougainville', '<+11>-11' }, - { 'Pacific/Chatham', '<+1245>-12:45<+1345>,M9.5.0/2:45,M4.1.0/3:45' }, - { 'Pacific/Chuuk', '<+10>-10' }, - { 'Pacific/Easter', '<-06>6<-05>,M9.1.6/22,M4.1.6/22' }, - { 'Pacific/Efate', '<+11>-11' }, - { 'Pacific/Enderbury', '<+13>-13' }, - { 'Pacific/Fakaofo', '<+13>-13' }, - { 'Pacific/Fiji', '<+12>-12<+13>,M11.1.0,M1.2.2/123' }, - { 'Pacific/Funafuti', '<+12>-12' }, - { 'Pacific/Galapagos', '<-06>6' }, - { 'Pacific/Gambier', '<-09>9' }, - { 'Pacific/Guadalcanal', '<+11>-11' }, - { 'Pacific/Guam', 'ChST-10' }, - { 'Pacific/Honolulu', 'HST10' }, - { 'Pacific/Kiritimati', '<+14>-14' }, - { 'Pacific/Kosrae', '<+11>-11' }, - { 'Pacific/Kwajalein', '<+12>-12' }, - { 'Pacific/Majuro', '<+12>-12' }, - { 'Pacific/Marquesas', '<-0930>9:30' }, - { 'Pacific/Midway', 'SST11' }, - { 'Pacific/Nauru', '<+12>-12' }, - { 'Pacific/Niue', '<-11>11' }, - { 'Pacific/Norfolk', '<+11>-11' }, - { 'Pacific/Noumea', '<+11>-11' }, - { 'Pacific/Pago Pago', 'SST11' }, - { 'Pacific/Palau', '<+09>-9' }, - { 'Pacific/Pitcairn', '<-08>8' }, - { 'Pacific/Pohnpei', '<+11>-11' }, - { 'Pacific/Port Moresby', '<+10>-10' }, - { 'Pacific/Rarotonga', '<-10>10' }, - { 'Pacific/Saipan', 'ChST-10' }, - { 'Pacific/Tahiti', '<-10>10' }, - { 'Pacific/Tarawa', '<+12>-12' }, - { 'Pacific/Tongatapu', '<+13>-13' }, - { 'Pacific/Wake', '<+12>-12' }, - { 'Pacific/Wallis', '<+12>-12' }, -} diff --git a/luci-base/luasrc/sys/zoneinfo/tzoffset.lua b/luci-base/luasrc/sys/zoneinfo/tzoffset.lua deleted file mode 100644 index e63e2a695..000000000 --- a/luci-base/luasrc/sys/zoneinfo/tzoffset.lua +++ /dev/null @@ -1,45 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -module "luci.sys.zoneinfo.tzoffset" - -OFFSET = { - gmt = 0, -- GMT - eat = 10800, -- EAT - cet = 3600, -- CET - wat = 3600, -- WAT - cat = 7200, -- CAT - eet = 7200, -- EET - sast = 7200, -- SAST - hst = -36000, -- HST - hdt = -32400, -- HDT - akst = -32400, -- AKST - akdt = -28800, -- AKDT - ast = -14400, -- AST - est = -18000, -- EST - cst = -21600, -- CST - cdt = -18000, -- CDT - mst = -25200, -- MST - mdt = -21600, -- MDT - pst = -28800, -- PST - pdt = -25200, -- PDT - nst = -12600, -- NST - ndt = -9000, -- NDT - nzst = 43200, -- NZST - nzdt = 46800, -- NZDT - hkt = 28800, -- HKT - wib = 25200, -- WIB - wit = 32400, -- WIT - ist = 7200, -- IST - idt = 10800, -- IDT - pkt = 18000, -- PKT - wita = 28800, -- WITA - kst = 32400, -- KST - jst = 32400, -- JST - wet = 0, -- WET - acst = 34200, -- ACST - acdt = 37800, -- ACDT - aest = 36000, -- AEST - awst = 28800, -- AWST - msk = 10800, -- MSK - sst = -39600, -- SST -} diff --git a/luci-base/luasrc/template.lua b/luci-base/luasrc/template.lua deleted file mode 100644 index ed46f5075..000000000 --- a/luci-base/luasrc/template.lua +++ /dev/null @@ -1,100 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local util = require "luci.util" -local config = require "luci.config" -local tparser = require "luci.template.parser" - -local tostring, pairs, loadstring = tostring, pairs, loadstring -local setmetatable, loadfile = setmetatable, loadfile -local getfenv, setfenv, rawget = getfenv, setfenv, rawget -local assert, type, error = assert, type, error - ---- LuCI template library. -module "luci.template" - -config.template = config.template or {} -viewdir = config.template.viewdir or util.libpath() .. "/view" - - --- Define the namespace for template modules -context = util.threadlocal() - ---- Render a certain template. --- @param name Template name --- @param scope Scope to assign to template (optional) -function render(name, scope) - return Template(name):render(scope or getfenv(2)) -end - ---- Render a template from a string. --- @param template Template string --- @param scope Scope to assign to template (optional) -function render_string(template, scope) - return Template(nil, template):render(scope or getfenv(2)) -end - - --- Template class -Template = util.class() - --- Shared template cache to store templates in to avoid unnecessary reloading -Template.cache = setmetatable({}, {__mode = "v"}) - - --- Constructor - Reads and compiles the template on-demand -function Template.__init__(self, name, template) - if name then - self.template = self.cache[name] - self.name = name - else - self.name = "[string]" - end - - -- Create a new namespace for this template - self.viewns = context.viewns - - -- If we have a cached template, skip compiling and loading - if not self.template then - - -- Compile template - local err - local sourcefile - - if name then - sourcefile = viewdir .. "/" .. name .. ".htm" - self.template, _, err = tparser.parse(sourcefile) - else - sourcefile = "[string]" - self.template, _, err = tparser.parse_string(template) - end - - -- If we have no valid template throw error, otherwise cache the template - if not self.template then - error("Failed to load template '" .. name .. "'.\n" .. - "Error while parsing template '" .. sourcefile .. "':\n" .. - (err or "Unknown syntax error")) - elseif name then - self.cache[name] = self.template - end - end -end - - --- Renders a template -function Template.render(self, scope) - scope = scope or getfenv(2) - - -- Put our predefined objects in the scope of the template - setfenv(self.template, setmetatable({}, {__index = - function(tbl, key) - return rawget(tbl, key) or self.viewns[key] or scope[key] - end})) - - -- Now finally render the thing - local stat, err = util.copcall(self.template) - if not stat then - error("Failed to execute template '" .. self.name .. "'.\n" .. - "A runtime error occurred: " .. tostring(err or "(nil)")) - end -end diff --git a/luci-base/luasrc/tools/proto.lua b/luci-base/luasrc/tools/proto.lua deleted file mode 100644 index 147688d2c..000000000 --- a/luci-base/luasrc/tools/proto.lua +++ /dev/null @@ -1,36 +0,0 @@ --- Copyright 2012 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -module("luci.tools.proto", package.seeall) - -function opt_macaddr(s, ifc, ...) - local v = luci.cbi.Value - local o = s:taboption("advanced", v, "macaddr", ...) - - o.placeholder = ifc and ifc:mac() - o.datatype = "macaddr" - - function o.cfgvalue(self, section) - local w = ifc and ifc:get_wifinet() - if w then - return w:get("macaddr") - else - return v.cfgvalue(self, section) - end - end - - function o.write(self, section, value) - local w = ifc and ifc:get_wifinet() - if w then - w:set("macaddr", value) - elseif value then - v.write(self, section, value) - else - v.remove(self, section) - end - end - - function o.remove(self, section) - self:write(section, nil) - end -end diff --git a/luci-base/luasrc/tools/status.lua b/luci-base/luasrc/tools/status.lua deleted file mode 100644 index e4bc4451a..000000000 --- a/luci-base/luasrc/tools/status.lua +++ /dev/null @@ -1,290 +0,0 @@ --- Copyright 2011 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -module("luci.tools.status", package.seeall) - -local uci = require "luci.model.uci".cursor() -local ipc = require "luci.ip" - -local function dhcp_leases_common(family) - local rv = { } - local nfs = require "nixio.fs" - local sys = require "luci.sys" - local leasefile = "/tmp/dhcp.leases" - - uci:foreach("dhcp", "dnsmasq", - function(s) - if s.leasefile and nfs.access(s.leasefile) then - leasefile = s.leasefile - return false - end - end) - - local fd = io.open(leasefile, "r") - if fd then - while true do - local ln = fd:read("*l") - if not ln then - break - else - local ts, mac, ip, name, duid = ln:match("^(%d+) (%S+) (%S+) (%S+) (%S+)") - local expire = tonumber(ts) or 0 - if ts and mac and ip and name and duid then - if family == 4 and not ip:match(":") then - rv[#rv+1] = { - expires = (expire ~= 0) and os.difftime(expire, os.time()), - macaddr = ipc.checkmac(mac) or "00:00:00:00:00:00", - ipaddr = ip, - hostname = (name ~= "*") and name - } - elseif family == 6 and ip:match(":") then - rv[#rv+1] = { - expires = (expire ~= 0) and os.difftime(expire, os.time()), - ip6addr = ip, - duid = (duid ~= "*") and duid, - hostname = (name ~= "*") and name - } - end - end - end - end - fd:close() - end - - local lease6file = "/tmp/hosts/odhcpd" - uci:foreach("dhcp", "odhcpd", - function(t) - if t.leasefile and nfs.access(t.leasefile) then - lease6file = t.leasefile - return false - end - end) - local fd = io.open(lease6file, "r") - if fd then - while true do - local ln = fd:read("*l") - if not ln then - break - else - local iface, duid, iaid, name, ts, id, length, ip = ln:match("^# (%S+) (%S+) (%S+) (%S+) (-?%d+) (%S+) (%S+) (.*)") - local expire = tonumber(ts) or 0 - if ip and iaid ~= "ipv4" and family == 6 then - rv[#rv+1] = { - expires = (expire >= 0) and os.difftime(expire, os.time()), - duid = duid, - ip6addr = ip, - hostname = (name ~= "-") and name - } - elseif ip and iaid == "ipv4" and family == 4 then - rv[#rv+1] = { - expires = (expire >= 0) and os.difftime(expire, os.time()), - macaddr = sys.net.duid_to_mac(duid) or "00:00:00:00:00:00", - ipaddr = ip, - hostname = (name ~= "-") and name - } - end - end - end - fd:close() - end - - if family == 6 then - local _, lease - local hosts = sys.net.host_hints() - for _, lease in ipairs(rv) do - local mac = sys.net.duid_to_mac(lease.duid) - local host = mac and hosts[mac] - if host then - if not lease.name then - lease.host_hint = host.name or host.ipv4 or host.ipv6 - elseif host.name and lease.hostname ~= host.name then - lease.host_hint = host.name - end - end - end - end - - return rv -end - -function dhcp_leases() - return dhcp_leases_common(4) -end - -function dhcp6_leases() - return dhcp_leases_common(6) -end - -function wifi_networks() - local rv = { } - local ntm = require "luci.model.network".init() - - local dev - for _, dev in ipairs(ntm:get_wifidevs()) do - local rd = { - up = dev:is_up(), - device = dev:name(), - name = dev:get_i18n(), - networks = { } - } - - local net - for _, net in ipairs(dev:get_wifinets()) do - local a, an = nil, 0 - for _, a in pairs(net:assoclist() or {}) do - an = an + 1 - end - - rd.networks[#rd.networks+1] = { - name = net:shortname(), - link = net:adminlink(), - up = net:is_up(), - mode = net:active_mode(), - ssid = net:active_ssid(), - bssid = net:active_bssid(), - encryption = net:active_encryption(), - frequency = net:frequency(), - channel = net:channel(), - signal = net:signal(), - quality = net:signal_percent(), - noise = net:noise(), - bitrate = net:bitrate(), - ifname = net:ifname(), - country = net:country(), - txpower = net:txpower(), - txpoweroff = net:txpower_offset(), - num_assoc = an, - disabled = (dev:get("disabled") == "1" or - net:get("disabled") == "1") - } - end - - rv[#rv+1] = rd - end - - return rv -end - -function wifi_network(id) - local ntm = require "luci.model.network".init() - local net = ntm:get_wifinet(id) - if net then - local dev = net:get_device() - if dev then - return { - id = id, - name = net:shortname(), - link = net:adminlink(), - up = net:is_up(), - mode = net:active_mode(), - ssid = net:active_ssid(), - bssid = net:active_bssid(), - encryption = net:active_encryption(), - frequency = net:frequency(), - channel = net:channel(), - signal = net:signal(), - quality = net:signal_percent(), - noise = net:noise(), - bitrate = net:bitrate(), - ifname = net:ifname(), - country = net:country(), - txpower = net:txpower(), - txpoweroff = net:txpower_offset(), - disabled = (dev:get("disabled") == "1" or - net:get("disabled") == "1"), - device = { - up = dev:is_up(), - device = dev:name(), - name = dev:get_i18n() - } - } - end - end - return { } -end - -function wifi_assoclist() - local sys = require "luci.sys" - local ntm = require "luci.model.network".init() - local hosts = sys.net.host_hints() - - local assoc = {} - local _, dev, net, bss - - for _, dev in ipairs(ntm:get_wifidevs()) do - local radioname = dev:get_i18n() - - for _, net in ipairs(dev:get_wifinets()) do - local netname = net:shortname() - local netlink = net:adminlink() - local ifname = net:ifname() - - for _, bss in pairs(net:assoclist() or {}) do - local host = hosts[_] - - bss.bssid = _ - bss.ifname = ifname - bss.radio = radioname - bss.name = netname - bss.link = netlink - - bss.host_name = (host) and (host.name or host.ipv4 or host.ipv6) - bss.host_hint = (host and host.name and (host.ipv4 or host.ipv6)) and (host.ipv4 or host.ipv6) - - assoc[#assoc+1] = bss - end - end - end - - table.sort(assoc, function(a, b) - if a.radio ~= b.radio then - return a.radio < b.radio - elseif a.ifname ~= b.ifname then - return a.ifname < b.ifname - else - return a.bssid < b.bssid - end - end) - - return assoc -end - -function switch_status(devs) - local dev - local switches = { } - for dev in devs:gmatch("[^%s,]+") do - local ports = { } - local swc = io.popen("swconfig dev %s show" - % luci.util.shellquote(dev), "r") - - if swc then - local l - repeat - l = swc:read("*l") - if l then - local port, up = l:match("port:(%d+) link:(%w+)") - if port then - local speed = l:match(" speed:(%d+)") - local duplex = l:match(" (%w+)-duplex") - local txflow = l:match(" (txflow)") - local rxflow = l:match(" (rxflow)") - local auto = l:match(" (auto)") - - ports[#ports+1] = { - port = tonumber(port) or 0, - speed = tonumber(speed) or 0, - link = (up == "up"), - duplex = (duplex == "full"), - rxflow = (not not rxflow), - txflow = (not not txflow), - auto = (not not auto) - } - end - end - until not l - swc:close() - end - switches[dev] = ports - end - return switches -end diff --git a/luci-base/luasrc/tools/webadmin.lua b/luci-base/luasrc/tools/webadmin.lua deleted file mode 100644 index 106810aa0..000000000 --- a/luci-base/luasrc/tools/webadmin.lua +++ /dev/null @@ -1,105 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2008-2015 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -module("luci.tools.webadmin", package.seeall) - -local util = require "luci.util" -local uci = require "luci.model.uci" -local ip = require "luci.ip" - -function byte_format(byte) - local suff = {"B", "KB", "MB", "GB", "TB"} - for i=1, 5 do - if byte > 1024 and i < 5 then - byte = byte / 1024 - else - return string.format("%.2f %s", byte, suff[i]) - end - end -end - -function date_format(secs) - local suff = {"min", "h", "d"} - local mins = 0 - local hour = 0 - local days = 0 - - secs = math.floor(secs) - if secs > 60 then - mins = math.floor(secs / 60) - secs = secs % 60 - end - - if mins > 60 then - hour = math.floor(mins / 60) - mins = mins % 60 - end - - if hour > 24 then - days = math.floor(hour / 24) - hour = hour % 24 - end - - if days > 0 then - return string.format("%.0fd %02.0fh %02.0fmin %02.0fs", days, hour, mins, secs) - else - return string.format("%02.0fh %02.0fmin %02.0fs", hour, mins, secs) - end -end - -function cbi_add_networks(field) - uci.cursor():foreach("network", "interface", - function (section) - if section[".name"] ~= "loopback" then - field:value(section[".name"]) - end - end - ) - field.titleref = luci.dispatcher.build_url("admin", "network", "network") -end - -function cbi_add_knownips(field) - local _, n - for _, n in ipairs(ip.neighbors({ family = 4 })) do - if n.dest then - field:value(n.dest:string()) - end - end -end - -function firewall_find_zone(name) - local find - - luci.model.uci.cursor():foreach("firewall", "zone", - function (section) - if section.name == name then - find = section[".name"] - end - end - ) - - return find -end - -function iface_get_network(iface) - local link = ip.link(tostring(iface)) - if link.master then - iface = link.master - end - - local cur = uci.cursor() - local dump = util.ubus("network.interface", "dump", { }) - if dump then - local _, net - for _, net in ipairs(dump.interface) do - if net.l3_device == iface or net.device == iface then - -- cross check with uci to filter out @name style aliases - local uciname = cur:get("network", net.interface, "ifname") - if type(uciname) == "string" and uciname:sub(1,1) ~= "@" or uciname then - return net.interface - end - end - end - end -end diff --git a/luci-base/luasrc/util.lua b/luci-base/luasrc/util.lua deleted file mode 100644 index a30e8b72f..000000000 --- a/luci-base/luasrc/util.lua +++ /dev/null @@ -1,776 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local io = require "io" -local math = require "math" -local table = require "table" -local debug = require "debug" -local ldebug = require "luci.debug" -local string = require "string" -local coroutine = require "coroutine" -local tparser = require "luci.template.parser" -local json = require "luci.jsonc" -local lhttp = require "lucihttp" - -local _ubus = require "ubus" -local _ubus_connection = nil - -local getmetatable, setmetatable = getmetatable, setmetatable -local rawget, rawset, unpack, select = rawget, rawset, unpack, select -local tostring, type, assert, error = tostring, type, assert, error -local ipairs, pairs, next, loadstring = ipairs, pairs, next, loadstring -local require, pcall, xpcall = require, pcall, xpcall -local collectgarbage, get_memory_limit = collectgarbage, get_memory_limit - -module "luci.util" - --- --- Pythonic string formatting extension --- -getmetatable("").__mod = function(a, b) - local ok, res - - if not b then - return a - elseif type(b) == "table" then - local k, _ - for k, _ in pairs(b) do if type(b[k]) == "userdata" then b[k] = tostring(b[k]) end end - - ok, res = pcall(a.format, a, unpack(b)) - if not ok then - error(res, 2) - end - return res - else - if type(b) == "userdata" then b = tostring(b) end - - ok, res = pcall(a.format, a, b) - if not ok then - error(res, 2) - end - return res - end -end - - --- --- Class helper routines --- - --- Instantiates a class -local function _instantiate(class, ...) - local inst = setmetatable({}, {__index = class}) - - if inst.__init__ then - inst:__init__(...) - end - - return inst -end - --- The class object can be instantiated by calling itself. --- Any class functions or shared parameters can be attached to this object. --- Attaching a table to the class object makes this table shared between --- all instances of this class. For object parameters use the __init__ function. --- Classes can inherit member functions and values from a base class. --- Class can be instantiated by calling them. All parameters will be passed --- to the __init__ function of this class - if such a function exists. --- The __init__ function must be used to set any object parameters that are not shared --- with other objects of this class. Any return values will be ignored. -function class(base) - return setmetatable({}, { - __call = _instantiate, - __index = base - }) -end - -function instanceof(object, class) - local meta = getmetatable(object) - while meta and meta.__index do - if meta.__index == class then - return true - end - meta = getmetatable(meta.__index) - end - return false -end - - --- --- Scope manipulation routines --- - -coxpt = setmetatable({}, { __mode = "kv" }) - -local tl_meta = { - __mode = "k", - - __index = function(self, key) - local t = rawget(self, coxpt[coroutine.running()] - or coroutine.running() or 0) - return t and t[key] - end, - - __newindex = function(self, key, value) - local c = coxpt[coroutine.running()] or coroutine.running() or 0 - local r = rawget(self, c) - if not r then - rawset(self, c, { [key] = value }) - else - r[key] = value - end - end -} - --- the current active coroutine. A thread local store is private a table object --- whose values can't be accessed from outside of the running coroutine. -function threadlocal(tbl) - return setmetatable(tbl or {}, tl_meta) -end - - --- --- Debugging routines --- - -function perror(obj) - return io.stderr:write(tostring(obj) .. "\n") -end - -function dumptable(t, maxdepth, i, seen) - i = i or 0 - seen = seen or setmetatable({}, {__mode="k"}) - - for k,v in pairs(t) do - perror(string.rep("\t", i) .. tostring(k) .. "\t" .. tostring(v)) - if type(v) == "table" and (not maxdepth or i < maxdepth) then - if not seen[v] then - seen[v] = true - dumptable(v, maxdepth, i+1, seen) - else - perror(string.rep("\t", i) .. "*** RECURSION ***") - end - end - end -end - - --- --- String and data manipulation routines --- - -function pcdata(value) - return value and tparser.pcdata(tostring(value)) -end - -function urlencode(value) - if value ~= nil then - local str = tostring(value) - return lhttp.urlencode(str, lhttp.ENCODE_IF_NEEDED + lhttp.ENCODE_FULL) - or str - end - return nil -end - -function urldecode(value, decode_plus) - if value ~= nil then - local flag = decode_plus and lhttp.DECODE_PLUS or 0 - local str = tostring(value) - return lhttp.urldecode(str, lhttp.DECODE_IF_NEEDED + flag) - or str - end - return nil -end - -function striptags(value) - return value and tparser.striptags(tostring(value)) -end - -function shellquote(value) - return string.format("'%s'", string.gsub(value or "", "'", "'\\''")) -end - --- for bash, ash and similar shells single-quoted strings are taken --- literally except for single quotes (which terminate the string) --- (and the exception noted below for dash (-) at the start of a --- command line parameter). -function shellsqescape(value) - local res - res, _ = string.gsub(value, "'", "'\\''") - return res -end - --- bash, ash and other similar shells interpret a dash (-) at the start --- of a command-line parameters as an option indicator regardless of --- whether it is inside a single-quoted string. It must be backlash --- escaped to resolve this. This requires in some funky special-case --- handling. It may actually be a property of the getopt function --- rather than the shell proper. -function shellstartsqescape(value) - res, _ = string.gsub(value, "^%-", "\\-") - return shellsqescape(res) -end - --- containing the resulting substrings. The optional max parameter specifies --- the number of bytes to process, regardless of the actual length of the given --- string. The optional last parameter, regex, specifies whether the separator --- sequence is interpreted as regular expression. --- pattern as regular expression (optional, default is false) -function split(str, pat, max, regex) - pat = pat or "\n" - max = max or #str - - local t = {} - local c = 1 - - if #str == 0 then - return {""} - end - - if #pat == 0 then - return nil - end - - if max == 0 then - return str - end - - repeat - local s, e = str:find(pat, c, not regex) - max = max - 1 - if s and max < 0 then - t[#t+1] = str:sub(c) - else - t[#t+1] = str:sub(c, s and s - 1) - end - c = e and e + 1 or #str + 1 - until not s or max < 0 - - return t -end - -function trim(str) - return (str:gsub("^%s*(.-)%s*$", "%1")) -end - -function cmatch(str, pat) - local count = 0 - for _ in str:gmatch(pat) do count = count + 1 end - return count -end - --- one token per invocation, the tokens are separated by whitespace. If the --- input value is a table, it is transformed into a string first. A nil value --- will result in a valid iterator which aborts with the first invocation. -function imatch(v) - if type(v) == "table" then - local k = nil - return function() - k = next(v, k) - return v[k] - end - - elseif type(v) == "number" or type(v) == "boolean" then - local x = true - return function() - if x then - x = false - return tostring(v) - end - end - - elseif type(v) == "userdata" or type(v) == "string" then - return tostring(v):gmatch("%S+") - end - - return function() end -end - --- value or 0 if the unit is unknown. Upper- or lower case is irrelevant. --- Recognized units are: --- o "y" - one year (60*60*24*366) --- o "m" - one month (60*60*24*31) --- o "w" - one week (60*60*24*7) --- o "d" - one day (60*60*24) --- o "h" - one hour (60*60) --- o "min" - one minute (60) --- o "kb" - one kilobyte (1024) --- o "mb" - one megabyte (1024*1024) --- o "gb" - one gigabyte (1024*1024*1024) --- o "kib" - one si kilobyte (1000) --- o "mib" - one si megabyte (1000*1000) --- o "gib" - one si gigabyte (1000*1000*1000) -function parse_units(ustr) - - local val = 0 - - -- unit map - local map = { - -- date stuff - y = 60 * 60 * 24 * 366, - m = 60 * 60 * 24 * 31, - w = 60 * 60 * 24 * 7, - d = 60 * 60 * 24, - h = 60 * 60, - min = 60, - - -- storage sizes - kb = 1024, - mb = 1024 * 1024, - gb = 1024 * 1024 * 1024, - - -- storage sizes (si) - kib = 1000, - mib = 1000 * 1000, - gib = 1000 * 1000 * 1000 - } - - -- parse input string - for spec in ustr:lower():gmatch("[0-9%.]+[a-zA-Z]*") do - - local num = spec:gsub("[^0-9%.]+$","") - local spn = spec:gsub("^[0-9%.]+", "") - - if map[spn] or map[spn:sub(1,1)] then - val = val + num * ( map[spn] or map[spn:sub(1,1)] ) - else - val = val + num - end - end - - - return val -end - --- also register functions above in the central string class for convenience -string.pcdata = pcdata -string.striptags = striptags -string.split = split -string.trim = trim -string.cmatch = cmatch -string.parse_units = parse_units - - -function append(src, ...) - for i, a in ipairs({...}) do - if type(a) == "table" then - for j, v in ipairs(a) do - src[#src+1] = v - end - else - src[#src+1] = a - end - end - return src -end - -function combine(...) - return append({}, ...) -end - -function contains(table, value) - for k, v in pairs(table) do - if value == v then - return k - end - end - return false -end - --- Both table are - in fact - merged together. -function update(t, updates) - for k, v in pairs(updates) do - t[k] = v - end -end - -function keys(t) - local keys = { } - if t then - for k, _ in kspairs(t) do - keys[#keys+1] = k - end - end - return keys -end - -function clone(object, deep) - local copy = {} - - for k, v in pairs(object) do - if deep and type(v) == "table" then - v = clone(v, deep) - end - copy[k] = v - end - - return setmetatable(copy, getmetatable(object)) -end - - --- Serialize the contents of a table value. -function _serialize_table(t, seen) - assert(not seen[t], "Recursion detected.") - seen[t] = true - - local data = "" - local idata = "" - local ilen = 0 - - for k, v in pairs(t) do - if type(k) ~= "number" or k < 1 or math.floor(k) ~= k or ( k - #t ) > 3 then - k = serialize_data(k, seen) - v = serialize_data(v, seen) - data = data .. ( #data > 0 and ", " or "" ) .. - '[' .. k .. '] = ' .. v - elseif k > ilen then - ilen = k - end - end - - for i = 1, ilen do - local v = serialize_data(t[i], seen) - idata = idata .. ( #idata > 0 and ", " or "" ) .. v - end - - return idata .. ( #data > 0 and #idata > 0 and ", " or "" ) .. data -end - --- with loadstring(). -function serialize_data(val, seen) - seen = seen or setmetatable({}, {__mode="k"}) - - if val == nil then - return "nil" - elseif type(val) == "number" then - return val - elseif type(val) == "string" then - return "%q" % val - elseif type(val) == "boolean" then - return val and "true" or "false" - elseif type(val) == "function" then - return "loadstring(%q)" % get_bytecode(val) - elseif type(val) == "table" then - return "{ " .. _serialize_table(val, seen) .. " }" - else - return '"[unhandled data type:' .. type(val) .. ']"' - end -end - -function restore_data(str) - return loadstring("return " .. str)() -end - - --- --- Byte code manipulation routines --- - --- will be stripped before it is returned. -function get_bytecode(val) - local code - - if type(val) == "function" then - code = string.dump(val) - else - code = string.dump( loadstring( "return " .. serialize_data(val) ) ) - end - - return code -- and strip_bytecode(code) -end - --- numbers and debugging numbers will be discarded. Original version by --- Peter Cawley (http://lua-users.org/lists/lua-l/2008-02/msg01158.html) -function strip_bytecode(code) - local version, format, endian, int, size, ins, num, lnum = code:byte(5, 12) - local subint - if endian == 1 then - subint = function(code, i, l) - local val = 0 - for n = l, 1, -1 do - val = val * 256 + code:byte(i + n - 1) - end - return val, i + l - end - else - subint = function(code, i, l) - local val = 0 - for n = 1, l, 1 do - val = val * 256 + code:byte(i + n - 1) - end - return val, i + l - end - end - - local function strip_function(code) - local count, offset = subint(code, 1, size) - local stripped = { string.rep("\0", size) } - local dirty = offset + count - offset = offset + count + int * 2 + 4 - offset = offset + int + subint(code, offset, int) * ins - count, offset = subint(code, offset, int) - for n = 1, count do - local t - t, offset = subint(code, offset, 1) - if t == 1 then - offset = offset + 1 - elseif t == 4 then - offset = offset + size + subint(code, offset, size) - elseif t == 3 then - offset = offset + num - elseif t == 254 or t == 9 then - offset = offset + lnum - end - end - count, offset = subint(code, offset, int) - stripped[#stripped+1] = code:sub(dirty, offset - 1) - for n = 1, count do - local proto, off = strip_function(code:sub(offset, -1)) - stripped[#stripped+1] = proto - offset = offset + off - 1 - end - offset = offset + subint(code, offset, int) * int + int - count, offset = subint(code, offset, int) - for n = 1, count do - offset = offset + subint(code, offset, size) + size + int * 2 - end - count, offset = subint(code, offset, int) - for n = 1, count do - offset = offset + subint(code, offset, size) + size - end - stripped[#stripped+1] = string.rep("\0", int * 3) - return table.concat(stripped), offset - end - - return code:sub(1,12) .. strip_function(code:sub(13,-1)) -end - - --- --- Sorting iterator functions --- - -function _sortiter( t, f ) - local keys = { } - - local k, v - for k, v in pairs(t) do - keys[#keys+1] = k - end - - local _pos = 0 - - table.sort( keys, f ) - - return function() - _pos = _pos + 1 - if _pos <= #keys then - return keys[_pos], t[keys[_pos]], _pos - end - end -end - --- the provided callback function. -function spairs(t,f) - return _sortiter( t, f ) -end - --- The table pairs are sorted by key. -function kspairs(t) - return _sortiter( t ) -end - --- The table pairs are sorted by value. -function vspairs(t) - return _sortiter( t, function (a,b) return t[a] < t[b] end ) -end - - --- --- System utility functions --- - -function bigendian() - return string.byte(string.dump(function() end), 7) == 0 -end - -function exec(command) - local pp = io.popen(command) - local data = pp:read("*a") - pp:close() - - return data -end - -function execi(command) - local pp = io.popen(command) - - return pp and function() - local line = pp:read() - - if not line then - pp:close() - end - - return line - end -end - --- Deprecated -function execl(command) - local pp = io.popen(command) - local line = "" - local data = {} - - while true do - line = pp:read() - if (line == nil) then break end - data[#data+1] = line - end - pp:close() - - return data -end - - -local ubus_codes = { - "INVALID_COMMAND", - "INVALID_ARGUMENT", - "METHOD_NOT_FOUND", - "NOT_FOUND", - "NO_DATA", - "PERMISSION_DENIED", - "TIMEOUT", - "NOT_SUPPORTED", - "UNKNOWN_ERROR", - "CONNECTION_FAILED" -} - -local function ubus_return(...) - if select('#', ...) == 2 then - local rv, err = select(1, ...), select(2, ...) - if rv == nil and type(err) == "number" then - return nil, err, ubus_codes[err] - end - end - - return ... -end - -function ubus(object, method, data) - if not _ubus_connection then - _ubus_connection = _ubus.connect() - assert(_ubus_connection, "Unable to establish ubus connection") - end - - if object and method then - if type(data) ~= "table" then - data = { } - end - return ubus_return(_ubus_connection:call(object, method, data)) - elseif object then - return _ubus_connection:signatures(object) - else - return _ubus_connection:objects() - end -end - -function serialize_json(x, cb) - local js = json.stringify(x) - if type(cb) == "function" then - cb(js) - else - return js - end -end - - -function libpath() - return require "nixio.fs".dirname(ldebug.__file__) -end - -function checklib(fullpathexe, wantedlib) - local fs = require "nixio.fs" - local haveldd = fs.access('/usr/bin/ldd') - local haveexe = fs.access(fullpathexe) - if not haveldd or not haveexe then - return false - end - local libs = exec(string.format("/usr/bin/ldd %s", shellquote(fullpathexe))) - if not libs then - return false - end - for k, v in ipairs(split(libs)) do - if v:find(wantedlib) then - return true - end - end - return false -end - -------------------------------------------------------------------------------- --- Coroutine safe xpcall and pcall versions --- --- Encapsulates the protected calls with a coroutine based loop, so errors can --- be dealed without the usual Lua 5.x pcall/xpcall issues with coroutines --- yielding inside the call to pcall or xpcall. --- --- Authors: Roberto Ierusalimschy and Andre Carregal --- Contributors: Thomas Harning Jr., Ignacio Burgueño, Fabio Mascarenhas --- --- Copyright 2005 - Kepler Project --- --- $Id: coxpcall.lua,v 1.13 2008/05/19 19:20:02 mascarenhas Exp $ -------------------------------------------------------------------------------- - -------------------------------------------------------------------------------- --- Implements xpcall with coroutines -------------------------------------------------------------------------------- -local coromap = setmetatable({}, { __mode = "k" }) - -local function handleReturnValue(err, co, status, ...) - if not status then - return false, err(debug.traceback(co, (...)), ...) - end - if coroutine.status(co) == 'suspended' then - return performResume(err, co, coroutine.yield(...)) - else - return true, ... - end -end - -function performResume(err, co, ...) - return handleReturnValue(err, co, coroutine.resume(co, ...)) -end - -local function id(trace, ...) - return trace -end - -function coxpcall(f, err, ...) - local current = coroutine.running() - if not current then - if err == id then - return pcall(f, ...) - else - if select("#", ...) > 0 then - local oldf, params = f, { ... } - f = function() return oldf(unpack(params)) end - end - return xpcall(f, err) - end - else - local res, co = pcall(coroutine.create, f) - if not res then - local newf = function(...) return f(...) end - co = coroutine.create(newf) - end - coromap[co] = current - coxpt[co] = coxpt[current] or current or 0 - return performResume(err, co, ...) - end -end - -function copcall(f, ...) - return coxpcall(f, id, ...) -end diff --git a/luci-base/luasrc/util.luadoc b/luci-base/luasrc/util.luadoc deleted file mode 100644 index 4ec68dd1e..000000000 --- a/luci-base/luasrc/util.luadoc +++ /dev/null @@ -1,413 +0,0 @@ ----[[ -LuCI utility functions. -]] -module "luci.util" - ----[[ -Create a Class object (Python-style object model). - -The class object can be instantiated by calling itself. -Any class functions or shared parameters can be attached to this object. -Attaching a table to the class object makes this table shared between -all instances of this class. For object parameters use the __init__ function. -Classes can inherit member functions and values from a base class. -Class can be instantiated by calling them. All parameters will be passed -to the __init__ function of this class - if such a function exists. -The __init__ function must be used to set any object parameters that are not shared -with other objects of this class. Any return values will be ignored. - -@class function -@name class -@param base The base class to inherit from (optional) -@return A class object -@see instanceof -@see clone -]] - ----[[ -Test whether the given object is an instance of the given class. - -@class function -@name instanceof -@param object Object instance -@param class Class object to test against -@return Boolean indicating whether the object is an instance -@see class -@see clone -]] - ----[[ -Create a new or get an already existing thread local store associated with -the current active coroutine. - -A thread local store is private a table object -whose values can't be accessed from outside of the running coroutine. - -@class function -@name threadlocal -@return Table value representing the corresponding thread local store -]] - ----[[ -Write given object to stderr. - -@class function -@name perror -@param obj Value to write to stderr -@return Boolean indicating whether the write operation was successful -]] - ----[[ -Recursively dumps a table to stdout, useful for testing and debugging. - -@class function -@name dumptable -@param t Table value to dump -@param maxdepth Maximum depth -@return Always nil -]] - ----[[ -Create valid XML PCDATA from given string. - -@class function -@name pcdata -@param value String value containing the data to escape -@return String value containing the escaped data -]] - ----[[ -Decode an URL-encoded string - optionally decoding the "+" sign to space. - -@class function -@name urldecode -@param str Input string in x-www-urlencoded format -@param decode_plus Decode "+" signs to spaces if true (optional) -@return The decoded string -@see urlencode -]] - ----[[ -URL-encode given string. - -@class function -@name urlencode -@param str String to encode -@return String containing the encoded data -@see urldecode -]] - ----[[ -Strip HTML tags from given string. - -@class function -@name striptags -@param value String containing the HTML text -@return String with HTML tags stripped of -]] - ----[[ -Safely quote value for use in shell commands. - -@class function -@name shellquote -@param value String containing the value to quote -@return Single-quote enclosed string with embedded quotes escaped -]] - ----[[ -Splits given string on a defined separator sequence and return a table -containing the resulting substrings. - -The optional max parameter specifies the number of bytes to process, -regardless of the actual length of the given string. The optional last -parameter, regex, specifies whether the separator sequence is -nterpreted as regular expression. - -@class function -@name split -@param str String value containing the data to split up -@param pat String with separator pattern (optional, defaults to "\n") -@param max Maximum times to split (optional) -@param regex Boolean indicating whether to interpret the separator --- pattern as regular expression (optional, default is false) -@return Table containing the resulting substrings -]] - ----[[ -Remove leading and trailing whitespace from given string value. - -@class function -@name trim -@param str String value containing whitespace padded data -@return String value with leading and trailing space removed -]] - ----[[ -Count the occurrences of given substring in given string. - -@class function -@name cmatch -@param str String to search in -@param pattern String containing pattern to find -@return Number of found occurrences -]] - ----[[ -Return a matching iterator for the given value. - -The iterator will return one token per invocation, the tokens are separated by -whitespace. If the input value is a table, it is transformed into a string first. -A nil value will result in a valid iterator which aborts with the first invocation. - -@class function -@name imatch -@param val The value to scan (table, string or nil) -@return Iterator which returns one token per call -]] - ----[[ -Parse certain units from the given string and return the canonical integer -value or 0 if the unit is unknown. - -Upper- or lower case is irrelevant. -Recognized units are: - --- o "y" - one year (60*60*24*366) - o "m" - one month (60*60*24*31) - o "w" - one week (60*60*24*7) - o "d" - one day (60*60*24) - o "h" - one hour (60*60) - o "min" - one minute (60) - o "kb" - one kilobyte (1024) - o "mb" - one megabyte (1024*1024) - o "gb" - one gigabyte (1024*1024*1024) - o "kib" - one si kilobyte (1000) - o "mib" - one si megabyte (1000*1000) - o "gib" - one si gigabyte (1000*1000*1000) - -@class function -@name parse_units -@param ustr String containing a numerical value with trailing unit -@return Number containing the canonical value -]] - ----[[ -Appends numerically indexed tables or single objects to a given table. - -@class function -@name append -@param src Target table -@param ... Objects to insert -@return Target table -]] - ----[[ -Combines two or more numerically indexed tables and single objects into one table. - -@class function -@name combine -@param tbl1 Table value to combine -@param tbl2 Table value to combine -@param ... More tables to combine -@return Table value containing all values of given tables -]] - ----[[ -Checks whether the given table contains the given value. - -@class function -@name contains -@param table Table value -@param value Value to search within the given table -@return Number indicating the first index at which the given value occurs --- within table or false. -]] - ----[[ -Update values in given table with the values from the second given table. - -Both table are - in fact - merged together. - -@class function -@name update -@param t Table which should be updated -@param updates Table containing the values to update -@return Always nil -]] - ----[[ -Retrieve all keys of given associative table. - -@class function -@name keys -@param t Table to extract keys from -@return Sorted table containing the keys -]] - ----[[ -Clones the given object and return it's copy. - -@class function -@name clone -@param object Table value to clone -@param deep Boolean indicating whether to do recursive cloning -@return Cloned table value -]] - ----[[ -Recursively serialize given data to lua code, suitable for restoring -with loadstring(). - -@class function -@name serialize_data -@param val Value containing the data to serialize -@return String value containing the serialized code -@see restore_data -@see get_bytecode -]] - ----[[ -Restore data previously serialized with serialize_data(). - -@class function -@name restore_data -@param str String containing the data to restore -@return Value containing the restored data structure -@see serialize_data -@see get_bytecode -]] - ----[[ -Return the current runtime bytecode of the given data. The byte code -will be stripped before it is returned. - -@class function -@name get_bytecode -@param val Value to return as bytecode -@return String value containing the bytecode of the given data -]] - ----[[ -Strips unnecessary lua bytecode from given string. - -Information like line numbers and debugging numbers will be discarded. -Original version by Peter Cawley (http://lua-users.org/lists/lua-l/2008-02/msg01158.html) - -@class function -@name strip_bytecode -@param code String value containing the original lua byte code -@return String value containing the stripped lua byte code -]] - ----[[ -Return a key, value iterator which returns the values sorted according to -the provided callback function. - -@class function -@name spairs -@param t The table to iterate -@param f A callback function to decide the order of elements -@return Function value containing the corresponding iterator -]] - ----[[ -Return a key, value iterator for the given table. - -The table pairs are sorted by key. - -@class function -@name kspairs -@param t The table to iterate -@return Function value containing the corresponding iterator -]] - ----[[ -Return a key, value iterator for the given table. - -The table pairs are sorted by value. - -@class function -@name vspairs -@param t The table to iterate -@return Function value containing the corresponding iterator -]] - ----[[ -Test whether the current system is operating in big endian mode. - -@class function -@name bigendian -@return Boolean value indicating whether system is big endian -]] - ----[[ -Execute given commandline and gather stdout. - -@class function -@name exec -@param command String containing command to execute -@return String containing the command's stdout -]] - ----[[ -Return a line-buffered iterator over the output of given command. - -@class function -@name execi -@param command String containing the command to execute -@return Iterator -]] - ----[[ -Issue an ubus call. - -@class function -@name ubus -@param object String containing the ubus object to call -@param method String containing the ubus method to call -@param values Table containing the values to pass -@return Table containin the ubus result -]] - ----[[ -Convert data structure to JSON - -@class function -@name serialize_json -@param data The data to serialize -@param writer A function to write a chunk of JSON data (optional) -@return String containing the JSON if called without write callback -]] - ----[[ -Returns the absolute path to LuCI base directory. - -@class function -@name libpath -@return String containing the directory path -]] - ----[[ -This is a coroutine-safe drop-in replacement for Lua's "xpcall"-function - -@class function -@name coxpcall -@param f Lua function to be called protected -@param err Custom error handler -@param ... Parameters passed to the function -@return A boolean whether the function call succeeded and the return --- values of either the function or the error handler -]] - ----[[ -This is a coroutine-safe drop-in replacement for Lua's "pcall"-function - -@class function -@name copcall -@param f Lua function to be called protected -@param ... Parameters passed to the function -@return A boolean whether the function call succeeded and the returns --- values of the function or the error object -]] - diff --git a/luci-base/luasrc/version.lua b/luci-base/luasrc/version.lua deleted file mode 100644 index 8af2e8061..000000000 --- a/luci-base/luasrc/version.lua +++ /dev/null @@ -1,9 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -module "luci.version" - -distname = "Host System" -distversion = "SDK" - -luciname = "LuCI" -luciversion = "SVN" diff --git a/luci-base/luasrc/view/cbi/browser.htm b/luci-base/luasrc/view/cbi/browser.htm deleted file mode 100644 index eb47ffafe..000000000 --- a/luci-base/luasrc/view/cbi/browser.htm +++ /dev/null @@ -1,10 +0,0 @@ -<%+cbi/valueheader%> - - /> - -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/button.htm b/luci-base/luasrc/view/cbi/button.htm deleted file mode 100644 index 6ccba58f2..000000000 --- a/luci-base/luasrc/view/cbi/button.htm +++ /dev/null @@ -1,7 +0,0 @@ -<%+cbi/valueheader%> - <% if self:cfgvalue(section) ~= false then %> - " type="submit"<%= attr("name", cbid) .. attr("id", cbid) .. attr("value", self.inputtitle or self.title)%> /> - <% else %> - - - <% end %> -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/cell_valuefooter.htm b/luci-base/luasrc/view/cbi/cell_valuefooter.htm deleted file mode 100644 index bdd6bc968..000000000 --- a/luci-base/luasrc/view/cbi/cell_valuefooter.htm +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/luci-base/luasrc/view/cbi/cell_valueheader.htm b/luci-base/luasrc/view/cbi/cell_valueheader.htm deleted file mode 100644 index 4b7095754..000000000 --- a/luci-base/luasrc/view/cbi/cell_valueheader.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%- - local title = luci.util.trim(striptags(self.title)) - local descr = luci.util.trim(striptags(self.description)) - local ftype = self.typename or (self.template and self.template:gsub("^.+/", "")) --%> -
    0, "data-type", ftype) .. - ifattr(title and #title > 0, "data-title", title, true) .. - ifattr(descr and #descr > 0, "data-description", descr, true) -%>> -
    " data-index="<%=self.index%>" data-depends="<%=pcdata(self:deplist2json(section))%>"> diff --git a/luci-base/luasrc/view/cbi/compound.htm b/luci-base/luasrc/view/cbi/compound.htm deleted file mode 100644 index 12d02bb1d..000000000 --- a/luci-base/luasrc/view/cbi/compound.htm +++ /dev/null @@ -1 +0,0 @@ -<%- self:render_children() %> diff --git a/luci-base/luasrc/view/cbi/delegator.htm b/luci-base/luasrc/view/cbi/delegator.htm deleted file mode 100644 index 4fd19265d..000000000 --- a/luci-base/luasrc/view/cbi/delegator.htm +++ /dev/null @@ -1,24 +0,0 @@ -<%- self.active:render() %> -
    - -<% for _, x in ipairs(self.chain) do %> - -<% end %> -<% if not self.disallow_pageactions then %> -<% if self.allow_finish and not self:get_next(self.current) then %> - -<% elseif self:get_next(self.current) then %> - -<% end %> -<% if self.allow_cancel then %> - -<% end %> -<% if self.allow_reset then %> - -<% end %> -<% if self.allow_back and self:get_prev(self.current) then %> - -<% end %> -<% end %> - -
    diff --git a/luci-base/luasrc/view/cbi/dropdown.htm b/luci-base/luasrc/view/cbi/dropdown.htm deleted file mode 100644 index d626ced44..000000000 --- a/luci-base/luasrc/view/cbi/dropdown.htm +++ /dev/null @@ -1,19 +0,0 @@ -<%+cbi/valueheader%> ->
    -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/dvalue.htm b/luci-base/luasrc/view/cbi/dvalue.htm deleted file mode 100644 index 78e6f323d..000000000 --- a/luci-base/luasrc/view/cbi/dvalue.htm +++ /dev/null @@ -1,13 +0,0 @@ -<%+cbi/valueheader%> -<% if self.href then %><% end -%> - <% - local val = self:cfgvalue(section) or self.default or "" - if not self.rawhtml then - write(pcdata(val)) - else - write(val) - end - %> -<%- if self.href then %><%end%> -" /> -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/dynlist.htm b/luci-base/luasrc/view/cbi/dynlist.htm deleted file mode 100644 index d50328d79..000000000 --- a/luci-base/luasrc/view/cbi/dynlist.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%+cbi/valueheader%> ->
    -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/error.htm b/luci-base/luasrc/view/cbi/error.htm deleted file mode 100644 index 75ec1082a..000000000 --- a/luci-base/luasrc/view/cbi/error.htm +++ /dev/null @@ -1,19 +0,0 @@ -
    - <% if self.title and #self.title > 0 then %>

    <%=self.title%>

    <% end %> - <% if self.description and #self.description > 0 then %>
    <%=self.description%>
    <% end %> - -

    - <%: The configuration file could not be loaded due to the following error: %>
    - <%=pcdata(self.error)%> -

    - - - -

    - <%: Edit the raw configuration data above to fix any error and hit "Save" to reload the page. %> -

    - -
    - -
    -
    diff --git a/luci-base/luasrc/view/cbi/filebrowser.htm b/luci-base/luasrc/view/cbi/filebrowser.htm deleted file mode 100644 index 806b1b5f4..000000000 --- a/luci-base/luasrc/view/cbi/filebrowser.htm +++ /dev/null @@ -1,113 +0,0 @@ - - - - - Filebrowser - LuCI - - - - - - <% - require("nixio.fs") - require("nixio.util") - require("luci.http") - require("luci.dispatcher") - - local field = luci.http.formvalue('field') - local request = luci.dispatcher.context.args - local path = { '' } - - for i = 1, #request do - if request[i] ~= '..' and #request[i] > 0 then - path[#path+1] = request[i] - end - end - - local filestat = nixio.fs.stat(table.concat(path, '/')) - local baseurl = { 'admin', 'filebrowser' } - - if filestat and filestat.type == "reg" then - path[#path] = '' - elseif not (filestat and filestat.type == "dir") then - path = { '', '' } - else - path[#path+1] = '' - end - - filepath = table.concat(path, '/') - - local entries = {} - local _, e - for _, e in luci.util.vspairs(nixio.util.consume((nixio.fs.dir(filepath)))) do - local p = filepath .. e - local s = nixio.fs.stat(p) - if s then - entries[#entries+1] = { - name = e, - path = p, - type = s.type - } - end - end - -%> -
    - Location: - <% for i, dir in ipairs(path) do %> - <% if i == 1 then %> - (root) - <% elseif next(path, i) then %> - <% baseurl[#baseurl+1] = luci.http.urlencode(dir) %> - / <%=pcdata(dir)%> - <% else %> - <% baseurl[#baseurl+1] = luci.http.urlencode(dir) %> - / <%=pcdata(dir)%> - <% end %> - <% end %> -
    - -
    - -
    -
      - <% for _, e in ipairs(entries) do if e.type == 'dir' then -%> -
    • - <%:Directory%> - <%=pcdata(e.name)%>/ -
    • - <% end end -%> - - <% for _, e in ipairs(entries) do if e.type ~= 'dir' then -%> -
    • - <%:File%> - <%=pcdata(e.name)%> -
    • - <% end end -%> -
    -
    - - diff --git a/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm b/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm deleted file mode 100644 index dc251dbd9..000000000 --- a/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm +++ /dev/null @@ -1,73 +0,0 @@ -<%+cbi/valueheader%> - -<%- - local utl = require "luci.util" - local fwm = require "luci.model.firewall".init() - local nwm = require "luci.model.network".init() - - local zone, fwd, fz - local value = self:formvalue(section) - if not value or value == "-" then - value = self:cfgvalue(section) or self.default - end - - local def = fwm:get_defaults() - local zone = fwm:get_zone(value) - local empty = true - - local function render_zone(zone) --%> - -<%- - end --%> - -<% if zone then %> -
    -
    - <%=render_zone(zone)%> -
    - -
    - <% - for _, fwd in ipairs(zone:get_forwardings_by("src")) do - fz = fwd:dest_zone() - if fz then - empty = false - render_zone(fz) - end - end - if empty then - %> - - <% end %> -
    -
    -<% end %> - -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/firewall_zonelist.htm b/luci-base/luasrc/view/cbi/firewall_zonelist.htm deleted file mode 100644 index 7ecec10a8..000000000 --- a/luci-base/luasrc/view/cbi/firewall_zonelist.htm +++ /dev/null @@ -1,108 +0,0 @@ -<%+cbi/valueheader%> - -<%- - local utl = require "luci.util" - local fwm = require "luci.model.firewall".init() - local nwm = require "luci.model.network".init() - - local zone, net, iface - local zones = fwm:get_zones() - local value = self:formvalue(section) - if not value or value == "-" then - value = self:cfgvalue(section) or self.default - end - - local selected = false - local checked = { } - - for value in utl.imatch(value) do - checked[value] = true - end - - if not next(checked) then - checked[""] = true - end --%> - -
    > - -
      - <% if self.allowlocal then %> -
    • > - - <%:Device%> - <% if self.allowany and self.allowlocal then -%> - (<%= self.alias ~= "dest" - and translate("output") or translate("input") %>) - <%- end %> - -
    • - <% elseif self.widget ~= "checkbox" and (self.rmempty or self.optional) then %> -
    • > - - <%:unspecified%> - -
    • - <% end %> - <% if self.allowany then %> -
    • > - - <%:Any zone%> - <% if self.allowany and self.allowlocal then %>(<%:forward%>)<% end %> - -
    • - <% end %> - <% - for _, zone in utl.spairs(zones, function(a,b) return (zones[a]:name() < zones[b]:name()) end) do - if zone:name() ~= self.exclude then - selected = selected or (value == zone:name()) - %> - > - - <%=zone:name()%>: - <%- - local zempty = true - for _, net in ipairs(zone:get_networks()) do - net = nwm:get_network(net) - if net then - zempty = false - -%> - <%=net:name()%>: - <%- - local nempty = true - for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do - nempty = false - %> - src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" /> - <% end %> - <% if nempty then %><%:(empty)%><% end -%> - - <%- end end -%> - <%- if zempty then %><%:(empty)%><% end -%> - - - <% end end %> - - <% if self.widget ~= "checkbox" and not self.nocreate then %> -
    • - - <%:create%>: - - - -
    • - <% end %> -
    -
    - -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/footer.htm b/luci-base/luasrc/view/cbi/footer.htm deleted file mode 100644 index ed632202c..000000000 --- a/luci-base/luasrc/view/cbi/footer.htm +++ /dev/null @@ -1,41 +0,0 @@ -<% - local display_back = (redirect and not flow.hidebackbtn) - local display_skip = (flow.skip) - local display_apply = (not autoapply and not flow.hideapplybtn) - local display_save = (not flow.hidesavebtn) - local display_reset = (not flow.hideresetbtn) - - if pageaction and - (display_back or display_skip or display_apply or display_save or display_reset) - then - %>
    <% - - if display_back then - %> <% - end - - if display_skip then - %> <% - end - - if display_apply then - %> <% - end - - if display_save then - %> <% - end - - if display_reset then - %> <% - end - - %>
    <% - end -%> - - - - - -<%+footer%> diff --git a/luci-base/luasrc/view/cbi/full_valuefooter.htm b/luci-base/luasrc/view/cbi/full_valuefooter.htm deleted file mode 100644 index d4ad093ef..000000000 --- a/luci-base/luasrc/view/cbi/full_valuefooter.htm +++ /dev/null @@ -1,12 +0,0 @@ - <% if self.description and #self.description > 0 then -%> - <% if not luci.util.instanceof(self, luci.cbi.DynamicList) and (not luci.util.instanceof(self, luci.cbi.Flag) or self.orientation == "horizontal") then -%> -
    - <%- end %> -
    - <%=self.description%> -
    - <%- end %> - <%- if self.title and #self.title > 0 then -%> - - <%- end -%> - diff --git a/luci-base/luasrc/view/cbi/full_valueheader.htm b/luci-base/luasrc/view/cbi/full_valueheader.htm deleted file mode 100644 index 1d9ebeba9..000000000 --- a/luci-base/luasrc/view/cbi/full_valueheader.htm +++ /dev/null @@ -1,9 +0,0 @@ -
    " data-index="<%=self.index%>" data-depends="<%=pcdata(self:deplist2json(section))%>"> - <%- if self.title and #self.title > 0 then -%> - -
    - <%- end -%> diff --git a/luci-base/luasrc/view/cbi/fvalue.htm b/luci-base/luasrc/view/cbi/fvalue.htm deleted file mode 100644 index 7f975b95e..000000000 --- a/luci-base/luasrc/view/cbi/fvalue.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%+cbi/valueheader%> ->
    -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/header.htm b/luci-base/luasrc/view/cbi/header.htm deleted file mode 100644 index 821fa3efa..000000000 --- a/luci-base/luasrc/view/cbi/header.htm +++ /dev/null @@ -1,18 +0,0 @@ -<%+header%> -
    > -
    - - - -
    diff --git a/luci-base/luasrc/view/cbi/ipaddr.htm b/luci-base/luasrc/view/cbi/ipaddr.htm deleted file mode 100644 index 1c924e154..000000000 --- a/luci-base/luasrc/view/cbi/ipaddr.htm +++ /dev/null @@ -1,27 +0,0 @@ -<%+cbi/valueheader%> - - 0, "data-choices", { self.keylist, self.vallist }) - %> /> -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/lvalue.htm b/luci-base/luasrc/view/cbi/lvalue.htm deleted file mode 100644 index e07648835..000000000 --- a/luci-base/luasrc/view/cbi/lvalue.htm +++ /dev/null @@ -1,14 +0,0 @@ -<%+cbi/valueheader%> ->
    -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/map.htm b/luci-base/luasrc/view/cbi/map.htm deleted file mode 100644 index cda4d3530..000000000 --- a/luci-base/luasrc/view/cbi/map.htm +++ /dev/null @@ -1,40 +0,0 @@ -<%- if firstmap and messages then local msg; for _, msg in ipairs(messages) do -%> -
    <%=pcdata(msg)%>
    -<%- end end -%> - -
    - <% if self.title and #self.title > 0 then %> -

    <%=self.title%>

    - <% end %> - <% if self.description and #self.description > 0 then %> -
    <%=self.description%>
    - <% end %> - <% if self.tabbed then %> -
    - <% for i, section in ipairs(self.children) do - tab = section.section or section.sectiontype %> -
    > - <% section:render() %> -
    - <% end %> -
    - - <% if not self.save then -%> -
    - <% for _, section in ipairs(self.children) do %> - <% if section.error and section.error[section.section] then -%> -
    • - <%:One or more invalid/required values on tab%>: <%=section.title or section.section or section.sectiontype%> -
    - <%- end %> - <% end %> -
    - <%- end %> - <% else %> - <%- self:render_children() %> - <% end %> -
    diff --git a/luci-base/luasrc/view/cbi/mvalue.htm b/luci-base/luasrc/view/cbi/mvalue.htm deleted file mode 100644 index 1f4f4dbcc..000000000 --- a/luci-base/luasrc/view/cbi/mvalue.htm +++ /dev/null @@ -1,24 +0,0 @@ -<%+cbi/valueheader%> -<% - local util = require "luci.util" - local values = {} - local value - for value in util.imatch(self:cfgvalue(section) or self.default) do - values[#values+1] = value - end -%> -> -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/network_ifacelist.htm b/luci-base/luasrc/view/cbi/network_ifacelist.htm deleted file mode 100644 index f23e51d18..000000000 --- a/luci-base/luasrc/view/cbi/network_ifacelist.htm +++ /dev/null @@ -1,91 +0,0 @@ -<%+cbi/valueheader%> - -<%- - local utl = require "luci.util" - local net = require "luci.model.network".init() - local cbeid = luci.cbi.FEXIST_PREFIX .. self.config .. "." .. section .. "." .. self.option - - local iface - local ifaces = net:get_interfaces() - local value - - if self.map:formvalue(cbeid) == "1" then - value = self:formvalue(section) or self.default or "" - else - value = self:cfgvalue(section) or self.default - end - - local checked = { } - - if value then - for value in utl.imatch(value) do - for value in utl.imatch(value) do - checked[value] = true - end - end - else - local n = self.network and net:get_network(self.network) - if n then - local a = n:is_alias() - if a then - checked['@' .. a] = true - else - local i - for _, i in ipairs(n:get_interfaces() or { n:get_interface() }) do - checked[i:name()] = true - end - end - end - end --%> - - - -
    > - -
      - <% for _, iface in ipairs(ifaces) do - if (not self.noaliases or iface:type() ~= "alias") and - (not self.nobridges or not iface:is_bridge()) and - (not self.noinactive or iface:is_up()) and - iface:name() ~= self.exclude - then %> - > - src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" /> - <%=pcdata(iface:name())%> - - <%=pcdata(iface:get_i18n())%> - <% local ns = iface:get_networks(); if #ns > 0 then %>( - <%- local i, n; for i, n in ipairs(ns) do -%> - <%-= (i>1) and ', ' -%> - <%=n:name()%> - <%- end -%> - )<% end %> - - - <% end end %> - <% if not self.nocreate then %> -
    • - - <%:Custom Interface%>: - - -
    • - <% end %> -
    -
    - -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/network_netinfo.htm b/luci-base/luasrc/view/cbi/network_netinfo.htm deleted file mode 100644 index 4fd84112a..000000000 --- a/luci-base/luasrc/view/cbi/network_netinfo.htm +++ /dev/null @@ -1,27 +0,0 @@ -<%+cbi/valueheader%> - -<%- - local value = self:formvalue(section) - if not value or value == "-" then - value = self:cfgvalue(section) or self.default - end - - local nwm = require "luci.model.network".init() - local net = nwm:get_network(value) --%> - -<% if net then %> -<%=net:name()%>: - <% - local empty = true - for _, iface in ipairs(net:get_interfaces() or { net:get_interface() }) do - if not iface:is_bridge() then - empty = false - %> - style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" /> - <% end end %> - <% if empty then %><%:(no interfaces attached)%><% end %> - -<% end %> - -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/network_netlist.htm b/luci-base/luasrc/view/cbi/network_netlist.htm deleted file mode 100644 index 3ee4274a3..000000000 --- a/luci-base/luasrc/view/cbi/network_netlist.htm +++ /dev/null @@ -1,81 +0,0 @@ -<%+cbi/valueheader%> - -<%- - local utl = require "luci.util" - local nwm = require "luci.model.network".init() - - local net, iface - local networks = nwm:get_networks() - local value = self:formvalue(section) - - self.cast = nil - - if not value or value == "-" then - value = self:cfgvalue(section) or self.default - end - - local checked = { } - for value in utl.imatch(value) do - checked[value] = true - end --%> - -
    > - -
      - <% if self.widget ~= "checkbox" then %> -
    • > - <%:unspecified%> -
    • - <% end %> - - <% for _, net in ipairs(networks) do - if (net:name() ~= "loopback") and - (net:name() ~= self.exclude) and - (not self.novirtual or not net:is_virtual()) - then %> - > - <%=net:name()%>: - <% - local empty = true - for _, iface in ipairs(net:is_bridge() and net:get_interfaces() or { net:get_interface() }) do - if not iface:is_bridge() then - empty = false - -%> - style="width:16px; height:16px; vertical-align:middle" src="<%=resource%>/icons/<%=iface:type()%><%=iface:is_up() and "" or "_disabled"%>.png" /> - <%- end end %> - <% if empty then %> - <%:(no interfaces attached)%> - - - <% end %> - - - <% end end %> - - <% if not self.nocreate then %> -
    • > - - <%- if self.widget == "checkbox" then -%> - <%:create:%> - <%- else -%> - <%:unspecified -or- create:%> - <%- end -%> - - - -
    • - <% end %> -
    -
    - -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/nsection.htm b/luci-base/luasrc/view/cbi/nsection.htm deleted file mode 100644 index 14232e3d9..000000000 --- a/luci-base/luasrc/view/cbi/nsection.htm +++ /dev/null @@ -1,29 +0,0 @@ -<% if self:cfgvalue(self.section) then section = self.section %> -
    - <% if self.title and #self.title > 0 then -%> - <%=self.title%> - <%- end %> - <% if self.description and #self.description > 0 then -%> -
    <%=self.description%>
    - <%- end %> - <% if self.addremove then -%> -
    - -
    - <%- end %> -
    - <%+cbi/ucisection%> -
    -
    -<% elseif self.addremove then %> - <% if self.template_addremove then include(self.template_addremove) else -%> -
    - <% if self.title and #self.title > 0 then -%> - <%=self.title%> - <%- end %> -
    <%=self.description%>
    - -
    - <%- end %> -<% end %> - diff --git a/luci-base/luasrc/view/cbi/nullsection.htm b/luci-base/luasrc/view/cbi/nullsection.htm deleted file mode 100644 index 7230719d1..000000000 --- a/luci-base/luasrc/view/cbi/nullsection.htm +++ /dev/null @@ -1,37 +0,0 @@ -
    - <% if self.title and #self.title > 0 then -%> - <%=self.title%> - <%- end %> - <% if self.description and #self.description > 0 then -%> -
    <%=self.description%>
    - <%- end %> -
    -
    - <% self:render_children(1, scope or {}) %> -
    - <% if self.error and self.error[1] then -%> -
    -
      <% for _, e in ipairs(self.error[1]) do -%> -
    • - <%- if e == "invalid" then -%> - <%:One or more fields contain invalid values!%> - <%- elseif e == "missing" then -%> - <%:One or more required fields have no value!%> - <%- else -%> - <%=pcdata(e)%> - <%- end -%> -
    • - <%- end %>
    -
    - <%- end %> -
    -
    -<%- - if type(self.hidden) == "table" then - for k, v in pairs(self.hidden) do --%> - -<%- - end - end -%> diff --git a/luci-base/luasrc/view/cbi/simpleform.htm b/luci-base/luasrc/view/cbi/simpleform.htm deleted file mode 100644 index 3e10724ec..000000000 --- a/luci-base/luasrc/view/cbi/simpleform.htm +++ /dev/null @@ -1,77 +0,0 @@ -<% - if not self.embedded then - %> - - <% - end - - %>
    <% - - if self.title and #self.title > 0 then - %>

    <%=self.title%>

    <% - end - - if self.description and #self.description > 0 then - %>
    <%=self.description%>
    <% - end - - self:render_children() - - %>
    <% - - if self.message then - %>
    <%=self.message%>
    <% - end - - if self.errmessage then - %>
    <%=self.errmessage%>
    <% - end - - if not self.embedded then - if type(self.hidden) == "table" then - local k, v - for k, v in pairs(self.hidden) do - %><% - end - end - - local display_back = (redirect) - local display_cancel = (self.cancel ~= false and self.on_cancel) - local display_skip = (self.flow and self.flow.skip) - local display_submit = (self.submit ~= false) - local display_reset = (self.reset ~= false) - - if display_back or display_cancel or display_skip or display_submit or display_reset then - %>
    <% - - if display_back then - %> <% - end - - if display_cancel then - local label = pcdata(self.cancel or translate("Cancel")) - %> <% - end - - if display_skip then - %> <% - end - - if display_submit then - local label = pcdata(self.submit or translate("Submit")) - %> <% - end - - if display_reset then - local label = pcdata(self.reset or translate("Reset")) - %> <% - end - - %>
    <% - end - - %><% - end -%> - - diff --git a/luci-base/luasrc/view/cbi/tabcontainer.htm b/luci-base/luasrc/view/cbi/tabcontainer.htm deleted file mode 100644 index 7fcb83578..000000000 --- a/luci-base/luasrc/view/cbi/tabcontainer.htm +++ /dev/null @@ -1,14 +0,0 @@ -<% for _, tab in ipairs(self.tab_names) do data = self.tabs[tab] %> -
    > - <% if data.description then %> -
    <%=data.description%>
    - <% end %> - - <% self:render_tab(tab, section, scope or {}) %> -
    -<% end %> diff --git a/luci-base/luasrc/view/cbi/tblsection.htm b/luci-base/luasrc/view/cbi/tblsection.htm deleted file mode 100644 index 11c2206d8..000000000 --- a/luci-base/luasrc/view/cbi/tblsection.htm +++ /dev/null @@ -1,203 +0,0 @@ -<%- -local rowcnt = 0 - -function rowstyle() - rowcnt = rowcnt + 1 - if rowcnt % 2 == 0 then - return " cbi-rowstyle-1" - else - return " cbi-rowstyle-2" - end -end - -function width(o) - if o.width then - if type(o.width) == 'number' then - return ' style="width:%dpx"' % o.width - end - return ' style="width:%s"' % o.width - end - return '' -end - -local has_titles = false -local has_descriptions = false - -local anonclass = (not self.anonymous or self.sectiontitle) and "named" or "anonymous" -local titlename = ifattr(not self.anonymous or self.sectiontitle, "data-title", translate("Name")) - -local i, k -for i, k in pairs(self.children) do - if not k.typename then - k.typename = k.template and k.template:gsub("^.+/", "") or "" - end - - if not has_titles and k.title and #k.title > 0 then - has_titles = true - end - - if not has_descriptions and k.description and #k.description > 0 then - has_descriptions = true - end -end - -function render_titles() - if not has_titles then - return - end - - %>
    ><% - - local i, k - for i, k in ipairs(self.children) do - if not k.optional then - %>
    ><% - - if k.titleref then - %><% - end - - write(k.title) - - if k.titleref then - %><% - end - - %>
    <% - end - end - - if self.sortable or self.extedit or self.addremove then - %>
    <% - end - - %>
    <% - - rowcnt = rowcnt + 1 -end - -function render_descriptions() - if not has_descriptions then - return - end - - %>
    <% - - local i, k - for i, k in ipairs(self.children) do - if not k.optional then - %>
    ><% - - write(k.description) - - %>
    <% - end - end - - if self.sortable or self.extedit or self.addremove then - %>
    <% - end - - %>
    <% - - rowcnt = rowcnt + 1 -end - --%> - - -
    - <% if self.title and #self.title > 0 then -%> -

    <%=self.title%>

    - <%- end %> - <%- if self.sortable then -%> - - <%- end -%> -
    <%=self.description%>
    -
    - <%- - render_titles() - render_descriptions() - - local isempty, section, i, k = true, nil, nil - for i, k in ipairs(self:cfgsections()) do - isempty = false - section = k - - local sectionname = striptags((type(self.sectiontitle) == "function") and self:sectiontitle(section) or k) - local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname, true) - local colorclass = (self.extedit or self.rowcolors) and rowstyle() or "" - local scope = { - valueheader = "cbi/cell_valueheader", - valuefooter = "cbi/cell_valuefooter" - } - -%> -
    > - <%- - local node - for k, node in ipairs(self.children) do - if not node.optional then - node:render(section, scope or {}) - end - end - -%> - - <%- if self.sortable or self.extedit or self.addremove then -%> -
    -
    - <%- if self.sortable then -%> - - - <% end; if self.extedit then -%> - onclick="location.href='<%=self.extedit:format(section)%>'" - <%- elseif type(self.extedit) == "function" then - %> onclick="location.href='<%=self:extedit(section)%>'" - <%- end - %> alt="<%:Edit%>" title="<%:Edit%>" /> - <% end; if self.addremove then %> - - <%- end -%> -
    -
    - <%- end -%> -
    - <%- end -%> - - <%- if isempty then -%> -
    -
    <%:This section contains no values yet%>
    -
    - <%- end -%> -
    - - <% if self.error then %> -
    -
      <% for _, c in pairs(self.error) do for _, e in ipairs(c) do -%> -
    • <%=pcdata(e):gsub("\n","
      ")%>
    • - <%- end end %>
    -
    - <% end %> - - <%- if self.addremove then -%> - <% if self.template_addremove then include(self.template_addremove) else -%> -
    - <% if self.anonymous then %> - - <% else %> - <% if self.invalid_cts then -%> -
    <%:Invalid%>
    - <%- end %> -
    - -
    - - <% end %> -
    - <%- end %> - <%- end -%> -
    - diff --git a/luci-base/luasrc/view/cbi/tsection.htm b/luci-base/luasrc/view/cbi/tsection.htm deleted file mode 100644 index 8f3b7f0ff..000000000 --- a/luci-base/luasrc/view/cbi/tsection.htm +++ /dev/null @@ -1,52 +0,0 @@ -
    - <% if self.title and #self.title > 0 then -%> - <%=self.title%> - <%- end %> - <% if self.error_msg and #self.error_msg > 0 then -%> -
    - <%=self.error_msg%> -
    - <%- end %> - <% if self.description and #self.description > 0 then -%> -
    <%=self.description%>
    - <%- end %> - <% local isempty = true for i, k in ipairs(self:cfgsections()) do -%> - <% if self.addremove then -%> -
    - -
    - <%- end %> - - <%- section = k; isempty = false -%> - - <% if not self.anonymous then -%> -

    <%=section:upper()%>

    - <%- end %> - -
    - <%+cbi/ucisection%> -
    - <%- end %> - - <% if isempty then -%> - <%:This section contains no values yet%>

    - <%- end %> - - <% if self.addremove then -%> - <% if self.template_addremove then include(self.template_addremove) else -%> -
    - <% if self.anonymous then -%> - - <%- else -%> - <% if self.invalid_cts then -%> -
    <%:Invalid%>
    - <%- end %> -
    - -
    - - <%- end %> -
    - <%- end %> - <%- end %> -
    diff --git a/luci-base/luasrc/view/cbi/tvalue.htm b/luci-base/luasrc/view/cbi/tvalue.htm deleted file mode 100644 index d1e9e6672..000000000 --- a/luci-base/luasrc/view/cbi/tvalue.htm +++ /dev/null @@ -1,5 +0,0 @@ -<%+cbi/valueheader%> - -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/ucisection.htm b/luci-base/luasrc/view/cbi/ucisection.htm deleted file mode 100644 index 8fa11d68f..000000000 --- a/luci-base/luasrc/view/cbi/ucisection.htm +++ /dev/null @@ -1,56 +0,0 @@ -<%- - if type(self.hidden) == "table" then - for k, v in pairs(self.hidden) do --%> - -<%- - end - end -%> - -<% if self.tabs then %> - <%+cbi/tabcontainer%> -<% else %> - <% self:render_children(section, scope or {}) %> -<% end %> - -<% if self.error and self.error[section] then -%> -
    -
      <% for _, e in ipairs(self.error[section]) do -%> -
    • - <%- if e == "invalid" then -%> - <%:One or more fields contain invalid values!%> - <%- elseif e == "missing" then -%> - <%:One or more required fields have no value!%> - <%- else -%> - <%=pcdata(e)%> - <%- end -%> -
    • - <%- end %>
    -
    -<%- end %> - -<% if self.optionals[section] and #self.optionals[section] > 0 or self.dynamic then %> -
    - <%- - if self.dynamic then - local keys, vals, name, opt = { }, { } - for name, opt in pairs(self.optionals[section]) do - keys[#keys+1] = name - vals[#vals+1] = opt.title - end - -%> - 0, "data-choices", luci.util.json_encode({keys, vals})) - %> /> - <%- else -%> - - <%- end -%> - -
    -<% end %> diff --git a/luci-base/luasrc/view/cbi/upload.htm b/luci-base/luasrc/view/cbi/upload.htm deleted file mode 100644 index 3c3d82b65..000000000 --- a/luci-base/luasrc/view/cbi/upload.htm +++ /dev/null @@ -1,24 +0,0 @@ -<% - local t = require("luci.tools.webadmin") - local v = self:cfgvalue(section) - local s = v and nixio.fs.stat(v) --%> -<%+cbi/valueheader%> - <% if s then %> - <%:Uploaded File%> (<%=t.byte_format(s.size)%>) - <% if self.unsafeupload then %> - /> - " alt="<%:Replace entry%>" title="<%:Replace entry%>" src="<%=resource%>/cbi/reload.gif" /> - <% end %> - <% end %> - - <% if not self.unsafeupload then %> - /> - <% end %> - - <% if (not s) or (s and not self.unsafeupload) then %> - /> - <% end %> - /> -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/value.htm b/luci-base/luasrc/view/cbi/value.htm deleted file mode 100644 index 6060310b1..000000000 --- a/luci-base/luasrc/view/cbi/value.htm +++ /dev/null @@ -1,35 +0,0 @@ -<%+cbi/valueheader%> - -<% local choices = self:choices() - if choices then %> - > -<% else %> - > -<% end %> - -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/cbi/valuefooter.htm b/luci-base/luasrc/view/cbi/valuefooter.htm deleted file mode 100644 index 805312e45..000000000 --- a/luci-base/luasrc/view/cbi/valuefooter.htm +++ /dev/null @@ -1 +0,0 @@ -<% include( valuefooter or "cbi/full_valuefooter" ) %> diff --git a/luci-base/luasrc/view/cbi/valueheader.htm b/luci-base/luasrc/view/cbi/valueheader.htm deleted file mode 100644 index 761a54aed..000000000 --- a/luci-base/luasrc/view/cbi/valueheader.htm +++ /dev/null @@ -1 +0,0 @@ -<% include( valueheader or "cbi/full_valueheader" ) %> diff --git a/luci-base/luasrc/view/cbi/wireless_modefreq.htm b/luci-base/luasrc/view/cbi/wireless_modefreq.htm deleted file mode 100644 index eeb1d5c5c..000000000 --- a/luci-base/luasrc/view/cbi/wireless_modefreq.htm +++ /dev/null @@ -1,173 +0,0 @@ -<%+cbi/valueheader%> - - - - - - - -
    - - - -<%+cbi/valuefooter%> diff --git a/luci-base/luasrc/view/csrftoken.htm b/luci-base/luasrc/view/csrftoken.htm deleted file mode 100644 index 57ac03f3b..000000000 --- a/luci-base/luasrc/view/csrftoken.htm +++ /dev/null @@ -1,24 +0,0 @@ -<%# - Copyright 2015 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - -

    <%:Form token mismatch%>

    -
    - -

    <%:The submitted security token is invalid or already expired!%>

    - -

    <%: - In order to prevent unauthorized access to the system, your request has - been blocked. Click "Continue »" below to return to the previous page. -%>

    - -
    - -

    - Continue » -

    - -<%+footer%> diff --git a/luci-base/luasrc/view/empty_node_placeholder.htm b/luci-base/luasrc/view/empty_node_placeholder.htm deleted file mode 100644 index b7e276b96..000000000 --- a/luci-base/luasrc/view/empty_node_placeholder.htm +++ /dev/null @@ -1,11 +0,0 @@ -<%# - Copyright 2010 Jo-Philipp Wich - Copyright 2018 Daniel F. Dickinson - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - -

    Component not present.

    - -<%+footer%> diff --git a/luci-base/luasrc/view/error404.htm b/luci-base/luasrc/view/error404.htm deleted file mode 100644 index a762f6038..000000000 --- a/luci-base/luasrc/view/error404.htm +++ /dev/null @@ -1,11 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> -

    404 <%:Not Found%>

    -

    <%:Sorry, the object you requested was not found.%>

    -<%:Unable to dispatch%>: <%=url(unpack(luci.dispatcher.context.request))%> -<%+footer%> diff --git a/luci-base/luasrc/view/error500.htm b/luci-base/luasrc/view/error500.htm deleted file mode 100644 index 34a52cda8..000000000 --- a/luci-base/luasrc/view/error500.htm +++ /dev/null @@ -1,11 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> -

    500 <%:Internal Server Error%>

    -

    <%:Sorry, the server encountered an unexpected error.%>

    -
    <%=message%>
    -<%+footer%> diff --git a/luci-base/luasrc/view/footer.htm b/luci-base/luasrc/view/footer.htm deleted file mode 100644 index ba14ec867..000000000 --- a/luci-base/luasrc/view/footer.htm +++ /dev/null @@ -1,27 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2019 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<% - local is_rollback_pending, rollback_time_remaining, rollback_session, rollback_token = luci.model.uci:rollback_pending() - - if is_rollback_pending or trigger_apply or trigger_revert then -%> - -<% - end - - include("themes/" .. theme .. "/footer") -%> diff --git a/luci-base/luasrc/view/header.htm b/luci-base/luasrc/view/header.htm deleted file mode 100644 index 1ef0e5b01..000000000 --- a/luci-base/luasrc/view/header.htm +++ /dev/null @@ -1,33 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2019 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<% - if not luci.dispatcher.context.template_header_sent then - include("themes/" .. theme .. "/header") - luci.dispatcher.context.template_header_sent = true - end - - local applyconf = luci.config and luci.config.apply -%> - - - - diff --git a/luci-base/luasrc/view/indexer.htm b/luci-base/luasrc/view/indexer.htm deleted file mode 100644 index 28fc3debc..000000000 --- a/luci-base/luasrc/view/indexer.htm +++ /dev/null @@ -1,7 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<% include("themes/" .. theme .. "/indexer") %> \ No newline at end of file diff --git a/luci-base/luasrc/view/lease_status.htm b/luci-base/luasrc/view/lease_status.htm deleted file mode 100644 index bbaf5986b..000000000 --- a/luci-base/luasrc/view/lease_status.htm +++ /dev/null @@ -1,102 +0,0 @@ - - -
    -

    <%:Active DHCP Leases%>

    -
    -
    -
    <%:Hostname%>
    -
    <%:IPv4-Address%>
    -
    <%:MAC-Address%>
    -
    <%:Leasetime remaining%>
    -
    -
    -
    <%:Collecting data...%>
    -
    -
    -
    - -<% - local fs = require "nixio.fs" - local has_ipv6 = fs.access("/proc/net/ipv6_route") - - if has_ipv6 then --%> - -<% end -%> diff --git a/luci-base/luasrc/view/sysauth.htm b/luci-base/luasrc/view/sysauth.htm deleted file mode 100644 index 9b0e2de78..000000000 --- a/luci-base/luasrc/view/sysauth.htm +++ /dev/null @@ -1,75 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2012 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - -
    - <%- if fuser then %> -
    -

    <%:Invalid username and/or password! Please try again.%>

    -
    - <% end -%> - -
    -

    <%:Authorization Required%>

    -
    - <%:Please enter your username and password.%> -
    -
    -
    - -
    - -
    -
    -
    - -
    - -
    -
    -
    -
    - -
    - - -
    -
    - - -<% -local uci = require "luci.model.uci".cursor() -local fs = require "nixio.fs" -local https_key = uci:get("uhttpd", "main", "key") -local https_port = uci:get("uhttpd", "main", "listen_https") -if type(https_port) == "table" then - https_port = https_port[1] -end - -if https_port and fs.access(https_key) then - https_port = https_port:match("(%d+)$") -%> - - - -<% end %> - -<%+footer%> diff --git a/luci-base/luasrc/view/view.htm b/luci-base/luasrc/view/view.htm deleted file mode 100644 index bddd8e446..000000000 --- a/luci-base/luasrc/view/view.htm +++ /dev/null @@ -1,8 +0,0 @@ -<%+header%> - -
    -
    <%:Loading view…%>
    - -
    - -<%+footer%> diff --git a/luci-base/luasrc/view/wifi_assoclist.htm b/luci-base/luasrc/view/wifi_assoclist.htm deleted file mode 100644 index f6f66fbbc..000000000 --- a/luci-base/luasrc/view/wifi_assoclist.htm +++ /dev/null @@ -1,120 +0,0 @@ -<% - local supports_deauth = {} - - local _, v - for _, v in ipairs(luci.util.ubus()) do - local iface = v:match("^hostapd%.(.+)$") - if iface then - local funcs = luci.util.ubus(v) - if type(funcs) == "table" and funcs.del_client then - supports_deauth[iface] = true - end - end - end -%> - - - -
    -
    -
    <%:Network%>
    -
    <%:MAC-Address%>
    -
    <%:Host%>
    -
    <%:Signal%> / <%:Noise%>
    -
    <%:RX Rate%> / <%:TX Rate%>
    - <% if next(supports_deauth) then %> -
    <%:Disconnect%>
    - <% end %> -
    -
    -
    <%:Collecting data...%>
    -
    -
    diff --git a/luci-base/po/ca/base.po b/luci-base/po/ca/base.po deleted file mode 100644 index 801f58fec..000000000 --- a/luci-base/po/ca/base.po +++ /dev/null @@ -1,6550 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2014-06-06 11:17+0200\n" -"Last-Translator: Alex \n" -"Language-Team: LANGUAGE \n" -"Language: ca\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(finestra de %d minuts, interval de %d segons)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s disponibles)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(buit)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(sense interfícies adjuntes)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Camp addicional --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Escolliu, si us plau --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- personalitzat --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Càrrega d'1 minut:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Càrrega de 15 minuts:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Càrrega de 5 minuts:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "Port de consulta DNS " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "Port del servidor DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"Es consultaran els servidors DNS " -"segons l'ordre del fitxer de resolució" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "Adreça IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "Passarel·la IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "" -"Màscara de xarxa IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"Adreça IPv6 o Xarxa (CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "Passarel·la IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "Configuració dels LEDs" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "Nom LED" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "Adreça MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Arrendaments de DHCP max." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Mida màx. de paquet EDNS0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Consultes concurrents max." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"Avís: cal reiniciar manualment el servei cron si el fitxer crontab estava " -"buit abans d'editar-lo." - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "Llindar de reintent ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "Ponts ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "Identificador de canal virtual (VCI) ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "Identificador de camí virtual (VPI) ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Els ponts ATM mostren ethernet encapsulat en connexions AAL5 com interfícies " -"de xarxa virtual de Linux que es poden utilitzar conjuntament amb DHCP o PPP " -"per trucar a la xarxa del proveïdor." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "Número de dispositiu ATM" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Concentrador d'accés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Punt d'accés" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Accions" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Rutes IPv4 actives" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Rutes IPv6 actives" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Connexions actives" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Arrendaments DHCP actius" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Arrendaments DHCPv6 actius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Afegeix" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"Afegeix el sufix de domini local als noms servits des dels fitxers de hosts" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Afegeix una interfície nova..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Fitxers de Hosts addicionals" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Adreça" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Adreça per accedir al relay bridge local" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administració" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Paràmetres avançats" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Alerta" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Permetre l'autenticació SSH amb " -"contrasenya" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Permet-les totes menys les llistades" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Permet només les llistades" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Permetre el localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Permetre a màquines remotes de connectar-se als ports reenviats de l'SSH " -"local" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Accés d'administrador amb contrasenya" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Permetre l'accés de l'usurari root amb contrasenya" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "Permet respostes del rang 127.0.0.0/8, p.e. per serveis RBL" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antena 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antena 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Configuració d'antena" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Qualsevol zona" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Assigna interfícies..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Estacions associades" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Autenticació" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autoritzada" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Es requereix autenticació" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Refresc automàtic" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Disponible" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Mitjana:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Enrere" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Enrere al Resum" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Enrere a la configuració" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Enrere al resum" - -# Endarrere cap a resultats d'escaneig -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Enrere als resultats de l'escaneig" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Còpia de seguretat" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Còpia de seguretat i microprogramari" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Llista de còpies de seguretat" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Adreça mal especificada!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"A sota hi ha la llista determinada de fitxers per fer-ne còpia. Consisteix " -"en els fitxers de configuració canviats i marcats per l'opkg, fitxers base " -"essencials i els patrons de còpia de seguretat definits per l'usuari." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Velocitat de bits" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Substitució dels dominis NX falsos" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Pont" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Pont d'interfícies" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Número d'unitat de pont" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Aixecar a l'engegada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Controlador sense fil Broadcom 802.11%s" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Controlador sense fil Broadcom BCM%04x 802.11" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "En memòria intermèdia" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Ús de CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Cancel·la" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Cadena" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Canvis" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Canvis aplicats." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Canvia la paraula clau de l'administrador per accedir al dispositiu" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Canal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Comprovació" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Suma de verificació" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Escolliu la zona de tallafocs que voleu assignar a aquesta interfície. Trieu " -"sense especificar per esborrar la interfície de la zona associada o " -"ompliu el camp crea per definir una nova zona i adjuntar-hi la " -"interfície." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Trieu les xarxes que voleu adjuntar a la interfície sense fil o ompliu el " -"camp crea per definir una xarxa nova." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Xifra" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Fes clic a \"Genera l'arxiu\" per obtenir un fitxer .tar.gz amb els fitxers " -"de configuració actuals." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Client" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "ID de client a enviar en les sol·licituds DHCP" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Tanca la llista..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Aplegant dades..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Ordre" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Configuració comuna" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Configuració" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Confirmació" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Connecta" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Connectat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Límit de connexió" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Connexions" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "País" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Codi de País" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Cobreix la interfície següent" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Cobreix les interfícies següents" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Crea / Assigna zona de tallafocs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Crea interfície" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Crea un pont entre múltiples interfícies" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Crític" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Nivell de registre del Cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Interfície personalitzada" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Personalitza el comportament dels LEDs del dispositiu, si és possible." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Servidor DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP i DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "Client DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Opcions DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Reenviaments DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Depuració" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "%d per defecte" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Passarel·la per defecte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Estat per defecte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Definiu el nom d'aquesta xarxa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Suprimeix" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Suprimeix aquesta xarxa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Descripció" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Destí" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Dispositiu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Configuració de dispositiu" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnòstics" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Directori" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Inhabilita" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Inhabilita el DHCP en aquesta interfície." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Inhabilitat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Descarta les respostes RFC1918 des de dalt" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Optimització de distància" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Distància al membre de la xarxa més allunyat en metres." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diversitat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"El Dnsmasq és un servidor DHCP combinat i un reenviador de DNS per tallafocs NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Es requereix un domini" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"No reenviïs les peticions DNS " -"sense el nom DNS" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Descarrega còpia de seguretat" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Instància de Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"El Dropbear ofereix accés a una consola SSH per xarxa i un servidor SCP integrat" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"DHCP dinàmic" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Túnel dinàmic" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Mètode EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Edita" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Edita aquesta interfície" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Edita aquesta xarxa" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Emergència" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Habilita" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Habilita l'STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Habilita negociació IPv6 en la enllaç PPP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Habilita el passatge de trames enormes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Habilita el client NTP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Habilita el servidor TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Habilita la funcionalitat VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Habilita l'aprenentatge i l'envelliment" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Activa/Desactiva" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Habilitat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Habilita l'Spanning Tree Protocol a aquest pont" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Mode d'encapsulació" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Encriptació" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Esborrant..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Error" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Adaptador Ethernet" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Switch Ethernet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Caduca" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Servidor de registre del sistema extern" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Port del servidor de registre del sistema extern" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "Protocol del servidor de registre del sistema extern" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Fitxer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Nom de fitxer de la imatge d'inici que es publica als clients" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Sistema de fitxers" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtra privat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtra els no útils" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Troba i uneix-te a la xarxa" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Acaba" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Tallafocs" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Ajusts de tallafocs" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Estat de tallafocs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Versió de microprogramari" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Escriptura del microprogramari a la memòria flaix" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Puja una imatge..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Escriu una imatge nova a la memòria flaix" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Operacions a la memòria flaix" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Escrivint a la memòria flaix..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Força" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Força el CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Força el DHCP en aquesta xarxa encara que es detecti altre servidor." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Força el TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Força el TKIP i el CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Reenvia el trànsit DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Reenvia el trànsit difós" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Mode de reenviament" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Llindar de fragmentació" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Lliure" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Només GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Passarel·la" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Ports de passarel·la" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Ajusts generals" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Genera l'arxiu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Controlador sense fils 802.11%s genèric" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" -"La contrasenya i la confirmació de contrasenya no es coincideixen. La " -"contrasenya no s'ha canviat!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Vés a la configuració de contrasenya" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Vés a la pàgina de configuració" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Contrasenya de HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Penja" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Ací pots configurar els aspectes bàsics del teu dispositiu, com el nom de la " -"màquina o el fus horari." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "" -"No mostris l'ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "Nom de màquina" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Entrades de noms de màquina" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "Xarxa o adreça IP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Nom de màquina" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Noms de màquina" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Adreça IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "Tallafocs IPv4" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Adreça IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "Difusió IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "Passarel·la IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Màscara de xarxa IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Longitud de prefix IPv4" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "Adreça IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "Tallafocs IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "Veïns IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Adreça IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "Passarel·la IPv6" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "Prefix IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Longitud de prefix IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "Adreça IPv6" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-en-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-sobre-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-sobre-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identitat" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Si la teva memòria física és insuficient, les dades no usades es poden " -"intercanviar a un dispositiu d'intercanvi, pel qual hi haurà una quantitat " -"més gran de memòria RAM usable. " -"Tingues en compte que intercanviar dades és un procés molt lent, ja que no " -"es pot accedir al dispositiu d'intercanvi amb unes taxes tan altes com les " -"de la RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ignora /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignora la interfície" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignora el fitxer de resolució" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Fitxer d'imatge" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Entr." - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Temps d'espera d'inactivitat" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Entrant:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Informació" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Script d'inici" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Scripts d'inici" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Instal·la el paquet %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Instal·la extensions de protocol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interfície" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Configuració d'interfície" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Visió de conjunt de la interfície" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "La interfície s'està reconnectant..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfícies" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Error de servidor intern" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Invàlid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Usuari i/o contrasenya invàlids! Si us plau prova-ho de nou." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Sembla que intentes actualitzar una imatge que no hi cap a la memòria flaix, " -"si us plau verifica el fitxer d'imatge!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "Es requereix JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Uneix-te a la xarxa" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Mantenir la configuració" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Registre del nucli" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Versió del nucli" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Clau" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Clau #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Mata" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "Servidor L2TP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "Llindar de fracàs d'eco LCP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "Interval d'eco LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Etiqueta" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Llengua" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Llengua i estil" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Fitxer d'arrendament" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Temps d'arrendament restant" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Deixeu-ho en blanc per autodetectar" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Deixeu-ho en blanc per utilitzar l'adreça WAN actual" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Llegenda:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Límit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Enllaç actiu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Habilita el servei en totes les interfícies o, si no se n'especifica cap, en " -"totes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Càrrega" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Càrrega mitjana" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Carregant" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Adreça IPv4 local" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Adreça IPv6 local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Inici local" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Hora local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Domini local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Servidor local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Localitza les peticions" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Nivell de sortida de registre" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Registra les peticions" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Registre" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Entra" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Surt" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "Adreça MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Filtre d'adreces MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Filtre MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Llista MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Memòria" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Ús de Memòria (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Mètrica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Manca l'extensió de protocol del protocol %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Mode" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Dispositiu mòdem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Temps d'espera d'inici de mòdem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Punt de muntatge" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Punts de muntatge" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Els punts de muntatge defineixen en quin punt un dispositiu de memòria " -"s'adjuntarà amb el sistema de fitxers" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Opcions de muntatge" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Sistemes de fitxers muntats" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Baixa" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Puja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Candidats de servidor NTP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Nom" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Nom de la nova interfície" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Nom de la nova xarxa" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navegació" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Màscara de xarxa" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Xarxa" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Utilitats de xarxa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Imatge d'inici de xarxa" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Xarxa sense interfícies." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Següent" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Cap servidor DHCP configurat en aquesta interfície" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Cap fitxer trobat" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "No hi ha informació disponible" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Sense memòria cau negativa" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Cap xarxa configurada en aquest dispositiu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Cap nom de xarxa especificat" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "No hi ha cap contrasenya establerta!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "No hi ha regles en aquesta cadena" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Cap zona assignada" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Soroll" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Soroll:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Cap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normal" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "No trobat" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "No associat" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "No connectat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Avís" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"En aquesta pàgina pots configurar les interfícies de xarxa. Pots fer un pont " -"entre diverses interfícies clicant sobre el camp \"interfície pont\" i " -"introduint els noms de les diverses interfícies de xarxa separats per " -"espais. També pots fer servir la notació VLAN INTERFACE.VLANNR (p.e.: eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Cal especificar o el nom de host o l'adreça MAC!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Un o més dels camps requerits conté un valor invàlid!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Un o més dels camps requerits no té valor!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Obre una llista..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Opció canviada" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Opció treta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Opcions" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Altres:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Sort." - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Sortint:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Visió de conjunt" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Propietari" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "Contrasenya PAP/CHAP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "Nom d'usuari PAP/CHAP" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Encapsulació PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Es requereix el paquet libiwinfo!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Paquets" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Part de la zona %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Contrasenya" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Autenticació per contrasenya" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Contrasenya de la clau privada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Ruta als Certificats CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Ruta a la clau privada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Màxim:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Executa un reinici" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Executa un reinici" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Velocitat física:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Ajusts físics" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Paquets" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Si us plau entra el teu nom d'usuari i contrasenya." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Política" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Estatus de port" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Evita la comunicació client a client" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Procedeix" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Processos" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protocol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Habilita el servidor NTP" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Calidad" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Llindar RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "Velocitat RX" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Llegeix /etc/ethers per configurar el servidor DHCP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Connexions en temps real" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Gràfiques en temps real" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Càrrega en temps real" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Trànsit en temps real" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Dispositiu sense fils en temps real" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Reinicia" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Reiniciant..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Arranca de nou el sistema operatiu del teu dispositiu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Recepció" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Antena receptora" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Reconnex aquesta interfície" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Referències" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Relé" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Pont de relé" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Relé entre xarxes" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Pont de relé" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Adreça IPv4 remota" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "Adreça IPv4 remota o FQDN" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Treu" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Reemplaça l'entrada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Reemplaça la configuració sense fil" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Alguns ISP ho requereixen, per exemple el Charter amb DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Restableix" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Reinicia els comptadors" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Reestableix els valors per defecte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Reinicia" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Reinicia el tallafocs" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Restauració de la configuració" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Restaura còpia de seguretat" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Mostra/amaga la contrasenya" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Reverteix" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Arrel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Directori arrel dels fitxers servits per TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Contrasenya de l'encaminador" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Rutes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Les rutes especifiquen per quina interfície i passarel·la es pot arribar a " -"un cert ordinador o xarxa." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Accés SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "Claus SSH" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Desa" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Desa i aplica" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Escaneja" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Tasques programades" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Secció afegida" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Secció treta" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Clients separats" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Ajusts de servidor" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Nom de servei" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Tipus de servei" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Serveis" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "Configura la sincronització de l'hora" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Atura aquesta interfície" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Senyal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Senyal:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Mida" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Salta" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Salta al contingut" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Salta a la navegació" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "No es pot desar els valors perquè alguns camps estan invàlids!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Tristament, l'object que heu sol·licitat no s'ha trobat." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Tristament, el servidor ha encontrat un error inesperat." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Origen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Especifica el directori a que el dispositiu està adjuntat" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Especifica el port d'escolta d'aquesta instància del Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Especifiqueu el clau de xifració secret aquí." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Inici" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Prioritat d'inici" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Arrencada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Rutes IPv4 estàtiques" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Rutes IPv6 estàtiques" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Leases estàtics" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Rutes estàtiques" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Adreça estàtica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Estat" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Atura" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Ordre estricte" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Envia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Entrada d'intercanvi" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Commutador" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Commutador %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Commutador %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Protocol de commutador" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Sincronitza amb el navegador" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Sincronitzant..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Sistema" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Registre del sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Propietats del sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Mida de la memòria intermèdia per al registre del sistema" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Ajusts TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Arrel del servidor TFTP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "Velocitat TX" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Taula" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Destí" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Acaba" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"El paquet libiwinfo-lua no està instal·lat. Heu de instal·lar " -"aquest component per tenir una configuració sense fil funcionant!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Els caràcters permets són: A-Z, a-z, 0-9 i _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"El fitxer de dispositiu de la memòria o partició (p.e. /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"El sistema the fitxers que es va fer servir per formatar la memòria (p.e. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"S'ha pujat la imatge per a la memòria flaix. A sota hi ha llistades la suma " -"de verificació i la mida del fitxer per assegurar la integritat de les dades." -"
    Fes clic a \"Procedeix\" a continuació per començar el procés " -"d'escriptura a la memòria flaix." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "S'han desfet els següents canvis" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Les següents regles estan actualment actives en aquest sistema." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "El nom de xarxa donat no és únic" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"El maquinari no es capaç de múltiples SSID i la configuració existent es " -"reemplaçara si procediu." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"La longitud del prefix IPv4 en bits, el reste s'utilitza en les adreces IPv6." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "La longitud del prefix IPv6 en bits" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "El protocol seleccionat necessita un dispositiu assignat" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"El sistema està esborrant la partició de configuració i es reiniciarà quan " -"termini." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"S'està escrivint la imatge del microprogramari a la memòria flaix.
    NO " -"APAGUIS EL DISPOSITIU!
    Espera uns minuts abans d'intentar connectar-te " -"de nou. Pot ser necessari que renovis l'adreça DHCP del teu ordinador per " -"connectar-te de nou a l'encaminador, depenent de la configuració que hi " -"tinguis." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"La imatge pujada no conté un format suportat. Assegura't de triar el format " -"d'imatge genèric per la teva plataforma." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Tema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "No hi ha arrendaments actius." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "No hi ha canvis pendents per revertir!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "No hi ha canvis pendents!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"No s'ha establert cap contrasenya en aquest encaminador. Si us plau, " -"configura una contrasenya per protegir la interfície web i l'accés SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Aquest és el contingut de /etc/rc.local. Afegeix-hi les teves comandes " -"(abans de la línia 'exit 0') per executar-les en finalitzar el procés " -"d'arrencada." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Aquest és l'únic DHCP a la teva xarxa local" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"Aquest és el crontab del sistema en el qual es poden definir tasques " -"programades." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Aquesta llista mostra una vista general sobre els processos corrent al " -"sistema actualment i el seu estat." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" -"Aquesta pàgina ofereix una vista general de les connexions de xarxa actives " -"actualment." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Aquesta secció encara no conté cap valor" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Sincronització de l'hora" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "La sincronització de hora encara no s'ha configurat." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Zona horària" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Per restaurar els fitxers de configuració, pots pujar una còpia de seguretat " -"generada anteriorment aquí. Per restablir el microprogramari al seu estat " -"inicial, fes clic a \"Restableix la configuració\" (només funciona amb " -"imatges squashfs)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Total disponible" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Rastre de ruta" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Trànsit" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Transferència" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Taxa de transmissió" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Transmissió" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Potència de transmissió" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Antena transmissora" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Activador" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Mode d'activació" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "ID del túnel" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Interfície del túnel" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Potència Tx" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Tipus" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Només UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "Dispositiu USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Desconegut" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Sense gestionar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Canvis sense desar" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Tipus de protocol no suportat." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Puja aquí una imatge compatible amb sysupgrade per reemplaçar el " -"microprogramari actual. Activa \"Mantenir la configuració\" per retenir la " -"configuració actual (requereix una imatge de microprogramari compatible)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Puja un arxiu..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Fitxer pujat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Temps en marxa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Fes servir /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Utilitza la bandera de difusió" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Usat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Nom d'usuari" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANs en %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANs en %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "Servidor VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "Classe de venidor per enviar al sol·licitar DHCP" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Verifica" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Sistema obert WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Clau compartit WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "Contrasenya WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Mode WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "Contrasenya WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"La xifratge WPA requereix que sigui instal·lat el wpa_supplicant (pel mode " -"client) o el hostapd (pels modes AP i ad hoc)." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Esperant que s'apliquin els canvis..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Esperant que s'acabi l'ordre..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "Esperant el dispositiu..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Advertència" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Sense fils" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Adaptador sense fils" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Xarxa sense fils" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Resum sense fils" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Seguretat sense fils" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "El dispositiu sense fils està inhabilitat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "El dispositiu sense fils està sense associar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "El dispositiu sense fils està reiniciant..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "La xarxa sense fil està inhabilitada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "La xarxa sense fils està habilitada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Escriure les peticions DNS rebudes al registre del sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "Escriure el registre del sistema al fitxer" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Pots activar o desactivar els scripts d'inici instal·lats ací. Els canvis " -"s'aplicaran després d'arrancar de nou el dispositiu.
    Atenció: " -"Si desactives scripts d'inici necessaris com el \"network\", el teu " -"dispositiu pot resultar inaccessible!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Has d'activar el JavaScript al teu navegador o LuCI no funcionarà " -"correctament." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "qualsevol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "pontejat" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "crea:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "crea un pont entre les interfícies especificades" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "inhabilita" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "caducat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"fitxer on els leases de DHCP s'emmagatzemaran" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "transemès" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "amagat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "si el destí és una xarxa" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "entrada" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "fitxer DNS local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "no" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "cap enllaç" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "parat" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "engegat" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "obert" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "encaminat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "etiquetat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "desconegut" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "il·limitat" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "sense espeficicar" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "sense espeficicar -o- crear:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "sense etiquetar" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "sí" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Enrere" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Aquí pots afegir-hi les claus SSH públiques (una per línia) per entrar " -#~ "per SSH amb autenticació per clau." - -#~ msgid "Password successfully changed!" -#~ msgstr "La contrasenya s'ha canviat amb èxit!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "La contrasenya no s'ha canviat a causa d'un error desconegut!" - -#~ msgid "Design" -#~ msgstr "Disseny" - -#~ msgid "Available packages" -#~ msgstr "Paquets disponibles" - -#~ msgid "" -#~ "Build/distribution specific feed definitions. This file will NOT be " -#~ "preserved in any sysupgrade." -#~ msgstr "" -#~ "Repositoris específics de la distribució/compilació. Aquest fitxer NO es " -#~ "preservarà durant les actualitzacions del microprogramari del sistema." - -#~ msgid "Displaying only packages containing" -#~ msgstr "Mostrant només els paquets que contenen" - -#~ msgid "Distribution feeds" -#~ msgstr "Repositoris de la distribució" - -#~ msgid "Download and install package" -#~ msgstr "Descarrega i instal·la el paquet" - -#~ msgid "Filter" -#~ msgstr "Filtre" - -#~ msgid "Find package" -#~ msgstr "Cerca paquet" - -#~ msgid "Free space" -#~ msgstr "Espai lliure" - -#~ msgid "General options for opkg" -#~ msgstr "Opcions generals d'opkg" - -#~ msgid "Install" -#~ msgstr "Instal·la" - -#~ msgid "Installed packages" -#~ msgstr "Paquets instal·lats" - -#~ msgid "No package lists available" -#~ msgstr "No hi ha llistes de paquets disponibles" - -#~ msgid "OK" -#~ msgstr "D'acord" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Configuració d'OPKG" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Les llistes de paquets tenen més de 24 hores" - -#~ msgid "Package name" -#~ msgstr "Nom del paquet" - -#~ msgid "Size (.ipk)" -#~ msgstr "Mida (.ipk)" - -#~ msgid "Software" -#~ msgstr "Programari" - -#~ msgid "Update lists" -#~ msgstr "Actualitza les llistes" - -#~ msgid "Version" -#~ msgstr "Versió" - -#~ msgid "none" -#~ msgstr "cap" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 i IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Només IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Només IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Duració de validitat d'arrendament" - -#~ msgid "Multicast address" -#~ msgstr "Adreça de difusió selectiva" - -#~ msgid "No chains in this table" -#~ msgstr "No hi ha cadenes en aquesta taula" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Es mantindran els fitxers de configuració." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Nota: Els fitxers de configuració s'esborraran." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Activa aquesta xarxa" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Controlador sense fil Hermes 802.11b" - -#~ msgid "Interface is shutting down..." -#~ msgstr "La interfície s'està aturant..." - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "Controlador sense fil RaLink 802.11%s" - -#~ msgid "Reconnecting interface" -#~ msgstr "Reconnectant la interfície" - -#~ msgid "Shutdown this network" -#~ msgstr "Atura aquesta xarxa" - -#~ msgid "Wireless restarted" -#~ msgstr "Sense fils reinciat" - -#~ msgid "Wireless shut down" -#~ msgstr "Sense fils aturat" - -#~ msgid "DHCP Leases" -#~ msgstr "Arrendaments DHCP" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "Arrendaments DHCPv6" - -#~ msgid "Sort" -#~ msgstr "Ordena" - -#~ msgid "help" -#~ msgstr "ajuda" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "Estat WAN IPv4" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "Estat WAN IPv6" - -#~ msgid "Apply" -#~ msgstr "Aplica" - -#~ msgid "Applying changes" -#~ msgstr "Aplicant els canvis" - -#~ msgid "Configuration applied." -#~ msgstr "S'ha aplicat la configuració." - -#~ msgid "Save & Apply" -#~ msgstr "Desa i aplica" - -#~ msgid "The following changes have been committed" -#~ msgstr "S'han comès els següents canvis" - -#~ msgid "There are no pending changes to apply!" -#~ msgstr "No hi ha canvis pendents per aplicar!" - -#~ msgid "Action" -#~ msgstr "Acció" - -#~ msgid "Buttons" -#~ msgstr "Botons" - -#~ msgid "Leasetime" -#~ msgstr "Duració d'arrendament" - -#, fuzzy -#~ msgid "automatic" -#~ msgstr "estàtic" - -#~ msgid "AR Support" -#~ msgstr "Suport AR" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Controlador sense fils d'Atheros 802.11%s" - -#~ msgid "Background Scan" -#~ msgstr "Escaneig de fons" - -#~ msgid "Compression" -#~ msgstr "Compressió" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Inhabilita el temporitzador HW-Beacon" - -#~ msgid "Do not send probe responses" -#~ msgstr "No enviïs les respostes de prova" - -#~ msgid "Fast Frames" -#~ msgstr "Fast Frames" - -#~ msgid "Maximum Rate" -#~ msgstr "Velocitat màxima" - -#~ msgid "Minimum Rate" -#~ msgstr "Velocitat mínima" - -#~ msgid "Multicast Rate" -#~ msgstr "Velocitat de difusió selectiva" - -#~ msgid "Outdoor Channels" -#~ msgstr "Canals d'exteriors" - -#~ msgid "Regulatory Domain" -#~ msgstr "Domini regulatori" - -#~ msgid "Separate WDS" -#~ msgstr "WDS separat" - -#~ msgid "Static WDS" -#~ msgstr "WDS estàtic" - -#~ msgid "Turbo Mode" -#~ msgstr "Mode Turbo" - -#~ msgid "XR Support" -#~ msgstr "Suport XR" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "Es crearà una xarxa addicional si deixes això sense marcar." - -#~ msgid "Join Network: Settings" -#~ msgstr "Unir-se a la xarxa: Ajusts" - -#~ msgid "CPU" -#~ msgstr "CPU" - -#~ msgid "Port %d" -#~ msgstr "Port %d" - -#~ msgid "VLAN Interface" -#~ msgstr "Interfície VLAN" diff --git a/luci-base/po/cs/base.po b/luci-base/po/cs/base.po deleted file mode 100644 index 136f58d71..000000000 --- a/luci-base/po/cs/base.po +++ /dev/null @@ -1,6620 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-05-31 13:59+0200\n" -"Last-Translator: koli \n" -"Language-Team: none\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: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d minutové okno, %d sekundový interval)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s k dispozici)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(prázdný)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(bez rozhraní připojení)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Doplňující pole --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Prosím vyberte --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- vlastní --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Zatížení za 1 minutu:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Zatížení za 15 minut:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Zatížení za 5 minut:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "port dotazů DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "port serveru DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"DNS servery budou dotazovány podle " -"pořadí resolvfile" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-Adresa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-Brána" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-Maska sítě" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-Adresa nebo Síť (CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-Brána" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED Konfigurace" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED Název" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-Adresa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Nejvyšší počet DHCP výpůjček" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Největší povolená velikost EDNS0 packetů" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Nejvyšší počet souběžných dotazů" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "ARP limit opakování" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM mosty" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "Identifikátor virtuálního kanálu ATM (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "Identifikátor virtuální cesty ATM (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Otevře ATM mosty přes uzavřené ethernetové rozhraní v AAL5 připojení jako " -"virtuální síťová rozhraní Linuxu, které mohou být použity ve spojení s DHCP " -"nebo PPP vytáčeného připojení od poskytovatele sítě." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "číslo ATM zařízení" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Přístupový koncentrátor" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Přístupový bod" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Akce" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Aktivní záznamy ve směrovací tabulce IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Aktivní záznamy ve směrovací tabulce IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Aktivní spojení" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Aktivní propůjčené DHCP adresy (leases)" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Aktivní propůjčené DHCPv6 adresy (leases)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Přidat" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "Přidat lokální koncovku k doménovým jménům ze souboru hosts" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Přidat rozhraní..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Dodatečné Hosts soubory" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Adresa" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Adresa pro přístup k místnímu relay bridge" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Správa" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Pokročilé nastavení" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Upozornění" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "Povolit SSH autentizaci heslem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Povolit vše mimo uvedené" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Povolit pouze uvedené" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Povolit localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Povolit vzdáleným hostitelům připojování k místním portům přesměrovaným " -"pomocí SSH" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Povolit přihlašovaní root účtu pomocí hesla" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Povolit root účtu přihlášení bez nastaveného hesla" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "Povolit upstream odpovědi na 127.0.0.0/8 rozsah, např. pro RBL služby" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Anténa 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Anténa 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Konfigurace antén" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Libovolná zóna" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Přiřadit rozhraní..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Připojení klienti" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Autentizace" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autoritativní" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Vyžadována autorizace" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Automaticky obnovovat" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Dostupné" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Průměr:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Zpět" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Zpět k přehledu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Zpět ke konfiguraci" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Zpět k přehledu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Zpět k výsledkům vyhledávání" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Zálohovat" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Zálohovat / nahrát firmware" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Seznam souborů k zálohování" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Zadána neplatná adresa!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Seznam souborů k zálohování lze nalézt níže. Sestává se z konfiguračních " -"souborů označených opkg, nezbyných systémových souborů a souborů " -"vyhovujících uživatelem určeným vzorům." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Přenosová rychlost" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Přepíše falešnou hodnotu NX Domény" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Síťový most" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Síťové mosty" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Číslo síťového mostu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Zapnout po startu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Broadcom 802.11%s bezdrátový ovladač" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom modul BCM%04x 802.11 bezdrátový ovladač" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Bufferováno" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Vytížení CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Storno" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Řetěz" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Změny" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Změny aplikovány." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Změní administrátorské heslo pro přístup k zařízení" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Kanál" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Kontrola" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Kontrolní součet" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Zóna firewallu přiřazená k tomuto rozhraní. Pro odstranění rozhraní z " -"přiřazené zóny vyberte volbu nespecifikovaná. Pro vytvoření nové " -"zóny a její následné přiřazení danému rozhraní vyplňte pole vytvořit." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Vyberte síť(ě), které chcete připojit k tomuto bezdrátovému rozhraní, nebo " -"vyplňte pole vytvořit a pojmenujte novou síť." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Šifra" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Pro stažení archivu tar s aktuální konfigurací stiskněte \"Vytvořit archiv\"." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Klient" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "Klientské ID odesílané v DHCP požadavku" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Uzavírat neaktivní spojení po daném počtu sekund. Pro vypnutí časového " -"omezení použijte jako hodntu nulu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Zavřít seznam..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Probíhá sběr dat..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Příkaz" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Společná nastavení" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Nastavení" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Ověření" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Připojit" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Připojeno" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Omezení počtu připojení" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Připojení" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Země" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Kód země" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Pokrýt následující rozhraní" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Pokrýt následující rozhraní" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Vytvořit / přiřadit zónu firewallu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Vytvořit rozhraní" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Vytvořit síťový most přes více rozhraní" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Kritické" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Úroveň protokolování Cronu" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Vlastní rozhraní" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Upraví chování LED diod zařízení " -"pokud je to možné." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP server" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP a DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP klient" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Volby DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Přeposílání DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Ladění" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Výchozí %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Výchozí brána" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Výchozí stav" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Jméno sítě." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Další možnosti DHCP, například \"6,192.168.2.1,192.168.2.2\", " -"které odkazuje na různé DNS servery pro klienty." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Odstranit" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Odstranit tuto síť" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Popis" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Cíl" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Zařízení" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Nastavení zařízení" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnostika" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Adresář" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Zakázat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Pro toto rozhraní zakázat DHCP." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Zakázáno" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Vyřadit upstream RFC1918 odpovědi" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Optimalizace na vzdálenost" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Vzdálenost nejodlehlejšího člena sítě v metrech." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diverzita" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq je kombinace DHCP serveru a DNS " -"forwarderu pro použití v NAT firewallech" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "Necachovat negativní odpovědi (např. pro neexistující domény)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Nepřeposílat požadavky, které nemohou být zodpovězeny veřejnými jmennými " -"servery" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "Nepřeposílat reverzní dotazy na místní sítě" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Vyžadována doména" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Whitelist domén" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Nepřeposílat DNS dotazy bez DNS jména" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Stáhnout zálohu" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Instance Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear poskytuje SSH přístup a SCP server" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"Dynamický DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Dynamický tunel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Pro klienty alokovat DHCP adresy dynamicky. Pokud je volba zakázána, budou " -"obsloužení pouze klienti se statickými výpůjčkami." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Metoda EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Upravit" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Upravit toto rozhraní" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Upravit tuto síť" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Záchrana" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Povolit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Povolit STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Povolit dynamickou aktualizaci koncového bodu HE.net" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Na PPP spoji povolit vyjednání IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Povolit průchod jumbo rámců" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Povolit NTP klienta" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Povolit TFTP server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Povolit funkcionalitu VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Povolit ARP učení a stárnutí" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Povolit tento přípojný bod" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Povolit tento swapovací oddíl" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Povolit/Zakázat" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Povoleno" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Na tomto síťovém mostě povolit Spanning Tree Protocol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Režim zapouzdření" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Šifrování" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Odstraňování..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Chyba" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Ethernetový adaptér" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Ethernetový switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Rozšířit hostitele" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Vyprší" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"Čas vypršení vypůjčené adresy, minimum jsou 2 minuty (2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Externí protokolovací server" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Port externího protokolovacího serveru" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Soubor" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Název souboru s bootovacím obrazem oznamovaný klientům" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Souborový systém" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtrovat soukromé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtrovat nepotřebné" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Vyhledat a připojit síť" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Dokončit" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Nastavení firewallu" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Stav firewallu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Verze firmwaru" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Pevný zdrojový port pro odchozí DNS dotazy" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Nahrát firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Nahrát obraz..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Nahrát nový obraz s firmwarem" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Operace nad flash pamětí" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Nahrávám..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Vynutit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Vynutit CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Na této síti vynutit DHCP i v případě detekování jiného serveru." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Vynutit TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Vynutit TKIP a CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Přeposílat DHCP provoz" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Přeposílat broadcasty" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Režim přeposílání" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Hranice fragmentace" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Dávkování rámců" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Volné" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Pouze GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Brána" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Porty brány" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Obecná nastavení" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Obecné nastavení" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Vytvorǐt archív" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Generic 802.11%s Wireless Controller" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "Heslo nezměněno z důvodu nesouhlasu nového hesla a ověření hesla!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Přejít na nastavení hesla..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Přejít na související konfigurační stránku" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Heslo HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Zavěsit" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Nastavení základních vlastností zařízení jako je časová zóna nebo název " -"zařízení." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Skrývat ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Záznamy hostitelů" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Vypršení časového limitu hostitele" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" -"IP adresa hostitele nebo síť" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Jméno hostitele" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Jméno hostitele odesílané s DHCP požadavky" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Jména hostitelů" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP adresy" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4 firewall" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4 adresa" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "IPv4 broadcast" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "IPv4 brána" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "IPv4 maska sítě" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Délka IPv4 prefixu" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4 adresa" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6 firewall" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "IPv6 adresa" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "IPv6 brána" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "IPv6 prefix" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Délka IPv6 prefixu" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6 adresa" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-in-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-over-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-over-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identita" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "Namísto pevného uzlu zařízení připojovat pomocí UUID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "Namísto pevného uzlu zařízení připojovat pomocí názvu oddílu" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Pokud není povoleno, není nastaven žádný výchozí směrovací záznam" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "Pokud není povoleno, oznámené adresy DNS serverů budou ignorovány" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Pokud máte nedostatek fyzické paměti, nepoužívaná data mohou být dočasně " -"odložena do odkládacího zařízení, což bude mít za důsledek větší množství " -"použitelné RAM. Vezměte na " -"vědomí, že odkládání dat je velice pomalý proces, stejně jako fakt, že " -"přístup na odkládací zařízení je řádově pomalejší, než přístup do paměti " -"RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignorovat rozhraní" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignorovat resolv soubor" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Obraz" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Dovnitř" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Časový limit nečinnosti" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Příchozí:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Info" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Initskript" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Initskripty" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Instalovat balíček %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Instalovat protokolové rozšíření..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Rozhraní" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Konfigurace rozhraní" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Přehled rozhraní" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Rozhraní se znovu připojuje..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Rozhraní není přítomné nebo je dosud nepřipojeno." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Rozhraní" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -# Není co dodat. -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Vnitřní chyba serveru" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Neplatná vstupní hodnota" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" -"Uvedené VLAN ID je neplatné! Jsou povolena pouze ID z rozsahu %d až %d." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "Uvedené VLAN ID je neplatné! Každé ID musí být jedinečné" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Špatné uživatelské jméno a/nebo heslo! Prosím zkuste to znovu." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Zdá se, že se pokoušíte zapsat obraz, který se nevejde do flash paměti. " -"Prosím ověřte soubor s obrazem!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "Vyžadován JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Připojit k síti" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Připojit k síti: Vyhledání bezdrátových sítí" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Zachovat nastavení" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Záznam jádra" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Verze jádra" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Klíč" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Klíč #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Zabít" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "L2TP Server" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "LCP echo prahová hodnota selhání" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "LCP interval upozornění" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Popis" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Jazyk" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Jazyk a styl" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Soubor zájpůjček" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Zbývající doba trvání zápůjčky" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Ponechte prázdné pro automatickou detekci" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Ponecháte-li prázdné, použije stávající WAN adresu" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Legenda:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Limit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Odkaz na" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Seznam DNS serverů, na které " -"přeposílat požadavky" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Seznam domén, pro které povolit odpovědi podle RFC1918" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "Seznam hostitelů, kteří udávají falešné hodnoty NX domén" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Poslouchat pouze na daném rozhraní, nebo pokud není specifikováno, na všech" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Port pro příchozí dotazy DNS" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Zátěž" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Zátěž průměrná" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Načítání" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Místní IPv4 adresa" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Místní IPv6 adresa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Místní startup" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Místní čas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Místní doména" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Specifikace místní domény. Jména shodná s touto doménou nikdy nebudou " -"přesměrována ani rozlušťována pomocí DHCP nebo souborů hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Přípona místní domény, připojená za názvy DHCP jmen a záznamů v souboru hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Místní server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Lokalizovat jméno v závislosti na dotazující se podsíti, pokud bylo nalezeno " -"více IP adres" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Lokalizační dotazy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Úroveň logování" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Dotazy pro logování" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Logování" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Přihlásit" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Odhlásit" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "Nejnižší zapůjčenou adresu použít jako offset síťové adresy." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-Adresa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Filtr MAC adres" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Filtr MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Seznam Mac" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Nejvyšší povolené množství aktivních DHCP zápůjček" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Nejvyšší povolené množství souběžných DNS dotazů" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Nejvyšší povolená velikost EDNS.0 UDP paketů" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Nejvyšší počet sekund čekání, než bude modem připraven" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Maximální počet zapůjčených adres." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Paměť" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Využití paměti (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metrika" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Chybějící rozšíření protokolu %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Mód" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Modemové zařízení" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Časový limit inicializace modemu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Sledování" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Připojit vstup" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Přípojný bod" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Přípojné body" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Přípojné body - vstupy" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Přípojné body - změna vstupu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Přípojný bod určuje místo v souborovém systému, na kterém bude připojeno " -"paměťové zařízení" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Volby připojení" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Přípojný bod" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Připojené souborové systémy" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Přesunout dolů" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Přesunout nahoru" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Kandidáti NTP serveru" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Název" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Název nového rozhraní" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Název nové sítě" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigace" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Síťová maska" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Síť" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Síťové nástroje" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Síťový bootovací obraz" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Síť bez rozhraní." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Další »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Pro toto rozhraní není nastaven žádný DHCP server" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nebyly nalezeny žádné soubory" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Údaje nejsou k dispozici" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Žádná negativní mezipaměť" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Síť není nastavena na tomto zařízení" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Neuvedeno jméno sítě" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Žádné heslo!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Žádná pravidla v tomto řetězci" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Žádná zóna nepřiřazena" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Šum" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Šum:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Žádný" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normální" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Nenalezeno" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Neasociováno" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Nepřipojeno" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Oznámení" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Vypnutí prodlevy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Na této stránce můžete nastavit síťová rozhraní. Můžete přemostit několik " -"rozhraní zaškrtnutím pole \"přemostit rozhraní\" a zápisem názvů rozhraní, " -"vzájemně oddělených mezerami. Také můžete použít VLAN zápis INTERFACE.VLANNR (např.: eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Zapnutí prodlevy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Jedno jméno nebo mac adresa, musí být zadáno!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Jedno nebo více polí obsahuje neplatné hodnoty!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Jedno nebo více požadovaných polí neobsahuje hodnotu!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Otevřít seznam..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Volba změněna" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Volba odstraněna" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Možnosti" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Ostatní:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Ven" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Odchozí:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "Přepsat MAC adresu" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "Přepsat MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Přepsat bránu v DHCP odpovědích" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Přepsat síťovou masku, odesílanou klientům. Obvykle je spočítána podle " -"subsítě, která je obsluhována." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "Přepsat tabulku, používanou pro vnitřní cesty" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Přehled" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Vlastník" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "Heslo PAP/CHAP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "Uživatelské jméno PAP/CHAP" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Zapouzdření PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Vyžadován balíček libiwinfo!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Pakety" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Část zóny %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Heslo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Autentizace heslem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Heslo privátního klíče" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Cesta k certifikátu CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Cesta k certifikátu klienta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Cesta k privátnímu klíči" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Špička:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Provést restart" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Provést reset" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Fyzická rychlost:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Fyzické nastavení" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Paketů" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Prosím vložte vaše uživatelské jméno a heslo." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Politika" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Stav portu:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"Po takovém množství LCP echo selhání předpokládám, že peer je mrtvý. " -"Použijte 0 pro ignorování chyb" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Zabraňuje komunikaci klient-klient" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Pokračovat" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Procesy" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protokol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Protokol nového rozhraní" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Podpora pro protokol není nainstalována" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Poskytování NTP serveru" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Poskytování nové sítě" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Kvalita" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Práh RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "RX Rate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Port pro Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Tajný klíč pro Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Server Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Výběr ověřování portů" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Tajný klíč pro Radius-Authentication" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Server Radius-Authentication" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Přečtěte si /etc/ethers ke konfiguraci DHCP Serveru" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Opravdu odstranit bezdrátovou síť? Odstranění nelze vrátit zpět!\n" -"Můžete ztratit přístup k zařízení, pokud jste připojeni prostřednictvím této " -"sítě." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Opravdu resetovat všechny změny?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Opravdu prohodit protokol?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Připojení v reálném čase" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Grafy v reálném čase" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Zátěž v reálném čase" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Provoz v reálném čase" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Wireless v reálném čase" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Opětovné nastavení ochrany" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Reboot" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Rebootuji..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Rebootuje operační systém vašeho zařízení" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Přijmout" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Přijímací anténa" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Přepojit toto rozhraní" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Reference" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Přenos" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Přenášet mezi sítěmi" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Vzdálená IPv4 adresa" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Odstranit" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Opakovat skenování" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Nahradit vstup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Nahradit bezdrátovou konfiguraci" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -# Charter je poskytovate -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Vyžadováno u některých ISP, např. Charter s DocSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Reset" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Resetovat čítače" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Obnovit na výchozí" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Soubory Resolv a Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Soubor resolve" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Restart" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Restartovat firewall" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Obnovit" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Obnovit zálohu" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Odhalit/skrýt heslo" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Vrátit zpět" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Root" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Kořenový adresář souborů, přístupných přes TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Heslo routeru" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Trasy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Trasy určují, přes jaké rozhraní a bránu může být konkrétního hosta dosaženo." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Spustit kontrolu souborového systému před připojením zařízení" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Spustit kontrolu souborového systému" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Přístup přes SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH klíče" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Uložit" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Uložit & použít" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Skenovat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Naplánované úlohy" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Přidána sekce" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Sekce odebrána" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Podrobnosti viz manuálová stránka příkazu \"mount\"" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"Odesílat LCP echo požadaveky každých x sekund, účinné pouze ve spojení s " -"prahem selhání." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Oddělovat klienty" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Nastavení serveru" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Název služby" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Typ služby" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Služby" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "Nastavit synchronizaci času" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Nastavit DHCP server" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Ukázat aktuální seznam záložních souborů" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Shodit toho rozhraní" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Signál" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Signál:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Velikost" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Přeskočit" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Skočit na obsah" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Skočit na navigaci" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Time sloty" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Některá pole obsahují neplatné hodnoty, nelze uložit!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Omlouváme se, ale požadovaný objekt nebyl nalezen." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Omlouváme se, na serveru došlo k neočekávané vyjímce." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"Omlouváme se, ale v tomto zařízení není přítomná podpora pro upgrade " -"systému. Nový obraz firmwaru musí být zapsán ručně. Prosím, obraťte se na " -"wiki pro zařízení specifické instalační instrukce." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Zdroj" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Určuje port na kterém bude tato instance Dropbearu naslouchat" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Určuje množství neúspěšných ARP požadavků, po kterém je hostitel považován " -"za mrtvého" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "Určuje počet sekund, po kterém je hostitel považovám za mrtvého" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Zde nastavte soukromý šifrovací klíč." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Start" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Priorita spouštění" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Po spuštění" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Statické IPv4 trasy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Statické IPv6 trasy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Statické zápůjčky" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Statické trasy" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Statická adresa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Statické zápůjčky se používají pro přiřazení fixních IP adres a symbolických " -"jmen DHCP klientům. Jsou také vyžadovány pro nedynamické konfigurace " -"rozhraní, kde jsou povoleni pouze hosté s odpovídajícím nastavením." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Stav" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Stop" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Striktní výběr" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Odeslat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "Potlačit logování" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Vstupní bod" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Směrovač" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Směrovač číslo %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Směrovač číslo %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Směrovací protokol" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Synchronizovat s prohlížečem" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Synchronizuji..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Systém" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Systémový log" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Vlastnosti systému" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Velikost bufferu systémového logu" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Nastavení TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Kořenový adresář TFTP serveru" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "Rychlost TX" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Cíl" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Ukončit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"Sekce Nastavení zařízení pokrývá fyzické nastavení radiového " -"hardwaru jako kanál, vysílací výkon nebo výběr antény, které je sdíleno mezi " -"všemi bezdrátovými sítěmi (pokud hardware podporuje multi-SSID). Nastavení " -"konkrétní sítě jako šifrování, operační mód jsou seskupeny v sekci " -"Nastavení rozhraní." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Balíček libiwinfo-lua není nainstalován. Tato komponenta musí být " -"nainstalována, aby fungovalo nastavení bezdátové sítě!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "IPv6 prefix přidělený poskytovatelm většinou končí ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Povolené znaky jsou: A-Z, a-z, 0-9 a " -"_" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"Soubor zařízení paměti nebo oddílu (např. " -"/dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"Souborový systém, který byl použit pro formátování paměti (napři. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"Obraz flash byl nahrán. Prosím porovnejte níže uvedený checksum a velikost " -"souboru s originálním souborem pro zajištění integrity dat.
    Kliknutím " -"na \"Pokračovat\" spustíte proceduru flashování." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Následující změny byly vráceny" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Následující pravidla jsou v nyní na tomto systému aktivní." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "Zadané jméno sítě není jedinečné" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"Tento hardware nepodporuje multi-SSID. Pokud budete pokračovat, existující " -"konfigurace bude nahrazena." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "Délka IPv4 prefixu v bitech, zbytek se používá v IPv6 adresách" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "Délka IPv6 prefixu v bitech" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"Síťové porty tohoto zařízení mohou být kombinovány do několika VLANve kterých počítače mohou " -"komunikovat přímo mezi sebou. VLANse často používají na oddělení různých siťových částí. Většinou je " -"jeden port pro připojení k vyšší síti (Uplink) jako třeba internet a " -"zbývající porty pro místní síť." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "Vybraný protokol potřebuje mít přiřazeno zařízení" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"Systém maže konfigurační oddíl, po skončení procesu bude automaticky " -"restartován." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"Systém nyní nahrává firmware.
    NEVYPÍNEJTE ZAŘÍZENÍ!
    Počkejte " -"několik minut než se pokusíte znovu připojit. V záležitosti na vašem " -"nastavení, bude možná nutné obnovit adresu vašeho počítače, aby jste se " -"mohli znovu připojit." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Vzhled" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Nejsou žádné aktivní zápůjčky." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Nejsou zde žádné nevyřízené změny k navrácení!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Nejsou zde žádné nevyřízené změny!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Zatím zde není přiřazeno zařízení, prosím připojte nějaké v záložce " -"\"Fyzické nastavení\"" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Na tomto routeru není nastaveno heslo. Prosím, nastavte heslo uživatele root " -"tak, abyste ochránili webové rozhraní a mohli povolit SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Zde vidíte obsah souboru /etc/rc.local. Příkazy, které sem vložíte (před " -"příkaz 'exit 0') budou spuštěny na konci bootovacího procesu." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Toto je jediný DHCP v mistní síti" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"Toto je systémový crontab, v němž můžete nastavit naplánované úlohy. " -"Podrobnosti naleznete v crontab(5)." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"V tomto seznamu vidíte přehled aktuálně běžících systémových procesů a " -"jejich stavy." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "Tato stránka zobrazuje přehled aktivních síťových spojení." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Tato sekce zatím neobsahuje žádné hodnoty" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Synchronizace času" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Synchronizace času dosud není nakonfigurována." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Časové pásmo" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Zde můžete nahrát dříve vygenerovaný záložní archiv, pokud chcete obnovit " -"konfigurační soubory. Pro obnovení továrního nastavení stiskněte \"Obnovit " -"výchozí\" (možné pouze s obrazy squashfs)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Dostupná celkem" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Provoz" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Přenos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Vysílací rychlost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Přenos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Vysílací výkon" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Anténa vysílače" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Spouštění" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Trigger mód" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "ID tunelu" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Rozhraní tunelu" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Tx-Power" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Typ" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Pouze UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USB zařízení" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Neznámý" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Nespravovaný" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Neuložené změny" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Nepodporovaný typ protokolu." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Nahrát obraz pro upgrade systému, jímž bude přepsán běžící firmware. " -"Zkontrolujte \"Keep settings\" za účelem udržení aktuální konfigurace " -"(vyžaduje obraz kompatabilního firmwaru)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Nahrát archiv..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Nahrát soubor" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Uptime" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Použít /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Použít DHCP bránu" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Pomocí ISO/IEC 3166 alpha2 kódů zemí." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "Použít MTU na rozhraní tunelu" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "Použít TTL na rozhraní tunelu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Použít příznak broadcastu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Použít vlastní DNS servery" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Použít výchozí bránu" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Použít směrovací tabulku" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Použitím tlačítka Přidat přidáte novou zápůjčku (lease). MAC " -"adresa identifikuje počítač, IPv4 adresa určuje, jaká pevná " -"adresa bude použita. Hostname je přiřazeno jako symbolické jméno." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Použit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Uživatelské jméno" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANy na %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANy na %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "VPN server" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Ověřit" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "WEP Open System" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Sdílený klíč WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "WEP heslo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM mód" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "WPA heslo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"Šifrování WPA vyžaduje nainstalovaný wpa_supplicant (pro klientský režim) " -"nebo hostapd (pro AP a ad-hoc režim)." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Čekání na realizaci změn..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Čekání na dokončení příkazu..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Varování" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Bezdrátová síť" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Bezdrátový adaptér" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Bezdrátová síť" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Přehled bezdrátových sití" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Zabezpečení bezdrátové sítě" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Bezdrátová síť vypnuta" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Bezdrátová síť nespojena" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Probíhá restartování bezdrátové sítě..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Bezdrátová síť je zakázána" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Bezdrátová síť je povolena" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Zapisovat přijaté požadavky DNS do systemového logu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Zde můžete povolit nebo zakázat init skripty. Změny se projeví po restartu " -"zařízení.
    Varování: Pokud zakážete základní init skripty jako " -"\"network\", vaše zařízení se může stát nepřístupným!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Aby LuCI fungoval správně, musíte mít v prohlížeči povolený JavaScript." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "libovolný" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "přemostěný" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "vytvoří most přes vybraná rozhraní" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "zakázat" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "expirované" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"Soubor, ve kterém budou uloženy zadané DHCP výpůjčky (leases)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "plný-duplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "poloviční-duplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "skrytý" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "pokud cílem je síť" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "vstup" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "místní DNS soubor" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "ne" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "žádné spojení" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "off" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "on" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "směrované" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "označený" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "neznámý" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "neomezený" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "nespecifikovaný" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "nespecifikovaný -nebo- vytvořit:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "neoznačený" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "ano" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Zpět" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Vložte veřejné klíče (na každý řadek jeden) pro ověřovaní SSH přístupu." - -#~ msgid "Password successfully changed!" -#~ msgstr "Heslo bylo úspěšně změněno!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Neznámá chyba, heslo nebylo změněno!" - -#~ msgid "Design" -#~ msgstr "Vzhled" - -#~ msgid "Available packages" -#~ msgstr "Dostupné balíčky" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Zobrazeny pouze balíčky obsahující" - -#~ msgid "Download and install package" -#~ msgstr "Stáhnout a nainstalovat balíček" - -#~ msgid "Filter" -#~ msgstr "Filtr" - -#~ msgid "Find package" -#~ msgstr "Vyhledat balíček" - -#~ msgid "Free space" -#~ msgstr "Volné místo" - -#~ msgid "Install" -#~ msgstr "Instalovat" - -#~ msgid "Installed packages" -#~ msgstr "Nainstalované balíčky" - -#~ msgid "No package lists available" -#~ msgstr "Seznam balíčků není k dispozici" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Konfigurace balíčků OPKG" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Seznamy balíčků jsou starší než 24 hodin" - -#~ msgid "Package name" -#~ msgstr "Název balíčku" - -#~ msgid "Software" -#~ msgstr "Software" - -#~ msgid "Update lists" -#~ msgstr "Aktualizovat seznamy" - -#~ msgid "Version" -#~ msgstr "Verze" - -#~ msgid "none" -#~ msgstr "žádný" - -#~ msgid "Disable DNS setup" -#~ msgstr "Zakázat nastavení DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 a IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Pouze IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Pouze IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Doba platnosti zápůjčky" - -#~ msgid "Multicast address" -#~ msgstr "Adresa vícesměrového vysílání" - -#~ msgid "Protocol family" -#~ msgstr "Rodina protokolů" - -#~ msgid "No chains in this table" -#~ msgstr "Žádné řetězce v této tabulce" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Konfigurační soubory budou zachovány." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Pozn: Konfigurační soubory budou vymazány." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Aktivovat tuto síť" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Hermes 802.11b bezdrátový ovladač" - -#~ msgid "Interface is shutting down..." -#~ msgstr "Rozhraní se vypíná..." - -#~ msgid "Interface reconnected" -#~ msgstr "Rozhraní bylo znovu připojeno" - -#~ msgid "Interface shut down" -#~ msgstr "Rozhraní bylo vypnuto" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Prism2/2.5/3 802.11b Wireless Controller" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "RaLink 802.11%s Wireless Controller" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "Opravdu vypnout rozhraní \"%s\" ?\n" -#~ "Můžete ztratit přístup k zařízení, pokud jste připojeni prostřednictvím " -#~ "tohoto rozhraní." - -#~ msgid "Reconnecting interface" -#~ msgstr "Přepojuji rozhraní" - -#~ msgid "Shutdown this network" -#~ msgstr "Shodit tuto síť" - -#~ msgid "Wireless restarted" -#~ msgstr "Bezdrátová síť restartována" - -#~ msgid "Wireless shut down" -#~ msgstr "Bezdrátová síť vypnuta" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP výpůjčky" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "DHCPv6 přidělené IP" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "Opravdu odstranit toto rozhraní? Odstranění nelze vrátit zpět!\n" -#~ "Můžete ztratit přístup k zařízení, pokud jste připojeni prostřednictvím " -#~ "tohoto rozhraní." - -#, fuzzy -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "Opravdu vypnout síť ?\n" -#~ "Můžete ztratit přístup k zařízení, pokud jste připojeni prostřednictvím " -#~ "tohoto rozhraní." - -#~ msgid "Sort" -#~ msgstr "Seřadit" - -#~ msgid "help" -#~ msgstr "pomoc" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "Stav IPv4 WAN" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "Stav IPv6 WAN" - -#~ msgid "Apply" -#~ msgstr "Použít" - -#~ msgid "Applying changes" -#~ msgstr "Probíhá uplatňování nastavení" - -#~ msgid "Configuration applied." -#~ msgstr "Nastavení uplatněno." - -#~ msgid "Save & Apply" -#~ msgstr "Uložit & použít" - -#~ msgid "The following changes have been committed" -#~ msgstr "Následující změny byly provedeny" - -#~ msgid "There are no pending changes to apply!" -#~ msgstr "Nejsou zde žádné nevyřízené změny k aplikaci!" - -#~ msgid "Action" -#~ msgstr "Akce" - -#~ msgid "Buttons" -#~ msgstr "Tlačítka" - -#~ msgid "Handler" -#~ msgstr "Handler" - -#~ msgid "Maximum hold time" -#~ msgstr "Maximální doba držení" - -#~ msgid "Minimum hold time" -#~ msgstr "Minimální čas zápůjčky" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "Cesta ke spustitelnému souboru, který obsluhuje událost tlačítka" - -#~ msgid "This page allows the configuration of custom button actions" -#~ msgstr "Na této stránce si můžete nastavit vlastní události tlačítek" - -#~ msgid "Leasetime" -#~ msgstr "Doba trvání zápůjčky" - -#~ msgid "AR Support" -#~ msgstr "Podpora AR" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Atheros 802.11%s bezdrátový ovladač" - -#~ msgid "Background Scan" -#~ msgstr "Vyhledávat na pozadí" - -#~ msgid "Compression" -#~ msgstr "Komprese" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Zakázat HW-Beacon časovač" - -#~ msgid "Do not send probe responses" -#~ msgstr "Neodpovídat na vyhledávání" - -#~ msgid "Fast Frames" -#~ msgstr "Rychlé rámce" - -#~ msgid "Maximum Rate" -#~ msgstr "Nejvyšší míra" - -#~ msgid "Minimum Rate" -#~ msgstr "Nejnižší hodnota" - -#~ msgid "Multicast Rate" -#~ msgstr "Hodnota vícesměrového vysílání" - -#~ msgid "Outdoor Channels" -#~ msgstr "Venkovní kanály" - -#~ msgid "Regulatory Domain" -#~ msgstr "Doména regulátora" - -#~ msgid "Separate WDS" -#~ msgstr "Oddělovat WDS" - -#~ msgid "Static WDS" -#~ msgstr "Statický WDS" - -#~ msgid "Turbo Mode" -#~ msgstr "Turbo mód" - -#~ msgid "XR Support" -#~ msgstr "Podpora XR" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "Pokud není zaškrtnuto, bude vytvořena dodatečná síť." - -#~ msgid "Join Network: Settings" -#~ msgstr "Připojit k síti: nastavení" - -#~ msgid "CPU" -#~ msgstr "CPU" - -#~ msgid "Port %d" -#~ msgstr "Port %d" - -#~ msgid "Port %d is untagged in multiple VLANs!" -#~ msgstr "Port %d je neoznačený ve více VLAN!" - -#~ msgid "VLAN Interface" -#~ msgstr "Rozhraní VLAN" diff --git a/luci-base/po/de/base.po b/luci-base/po/de/base.po deleted file mode 100644 index 4d5a67623..000000000 --- a/luci-base/po/de/base.po +++ /dev/null @@ -1,6783 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-26 17:57+0200\n" -"PO-Revision-Date: 2018-12-13 11:43+0100\n" -"Last-Translator: Jo-Philipp Wich \n" -"Language-Team: \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: Poedit 1.8.11\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "%d ungültige Felder" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "%s darf nicht ohne VLAN-Tag in mehreren VLAN-Gruppen vorkommen!" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d Minuten Abschnitt, %d Sekunden Intervall)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s verfügbar)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(leer)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(keine Schnittstellen)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Zusätzliches Feld --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Bitte auswählen --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- benutzerdefiniert --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- anhand Gerätedatei selektieren --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- anhand Label selektieren --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "-- UUID vergleichen --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "-- Bitte auswählen --" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Systemlast (1 Minute):" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Systemlast (15 Minuten):" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "vierstellige hexadezimale ID" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Systemlast (5 Minuten):" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "sechstellige hexadezimale ID (ohne Doppelpunkte)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "802.11r: Schnelle Client-Übergabe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "Maximales Timeout für Quelladressprüfungen (SA Query)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "Wiederholungsintervall für Quelladressprüfungen (SA Query)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "802.11w: Schutz von Management-Frames aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "802.11w: Maximales Timeout" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "802.11w: Wiederholungsintervall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS Abfrageport" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS Serverport" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"DNS-Server in der Reihenfolge der " -"Resolv-Datei abfragen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-Netzmaske" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "IPv6 Host- oder Netzwerk-Addresse (CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "IPv6-Suffix (hexadezimal)" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED Konfiguration" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED Name" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" -"DUID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Max. Anzahl von DHCP-Leases" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Max. Größe von EDNS0-Paketen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Max. Anzahl gleichzeitiger Abfragen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    Hinweis: Der Cron-Dienst muss manuell neu gestartet werden wenn die " -"Crontab-Datei vor der Bearbeitung leer war." - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" -"Ein neuer Login ist erforderlich da die Benutzersitzung abgelaufen ist." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "Grenzwert für ARP-Auflösungsversuche" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "ATM (Asynchroner Transfer-Modus)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM Brücken" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM Virtual Channel Identifier (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM Virtual Path Identifier (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"ATM Brücken exponieren in AAL5 gekapselten Ethernetverkehr als virtuelle " -"Linux Netzwerkschnittstellen welche z.B. in Verbindung mit DHCP oder PPP " -"genutzt werden können um sich in das Providernetzwerk einzuwählen." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "ATM Geräteindex" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Access Concentrator" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Access Point" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Aktionen" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Aktive IPv4-Routen" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Aktive IPv6-Routen" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Aktive Verbindungen" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Aktive DHCP-Leases" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Aktive DHCPv6-Leases" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Hinzufügen" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "IPv4-Adresse hinzufügen…" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "IPv6-Adresse hinzufügen…" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "Schlüssel hinzufügen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "Lokalen Domainsuffx an Namen aus der Hosts-Datei anhängen" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Neue Schnittstelle hinzufügen..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Zusätzliche Hosts-Dateien" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "Zusätzliche Nameserver-Datei" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Adresse" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Adresse der lokalen Relay-Brücke" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administration" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "Erweitert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Erweiterte Einstellungen" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "Vollständige Sendeleistung (ACTATP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Alarm" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "Alias-Schnittstelle" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "Alias von \"%s\"" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "Alle Server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" -"IP-Adressen sequenziell vergeben, beginnend mit der kleinsten verfügbaren " -"Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "IPs sequenziell vergeben" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "Erlaube Anmeldung per Passwort" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" -"Erlaube dem Access-Point die Trennung von Clients mit schlechter " -"Signalqualität" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Alle außer gelistete erlauben" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "Veraltete 802.11b-Raten erlauben" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Nur gelistete erlauben" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Erlaube localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "Entfernten Hosts erlauben zu lokale SSH-Tunnel-Ports zu verbinden" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "\"root\" Login mit Passwort aktivieren" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" -"Erlaubt es dem root Benutzer sich mit einem Passwort statt einem " -"Zertifikat einzuloggen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Dies erlaubt DNS-Antworten im 127.0.0.0/8 Bereich der z.B. für RBL Dienste " -"genutzt wird" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "Erlaubte IP-Adressen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "Immer Defaultrouter ankündigen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "Immer aus (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "Immer an (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" -"Immer 40MHz Kanalbandbreite benutzen, auch wenn sich der sekundäre Kanal mit " -"benachbarten Funkzellen überlappt. Die Benutzung dieser Option ist eine " -"Verletzung des IEEE 802.11n-2009 Standards!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "Annex A, L und M (alle)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "Annex B (alle Arten)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "Annex J (alle Arten)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "Annex M (alle Arten)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" -"Kündigt im Netzwerk einen Defaultrouter an, auch wenn kein öffentlicher " -"Adressbereich verfügbar ist." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "Angekündigte Suchdomains" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "Angekündigte DNS Server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "Anonyme Identität" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "automatische Mountpunkte" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "automatische Swap-Aktivierung" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antenne 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antenne 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Antennenkonfiguration" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Beliebige Zone" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "Ungeprüft anwenden" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" -"Anforderung zur Anwendung der Änderungen mit Status %h " -"fehlgeschlagen" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "Architektur" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" -"Legt die Größe der dieser Schnittstelle zugewiesenen Partitionen der " -"öffentlichen IPv6-Präfixe fest." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Schnittstellen zuweisen..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" -"Der Schnittstelle zugewiesene Partitionen des Adressraums werden anhand " -"dieser hexadezimalen ID gewählt." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Assoziierte Clients" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "Assoziierungen" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "Berechtigungsgruppe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Authentifizierung" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "Authentifizierungstyp" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Authoritativ" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Autorisierung benötigt" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Automatisches Neuladen" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "Automatisch" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "automatisches Homenet-Protokoll (HNCP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "Dateisystem vor dem Einhängen automatisch auf Fehler prüfen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "Unkonfigurierte Dateisysteme automatisch einhängen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "Unkonfigurierte SWAP-Partitionen automatisch aktivieren" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "Dateisystem automatisch einhängen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "SWAP automatisch aktivieren" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Verfügbar" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Durchschnitt:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Zurück" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Zurück zur Übersicht" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Zurück zur Konfiguration" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Zurück zur Übersicht" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Zurück zu den Scan-Ergebnissen" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Sichern" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Backup / Firmware Update" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Liste zu sichernder Dateien" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Ungültige Adresse angegeben!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "Frequenztyp" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "Beacon-Intervall" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Nachfolgend wird eine generierte Liste der zu sichernden Dateien angezeigt. " -"Sie enthält alle notwendigen Systemdateien sowie die von opkg als geändert " -"markierten Konfigurationsdateien. Des Weiteren sind die durch " -"benutzerdefinierte Dateiemuster betroffenen Dateien enthalten." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" -"Dynamisch an Schnittstellen binden statt die globale Standardadresse zu " -"benutzen (als Standard für Linux-Systeme empfohlen)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "An Schnittstelle binden" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "Tunnelendpunkt an diese Schnittstelle binden (optional)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Bitrate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Ungültige \"NX-Domain\" Antworten ignorieren" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Bridge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Netzwerkbrücke" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Geräteindex der Brücke" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Während des Bootvorgangs starten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Broadcom 802.11%s W-LAN Adapter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom BCM%04x 802.11 W-LAN Adapter" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Gepuffert" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" -"CA-Zertifikat (wird beim ersten Verbindungsaufbau automatisch gespeichert " -"wenn leer). " - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU-Nutzung (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "Anruf fehlgeschlagen" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Abbrechen" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "Kategorie" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "Achtung: Konfigurationsdateien werden gelöscht" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "Achtung: Systemupgrade wird erzwungen" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Kette" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "Login-Passwort ändern" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Änderungen" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Änderungen angewendet." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "Änderungen wurden verworfen" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Ändert das Administratorpasswort für den Zugriff auf dieses Gerät" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "Ändere Passwort…" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Kanal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" -"Kanal %d ist in der Regulierungszone \"%s\" nicht verfügbar und wurde " -"automatisch auf %d gesetzt." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Prüfen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "Dateisysteme prüfen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" -"Diese Option setzen um existierende Netzwerke auf dem Radio zu löschen." - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Prüfsumme" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "Wähle \"mtdblock\" Datei" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Ordnet dieser Schnittstelle eine Firewallzone zu. Den Wert " -"unspezifiziert wählen um die Schnittstelle von der Zone zu lösen " -"oder das erstellen Feld ausfüllen um eine neue Zone direkt " -"anzulegen und zuzuweisen." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Wählt die Netzwerke die dieser WLAN-Schnittstelle zugeordnet werden. Das " -"erstelle-Feld ausfüllen um ein neues Netzwerk zu erzeugen." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Verschlüsselungsalgorithmus" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "Cisco UDP-Kapselung" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Zum Herunterladen der aktuellen Konfigurationsdateien als gepacktes Archiv " -"\"Sicherung erstellen\" drücken." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" -"\"Speichere mtdblock\" anklicken um die ausgewählte mtdblock-Datei " -"herunterzuladen. (Hinweis: Diese Funktionalität ist nur für Experten " -"gedacht!)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Client" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "Zu sendende Client-ID bei DHCP Anfragen" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "Schließen" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Inaktive Verbindungen nach Ablauf dieser Zeit in Sekunden schließen (0 um " -"die Verbindung immer aufrecht zu erhalten)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Schließe Liste..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Sammle Daten..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Befehl" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "Kommentar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Allgemeine Konfiguration" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" -"Deaktiviert bestimmte EAPOL-Key-Retransmissionen um Key-Reinstallation " -"(KRACK) Angriffe auf Client-Seite zu erschweren. Diese Abhilfemaßnahme kann " -"Kompatibilitätsprobleme verursachen und die Zuverlässigkeit von " -"Schlüsselerneuerungen in ausgelasteten Umgebungen verringern." - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Konfiguration" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "Konfiguration fehlgeschlagen" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "Konfigurationsdateien werden beibehalten" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "Die Konfiguration wurde angewendet." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "Die Konfiguration wurde zurückgerollt!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Bestätigung" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Verbinden" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Verbunden" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Verbindungslimit" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "Verbindungsversuch fehlgeschlagen" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Verbindungen" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" -"Das Gerät konnte nach Anwendung der Konfigurationsänderungen nicht mehr " -"erreicht werden. Unter Umständen müssen Sie sich neu verbinden wenn " -"netzwerkbezogene Einstellungen wie die IP-Adresse oder W-LAN Passwörter " -"geändert wurden." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Land" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Ländercode" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Die folgende Schnittstelle abdecken" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Die folgende Schnittstellen abdecken" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Firewallzone anlegen / zuweisen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Erzeuge Schnittstelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Erzeuge Netzwerkbrücke über mehrere Schnittstellen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Kritisch" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Cron Protokoll-Level" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Benutzerdefinierte Schnittstelle" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "Delegiertes IPv6-Präfix" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" -"Eigene Dateien wie Zertifikate oder Scripte können unter Umständen auf dem " -"System verbleiben. Um dies zu vermeiden, sollte zuerst auf " -"Werkseinstellungen zurückgesetzt werden." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "Benutzerdefiniertes Blinkintervall (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "Passt das Verhalten der Geräte-LEDs an - wenn dies möglich ist." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP-Server" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP und DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP Client" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP-Optionen" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "DHCPv6 Client" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "DHCPv6-Modus" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "DHCPv6-Dienst" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "DNS-Weiterleitungen" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "DNSSEC Signaturstatus prüfen" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "DPD Inaktivitätstimeout" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "DS-Lite AFTR-Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "DSL Leitungsmodus" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "Datenrate" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Debug" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Standard %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Default Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "Der Standardwert ist zustandslos und zustandsorientiert" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Ausgangszustand" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Definiert einen Namen für dieses Netzwerk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Definiert zusätzliche DHCP-Optionen, z.B. \"6,192.168.2.1,192.168.2.2\" um einen anderen DNS-Server an Clients zu verteilen." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Löschen" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "Schlüssel löschen" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Dieses Netzwerk löschen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Beschreibung" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Ziel" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Gerät" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Gerätekonfiguration" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "Das Gerät startet neu..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "Das Gerät ist nicht erreichbar" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "Gerät nicht erreichbar! Wartet immer noch..." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnosen" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "Einwahlnummer" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Verzeichnis" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Deaktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"DHCP-Server auf " -"dieser Schnittstelle deaktivieren" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "Verschlüsselung deaktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "Inaktivitäts-Proben deaktivieren" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "Dieses Netzwerk deaktivieren" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Deaktiviert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "Deaktiviert (Standard)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "Trennung bei schlechtem Antwortverhalten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Eingehende RFC1918-Antworten verwerfen" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "Trennen" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "Verbindungstrennung fehlgeschlagen" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "Schließen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Distanzoptimierung" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Distanz zum am weitesten entfernten Funkpartner in Metern." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diversität" - -# Nur für NAT-Firewalls? -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq ist ein kombinierter DHCP-Server und DNS-Forwarder für NAT " -"Router" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" -"Negative Antworten nicht zwischenspeichern, z.B. bei nicht existierenden " -"Domains" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Keine Anfragen weiterleiten welche nicht durch öffentliche Server " -"beantwortet werden können" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "Keine Rückwärtsauflösungen für lokale Netzwerke weiterleiten" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" -"Soll der untenstehende SSH-Schlüssel wirklich vom System entfernt werden?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Anfragen nur mit Domain" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Domain-Whitelist" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "Nicht fragmentieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "Anfragen ohne Domainnamen nicht weiterleiten" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "runter" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Backup herunterladen" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "Mtdblock-Datei herunterladen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "Downstream SNR-Offset" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Dropbear Instanz" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Der SSH-Server ermöglicht Shell-Zugriff über das Netzwerk und bietet einen " -"integrierten SCP-Dienst." - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "Dynamisches DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Dynamischer Tunnel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"DHCP Adressen dynamisch erzeugen. Wenn dies deaktiviert ist, werden nur " -"Clients mit konfigurierten statischen Leases bedient" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "EA-Bitlänge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP-Methode" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Bearbeiten" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" -"Um die Syntaxfehler zu beheben, bitte die obige unformatierte Konfiguration " -"anpassen und \"Speichern\" klicken um die Seite neu zu laden." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Diese Schnittstelle bearbeiten" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Dieses Netzwerk bearbeiten" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Notfall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" -"IGMP-Erkennung " -"aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "STP aktivieren" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Dynamisches HE.net IP-Adress-Update aktivieren" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "IPv6 anfordern" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Aushandeln von IPv6-Adressen auf der PPP-Verbindung aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Aktiviere Jumbo Frame Durchleitung" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Aktiviere NTP-Client" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "Single-DES aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "TFTP-Server aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "VLAN-Funktionalität aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "WPS-via-Knopfdruck aktivieren, erfordert WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "Key Reinstallation (KRACK) Gegenmaßnahmen aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Learning und Aging aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "Port-Mirroring für eingehende Pakete aktivieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "Port-Mirroring für ausgehende Pakete aktivieren" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "Das DF-Bit (Nicht fragmentieren) auf gekapselten Paketen setzen." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Diesen Mountpunkt aktivieren" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "Dieses Netzwerk aktivieren" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Diesen Auslagerungsspeicher aktivieren" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Aktivieren/Deaktivieren" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Aktiviert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "Aktiviert die automatische IGMP-Erkennung auf dieser Netzwerkbrücke" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" -"Aktiviert schnelles Roaming zwischen Access-Points des selben " -"Mobilitätsbereiches" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Aktiviert das Spanning Tree Protokoll auf dieser Netzwerkbrücke" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Kapselung" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Verschlüsselung" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "Entfernter Server" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "Entfernter Port" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "Eigenen Wert angeben" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "Eigene Werte angeben" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Lösche..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Fehler" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "Fehlersekunden (ES)" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Netzwerkschnittstelle" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Netzwerk Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "Schnittstellen ausschließen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Hosts vervollständigen" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "Erwarte %s" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Verfällt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"Gültigkeitsdauer von vergebenen Adressen. Das Minimum sind 2 Minuten " -"(2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "Extern" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "Externe R0-Key-Holder-List" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "Externe R1-Key-Holder-List" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Externer Protokollserver IP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Externer Protokollserver Port" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "Externes Protokollserver Protokoll" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "Zusätzliche SSH-Kommando-Optionen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "FT-über-DS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "FT-drahtlos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "FT Protokoll" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" -"Konnte nicht innerhalb von %d Sekunden bestätigen, warte auf Zurückrollen " -"der Änderungen..." - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Datei" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Dateiname des Boot-Images welches den Clients mitgeteilt wird." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Dateisystem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Private Anfragen filtern" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Windowsanfragen filtern" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "Finalisierung fehlgeschlagen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" -"Findet alle angeschlossenen Dateisysteme und SWAP-Partitionen und generiert " -"die Konfiguration mit passenden Standardwerten für alle gefundenen Geräte " -"neu." - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Suchen und Verbinden von Netzwerken" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Fertigstellen" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "Firewall-Markierung" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Firewall Einstellungen" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Firewall-Status" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "Firmware-Datei" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Firmware Version" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Fester Port für ausgehende DNS-Anfragen" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Firmware aktualisieren" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Firmware aktualisieren..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "Aktivität des Flashspeichers (%s)" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Neues Firmware Image schreiben" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Flash-Operationen" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Firmware wird installiert..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Start erzwingen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "40MHz-Modus forcieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "CCMP (AES) erzwingen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" -"Aktiviere DHCP-Server für dieses Netzwerk, selbst wenn ein anderer aktiver " -"Server erkannt wurde." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Erzwinge TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Erzwinge TKIP und CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "Erzwinge Verbindung" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "Erzwinge Upgrade" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "Benutzung von NAT-T erzwingen" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "Abweichendes Formular-Token" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "DHCP Traffic weiterleiten" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "Fehlerkorrektursekunden (FECS)" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Broadcasts weiterleiten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "Mesh-Nachbar-Traffic weiterleiten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Weiterleitungstyp" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Fragmentierungsschwelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Frame Bursting" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Frei" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" -"Weitere Informationen zu WireGuard-Schnittstellen und Peers unter wireguard.com." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Nur GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Gateway" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "Gateway-Adresse ist ungültig" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Gateway-Ports" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Allgemeine Einstellungen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Allgemeine Einstellungen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "Konfiguration generieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "PMK lokal generieren" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Sicherung erstellen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Generischer 802.11%s W-LAN Adapter" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" -"Die angegebenen Passwörter stimmen nicht überein, das Systempasswort wurde " -"nicht geändert!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "Globale Einstellungen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "Globale Netzwerkeinstellungen" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Zur Passwortkonfiguration..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Gehe zur entsprechenden Konfigurationsseite" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "Gruppenpasswort" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "Gast" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "HE.net Passwort" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "HE.net Benutzername" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "HT-Modus (802.11n)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Auflegen" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "Anzahl Header-Error-Code-Fehler (HEC)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "Herzschlag / Durchschnittliche Systemlast (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"An dieser Stelle können Grundeinstellungen des Systems wie Hostname oder " -"Zeitzone vorgenommen werden." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "ESSID verstecken" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "Leere Chains ausblenden" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Host-Einträge" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Host Verfallsdatum" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "Host-IP oder Netzwerk" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "\"Host-Uniq\"-Bezeichner" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Hostname" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Zu sendender Hostname bei DHCP Anfragen" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Rechnernamen" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "IKE-DH-Gruppe" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "IP-Adressen" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "IP-Protokoll" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP-Adresse" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "IP-Adresse ist ungültig" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "IP-Adresse fehlt" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4 Firewall" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4 Adresse" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "IPv4 Zuweisungslänge" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "IPv4 Broadcast" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "IPv4 Gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "IPv4 Netzmaske" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "IPv4-Netzwerk in Addresse/Netzmaske-Notation" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "IPv4 Bereich" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Länge des IPv4-Präfix" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-Adresse" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6 Firewall" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "IPv6 Nachbarn" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "IPv6 Einstellungen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "IPv6 ULA-Präfix" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "IPv6 Adresse" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "IPv6 Zuweisungshinweis" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "IPv6 Zuweisungslänge" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "IPv6 Gateway" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "IPv6-Netzwerk in Addresse/Netzmaske-Notation" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "IPv6-Präfix" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Länge des IPv6-Präfix" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "Geroutetes IPv6-Präfix" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "IPv6 Endung" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-Adresse" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "IPv6 Präfix-Delegation (PD)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-in-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-über-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-über-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identität" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "Aktiviert die Benutzung von 1DES, wenn ausgewählt" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "Deaktiviert die Verschlüsselung, wenn ausgewählt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Wenn angegeben, wird das Gerät anhand seiner UUID statt fester Gerätedatei " -"gemounted" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Wenn angegeben, wird das Gerät nach anhhand des Partitionslabels statt " -"fester Gerätedatei gemounted" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Wenn deaktiviert, wird keine Default-Route gesetzt" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "Falls deaktiviert werden die zugewiesenen DNS-Server ignoriert" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Falls der Arbeitsspeicher des Routers nicht ausreicht, kann dieser nicht " -"benutzte Daten zeitweise auf einem SWAP-Laufwerk auslagern um so die " -"effektive Größe des Arbeitsspeichers zu erhöhen. Die Auslagerung der Daten " -"ist natürlich bedeutend langsamer als direkte Arbeitsspeicherzugriffe." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ignoriere /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Schnittstelle ignorieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Resolv-Datei ignorieren" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Image" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Ein" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" -"Um unauthorisierte Zugriffe auf das System zu verhindern, wurde dieser " -"Request blockiert. Auf \"Weiter\" klicken um zur vorherigen Seite " -"zurückzukehren." - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Timeout bei Inaktivität" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Eingehend:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Info" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "Initialisierung fehlgeschlagen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Startscript" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Startscripte" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" -"Bitte \"iputils-traceroute6\" installieren um IPv6-Routenverfolgung nutzen " -"zu können" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Installiere Paket %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Installiere Protokoll-Erweiterungen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Schnittstelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" -"Das Gerät der Schnittstelle %q wurde automatisch von %q auf %q geändert." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Schnittstellenkonfiguration" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Schnittstellenübersicht" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Schnittstelle verbindet neu..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "Schnittstellenname" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Schnittstelle existiert nicht oder ist nicht verbunden." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Schnittstellen" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "Intern" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Interner Serverfehler" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Ungültige Eingabe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "Ungültige VLAN ID angegeben! Nur IDs zwischen %d und %d sind erlaubt." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "Ungültige VLAN ID angegeben! Die ID ist muß eindeutig sein!" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "" -"Ungültiger Benutzername oder ungültiges Passwort! Bitte erneut versuchen. " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "Clients isolieren" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Das verwendete Image scheint zu groß für den internen Flash-Speicher zu " -"sein. Überprüfen Sie die Imagedatei!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "JavaScript benötigt!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Netzwerk beitreten" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Netzwerk beitreten: Suche nach Netzwerken" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "Trete Netzwerk %q bei" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Konfiguration behalten" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Kernelprotokoll" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Kernel Version" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Schlüssel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Schlüssel Nr. %d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Töten" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "L2TP Server" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "LCP Echo Fehler Schwellenwert" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "LCP Echo Intervall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Label" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Sprache" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Sprache und Aussehen" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "Latenz" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "Zweigstelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "Laufzeit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Leasedatei" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Verbleibende Gültigkeit" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Zur automatischen Erkennung leer lassen" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Leer lassen um die aktuelle WAN-Adresse zu verwenden" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Legende:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Limit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" -"DNS-Dienste auf direkte lokale Subnetze beschränken um Missbrauch durch " -"Dritte zu verhindern." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "Dienste auf die angegeben Schnittstellen plus Loopback beschränken." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "Dämpfung (LATN)" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "Verbindungsmodus" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "Verbindungsstatus" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "Verbindungsdauer" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Verbindung hergestellt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Liste von DNS-Servern an welche " -"Requests weitergeleitet werden" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" -"Liste von R0KH-Bezeichnern innerhalb der selben Mobilitätsdomäne.
    Format: MAC-Adresse,NAS-Identifier,128 Bit Schlüssel in Hex-Notation.
    Diese Liste wird verwendet um R0KH-Bezeichner (NAS Identifier) einer Ziel-" -"MAC-Adresse zuzuordnen damit ein PMK-R1-Schlüssel von der R0KH angefordert " -"werden kann, mit der sich der Client wärend der anfänglichen " -"Mobilitätsdomänen-Assoziation verbunden hat." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" -"Liste von R1KH-Bezeichnern innerhalb der selben Mobilitätsdomäne.
    Format: MAC-Adresse,R1KH-ID im MAC-Adress-Format,128 Bit Schlüssel in Hex-" -"Notation.
    Diese Liste wird benutzt um einer R1KH-ID eine Ziel-MAC-" -"Adresse zuzuordnen wenn ein PMK-R1-Schlüssel von einer R0KH-Station " -"versendet wird. Die Liste dient auch zur Authorisierung von R1KH-IDs, welche " -"innerhalb der Mobilitätsdomain PMK-R1-Schlüssel anfordern dürfen." - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "Liste der SSH Schlüssel zur Authentifikation" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Liste von Domains für welche RFC1918-Antworten erlaubt sind" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "Liste von Servern die falsche \"NX Domain\" Antworten liefern" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "Aktive Schnittstellen" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "Aktive Ports" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Nur auf die gegebene Schnittstelle reagieren, nutze alle wenn nicht " -"spezifiziert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Serverport für eingehende DNS Abfragen" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Last" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Durchschnittslast" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Lade" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "Lade SSH-Schlüssel…" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "Lokale IP-Adresse ist ungültig" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "Lokale IP-Adresse" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Lokale IPv4 Adresse" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Lokale IPv6 Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "Nur lokale Dienste" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Lokales Startskript" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Lokale Zeit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Lokale Domain" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Spezifiziert den lokalen Domainnamen. Anfragen für Hostnamen welche auf " -"diese Domain zutreffen werden nie weitergeleitet und ausschließlich aus DHCP-" -"Namen oder Hosts-Dateien aufgelöst" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Lokaler Domain-Suffix welcher an DHCP Namen und Host-Datei Einträge " -"angehangen wird" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Lokaler Server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Hostnamen je nach anfragendem Subnetz auflösen wenn mehrere IPs verfügbar " -"sind" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Lokalisiere Anfragen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "Festgelegt auf Kanal %s, verwendet durch: %s" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Protokolllevel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Schreibe Abfragelog" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Protokollierung" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Anmelden" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Abmelden" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "Signalverlustsekunden (LOSS)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "Kleinste vergebene Adresse (Netzwerkadresse + x)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "MAC-Adressfilter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-Filter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "MAC-Adressliste" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "MAP-Regel ist ungültig" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "Das Root-Dateisystem muss mit folgenden Kommandsos vorbereitet werden:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "Manuell" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "Maximal erreichbare Datenrate (ATTNDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "Maximal erlaubter Inaktivitätszeitraum" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Maximal zulässige Anzahl von aktiven DHCP-Leases" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Maximal zulässige Anzahl an gleichzeitigen DNS-Anfragen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Maximal zulässige Größe von EDNS.0 UDP Paketen" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Maximale Zeit die gewartet wird bis das Modem bereit ist (in Sekunden)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" -"Die maximale Länge des Names ist auf 15 Zeichen beschränkt, abzüglich des " -"automatischen Protokoll- oder Bridge-Prefixes wie \"br-\" oder \"pppoe-\" " -"etc." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Maximal zulässige Anzahl von vergeben DHCP-Adressen" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Hauptspeicher" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Speichernutzung (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "Mesh-ID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metrik" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "Spiegel-Monitor-Port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "Spiegel-Quell-Port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Erweiterung für Protokoll %q fehlt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "Mobilitätsbereich" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Modus" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "Modell" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "Modem-Grundeinstellung" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Modemgerät" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "Modem-Informationsabfrage fehlgeschlagen" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Wartezeit für Modeminitialisierung" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Mount-Eintrag" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Einhängepunkt" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Einhängepunkte" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Mountpunkte - Mount-Eintrag" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Mountpunkte - Auslagerungsdatei" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Einhängepunkte bestimmen, an welcher Stelle des Dateisystems bestimmte " -"Laufwerke und Speicher zur Verwendung eingebunden werden." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "Nicht explizit konfigurierte Dateisysteme einhängen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Mount-Optionen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Mountpunkt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "Unkonfigurierte SWAP-Partitionen aktivieren" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Eingehängte Dateisysteme" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Nach unten schieben" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Nach oben schieben" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "NAT-T Modus" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "NAT64-Präfix" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "NTP Server Kandidaten" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Name" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Name der neuen Schnittstelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Name des neuen Netzwerkes" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigation" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Netzmaske" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Netzwerk" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Netzwerk-Werkzeuge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Netzwerk-Boot-Image" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "Aktivität einer Netzwerkschnittstelle (%s)" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "Netzwerkgerät ist nicht vorhanden" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Netzwerk ohne Schnittstellen." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Weiter »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "Nein" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Kein DHCP Server auf dieser Schnittstelle eingerichtet" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "Kein NAT-T" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Keine Dateien gefunden" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Keine Informationen verfügbar" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "Kein passendes delegiertes Prefix" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Kein Negativ-Cache" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Keine Netzwerke auf diesem Gerät konfiguriert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Netzwerkname nicht angegeben" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Kein Passwort gesetzt!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "Bisher keine SSH-Schlüssel hinterlegt." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Keine Regeln in dieser Kette" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "Noch keine Scan-Ergebnisse verfügbar..." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Keine Zone zugewiesen" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Rauschen" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "Signal-Rausch-Abstand (SNR)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Noise:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "Nicht-präemptive CRC-Fehler (CRC_P)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "An Schnittstellen binden" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "keine" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normal" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Nicht Gefunden" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Nicht assoziiert" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Nicht verbunden" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "Hinweis: Länge des Namens beachten" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Notiz" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "DNS-Auflösung" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" -"Anzahl der zwischengespeicherten DNS-Einträge. Maximum sind 10000 Einträge, " -"\"0\" deaktiviert die Zwischenspeicherung." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "Für Kompression benutze parallele Prozessanzahl" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "Chiffriertes Gruppenpasswort" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "Chiffriertes Passwort" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "IPv6-Adresse beziehen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Verzögerung für Ausschalt-Zustand" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"An dieser Stelle können die einzelnen Schnittstellen des Netzwerkes " -"konfiguriert werden. Es können mehrere Schnittstellen zu einer Brücke " -"zusammengefasst werden, indem diese durch Leerzeichen getrennt aufgezählt " -"werden und ein entsprechender Haken im Feld Netzwerkbrücke gesetzt wird. Es " -"können VLANs in der Notation SCHNITTSTELLE.VLANNR (z.B.: eth0.1) verwendet " -"werden." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Verzögerung für Anschalt-Zustand" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Es muss entweder ein Hostname oder eine MAC-Adresse angegeben werden!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Ein oder mehrere Felder enthalten ungültige Werte!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "Ein oder mehrere ungültige/benötigte Werte auf Registerkarte" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Ein oder mehr benötigte Felder sind nicht ausgefüllt!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Liste öffnen..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "Betriebsfrequenz" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Option geändert" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Option entfernt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "Optional" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" -"Optional. 32-Bit-Marke für ausgehende, verschlüsselte Pakete. Wert in " -"hexadezimal mit führendem 0x angeben." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" -"Optional. Mögliche Werte: 'eui64', 'random' oder Suffixes wie '::1' oder " -"'::1:2'. Wenn ein IPv6-Präfix (wie z.B. 'a:b:c:d::') von einem delegierendem " -"Server empfangen wird, kombiniert das System das Suffix mit dem Präfix um " -"eine IPv6-Adresse (z.B. 'a:b:c:d::1') für die Schnittstelle zu formen." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" -"Optional. Base64-kodierter, vorhab ausgetauschter Schlüssel um eine weitere " -"Ebene an symmetrischer Verschlüsselung für erhöhte Sicherheit hinzuzufügen." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "Optional. Routen für erlaubte IP-Adressen erzeugen." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "Optionale Beschreibung des entfernten VPN-Partners." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" -"Optional. Hostname oder Adresse des Verbindungspartners. Namen werden vor " -"dem Verbindungsaufbau aufgelöst." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "Optional. Maximale MTU für Tunnelschnittstellen." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "Optional. Port-Nummer des Verbindungspartners." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" -"Optional. Sekunden zwischen Keep-Alive-Nachrichten. Standardwert is 0 " -"(deaktiviert). Der empfohlene Wert für Geräte hinter einem NAT sind 25 " -"Sekunden." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" -"Optional. Benutzte UDP-Port-Nummer für ausgehende und eingehende Pakete." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Optionen" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Andere:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Aus" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Ausgehend:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "Ausgehende Schnittstelle" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "MAC-Adresse überschreiben" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "MTU-Wert überschreiben" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "TOS-Wert überschreiben" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "TTL-Wert überschreiben" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "Standard Schnittstellennamen überschreiben" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Gateway-Adresse in DHCP-Antworten überschreiben" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Überschreibt die Netzmaske welche an Clients geschickt wird. Normalerweise " -"wird diese vom bedienten Subnetz abgeleitet." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "Überschreibt die benutzte Tabelle für interne Routen" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Übersicht" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Besitzer" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "PAP/CHAP Passwort" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "PAP/CHAP Benutzername" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "PIN-Code abgelehnt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "PPPoA Kapselung" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "PSID-Offset" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "PSID-Bitlänge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "PTM/EFM (Paket-Transfer-Modus)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Benötige das libiwinfo Paket!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Pakete" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Teil von Zone %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Passwort" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Passwortanmeldung" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Passwort des privaten Schlüssels" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "Password des inneren, privaten Schlüssels" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "Passwort Bestätigung" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "Schlüssel einfügen oder Schlüsseldatei hereinziehen…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Pfad zum CA-Zertifikat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Pfad zu Client-Zertifikat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Pfad zum Privaten Schlüssel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "Pfad zum inneren CA-Zertifikat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "Pfad zum inneren Client-Zertifikat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "Pfad zum inneren, privaten Schlüssel" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Spitze:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "Entfernte IP-Adresse" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "Entfernte IP-Adresse fehlt" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "Verbindungspartner" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Neustart durchführen" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Reset durchführen" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "Persistentes Keep-Alive" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Phy-Rate:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Physische Einstellungen" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping-Anfrage" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pkte." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Bitte Benutzernamen und Passwort eingeben." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Standardregel" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Port-Status:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "Energiesparmodus" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "Präemptive CRC-Fehler (CRCP_P)" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "LTE bevorzugen" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "UMTS bevorzugen" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "Delegiertes Präfix" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "Gemeinsamer Schlüssel" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"Deklariere den Client als tot nach der angegebenen Anzahl von LCP Echo " -"Fehlschlägen, nutze den Wert 0 um Fehler zu ignorieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "Verhindert das Binden an diese Schnittstellen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Unterbindet Client-Client-Verkehr" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "Privater Schlüssel" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Fortfahren" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Prozesse" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "Profil" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protokoll" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Protokoll für die neue Schnittstelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Protokollunterstützung ist nicht installiert" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "NTP-Server anbieten" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Neues Netzwerk anbieten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "Öffentlicher Schlüssel" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" -"Öffentliche Schlüssel erlauben eine passwortlose SSH-Anmeldung mit höherer " -"Sicherheit im Vergleich zur Benutzung einfacher Passwörter. Um einen neuen " -"Schlüssel auf dem Gerät zu hinterlegen, kann entweder eine OpenSSH-" -"kompatible öffentliche Schlüsselzeile in das Eingabefeld kopiert, oder eine " -"eine Schlüsseldatei mit der Endung .pub in das Eingabefeld " -"gezogen werden." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" -"Zu diesem Gerät geroutetes öffentliches Präfix zur Weiterverteilung an " -"Clients." - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Qualität" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "Alle verfügbaren übergeordneten DNS-Server abfragen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "R0-Schlüsselgültigkeit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "R1-Schlüsselinhaber" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "RFC3947 \"NAT-T\"-Modus" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTS-Schwelle" - -# Ein / Aus, eingehend / ausgehend? -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "RX-Rate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Radius-Accounting-Port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Radius-Accounting-Secret" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Radius-Accounting-Server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Radius-Authentication-Port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Radius-Authentication-Secret" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Radius-Authentication-Server" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" -"Hexadezimal-kodierte Zeichensequenz. Nur angeben wenn der Internetanbieter " -"einen bestimmten Wert erwartet." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "Lese Informationen aus /etc/ethers um den DHCP-Server zu konfigurieren" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" -"Diese Schnittstelle wirklich löschen? Das Löschen kann nicht rückgängig " -"gemacht werden! Der Kontakt zum Gerät könnte verloren gehen wenn die " -"Verbindung über diese Schnittstelle erfolgt." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Dieses Drahtlosnetzwerk wirklich löschen? Der Schritt kann nicht rückgängig " -"gemacht werden!\n" -"Der Zugriff auf das Gerät könnte verlorengehen wenn Sie über dieses Netzwerk " -"verbunden sind." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Sollen wirklich alle Änderungen verworfen werden?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Protokoll wirklich wechseln?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Echtzeitverbindungen" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Echtzeit-Diagramme" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Echtzeitsystemlast" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Echtzeitverkehr" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Echtzeit-WLAN-Signal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "Reassoziierungsfrist" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "DNS-Rebind-Schutz" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Neu Starten" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Das System wird neu gestartet..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Startet das Betriebssystem des Routers neu." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Empfangen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Empfangsantenne" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "Empfohlen. IP-Adresse der WireGuard-Schnittstelle." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Diese Schnittstelle neu verbinden" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Verweise" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Relay" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Relay-Brücke" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Zwischen folgenden Netzwerken weiterleiten" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Relay-Brücke" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Entfernte IPv4-Adresse" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "Entfernte IPv4-Adresse oder Hostname" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Entfernen" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Scan wiederholen" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Eintrag ersetzen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Drahtloskonfiguration ersetzen" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "IPv6-Adresse anfordern" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "IPv6-Präfix dieser Länge anfordern" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "Benötigt" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" -"Wird von bestimmten Internet-Providern benötigt, z.B. Charter mit DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "Benötigt. Base64-kodierter privater Schlüssel für diese Schnittstelle" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" -"Benötigt. Base64-kodierter öffentlicher Schlüssel für diese Schnittstelle" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" -"Benötigt. IP-Adressen und Präfixe die der Verbindungspartner innerhalb des " -"Tunnels nutzen darf. Entspricht üblicherweise der Tunnel-IP-Adresse des " -"Verbindungspartners und den Netzwerken, die dieser durch den Tunnel routet." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" -"Benötigt die \"volle\" Variante des wpad oder hostapd Paketes und " -"Unterstützung vom WLAN-Treiber." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" -"Setzt DNSSEC-Unterstützung im DNS-Zielserver vorraus; überprüft ob " -"unsignierte Antworten wirklich von unsignierten Domains kommen." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Zurücksetzen" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Zähler zurücksetzen" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Auslieferungszustand wiederherstellen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Resolv- und Hosts-Dateien" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Resolv-Datei" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Neustarten" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Firewall neu starten" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "W-LAN-Gerät neu starten" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Wiederherstellen" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Sicherung wiederherstellen" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Passwort zeigen/verstecken" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Verwerfen" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "Änderungen verwerfen" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "Anforderung zum Verwerfen mit Status %h fehlgeschlagen" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "Verwerfe Konfigurationsänderungen..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Root" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Wurzelverzeichnis für über TFTP ausgelieferte Dateien " - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "Wurzelverzeichnis erzeugen" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "Erlaubte IP-Addressen routen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "Routen-Typ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "Router-Advertisement-Dienst" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Routerpasswort" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Routen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Netzwerkrouten geben an, über welche Schnittstellen bestimmte Rechner oder " -"Netzwerke erreicht werden können" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "Regel" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Vor dem Einhängen Dateisystemprüfung starten " - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Dateisystemprüfung durchführen" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "SSH-Zugriff" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "SSH-Server-Adresse" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "SSH-Server-Port" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "SSH Benutzername" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH-Schlüssel" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Speichern" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Speichern & Anwenden" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "Speichere mtdblock" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "Inhalte von mtdblock-Partitionen speichern" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "Speichere Schlüssel…" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Scan" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "Scan-Anforderung fehlgeschlagen" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Geplante Aufgaben" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Sektion hinzugefügt" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Sektion entfernt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Siehe \"mount\" Handbuch für Details" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" -"\"Upgrade erzwingen\" auswählen um die Abbilddatei auch dann zu schreiben, " -"wenn die Formatüberprüfung fehlschlägt. Diese Option nur benutzen wenn das " -"Abbild korrekt und für dieses Gerät bestimmt ist!" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"Sende LCP Echo Anforderungen im angegebenem Interval in Sekunden, nur " -"effektiv in Verbindung mit einem Fehler-Schwellwert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Clients isolieren" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Servereinstellungen" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Service-Name" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Service-Typ" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Dienste" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "Sitzung abgelaufen" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "VPN als Defaultroute benutzen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" -"Schnittstelleneigenschaften werden unabhängig vom Link gesetzt (ist die " -"Option ausgewählt, so werden die Hotplug-Skripte bei Änderung nicht " -"aufgerufen)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "Zeitsynchronisierung einrichten" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "Setzen der PLMN fehlgeschlagen" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "Setzen des Betriebsmodus fehlgeschlagen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "DHCP Server einrichten" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "schwerwiegende Fehlersekunden (SES)" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "kurzes Guardintervall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "Kurze Präambel" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Zeige aktuelle Liste der gesicherten Dateien" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "Leere Chains anzeigen" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Diese Schnittstelle herunterfahren" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Signal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "Signaldämpfung (SATN)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Signal:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Größe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "Größe des DNS-Caches" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "Größe der ZRAM-Gerätedatei in Megabytes." - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Überspringen" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Zum Inhalt springen" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Zur Navigation springen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Zeitslot" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "Software-VLAN" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Einige Felder sind ungültig, kann das Formular nicht speichern!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Entschuldigung, das anfgeforderte Objekt wurde nicht gefunden." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" -"Entschuldigung, auf dem Server ist ein unerwarteter Fehler aufgetreten." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"Aufgrund des fehlenden sysupgrade-Supports muss die neue Firmware manuell " -"geflasht werden. Weitere Informationen sowie gerätespezifische " -"Installationsanleitungen entnehmen Sie bitte dem Wiki." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Quelle" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Nennt das Verzeichnis, an welches das Gerät angebunden ist" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Gibt den Server-Port dieser Dropbear-Instanz an" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Maximale Anzahl fehlgeschlagener ARP-Anfragen bis ein Host als nicht " -"verfügbar gilt" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" -"Spezifiziert die maximale Anzahl an Sekunde nach denen Hoss als tot erachtet " -"werden" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "Setzt einen spezifischen TOS (Type of Service) Wert" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" -"Setzt eine spezifische TTL (Time to Live) für gekapselte Pakete, anstatt der " -"standardmäßigen 64." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" -"Setzt eine spezifische MTU (Maximum Transmission Unit) abweichend von den " -"standardmäßigen 1280 Bytes." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Geben Sie hier den geheimen Netzwerkschlüssel an" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Start" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Startpriorität" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "Starte Anwendung der Konfigurationsänderungen..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "Starte WLAN Scan..." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Systemstart" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Statische IPv4 Routen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Statische IPv6 Routen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Statische Einträge" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Statische Routen" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Statische Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Statische Leases werden genutzt um feste IP-Adressen und Hostnames zu DHCP-" -"Clients zuzuordnen. Sie werden auch für nicht-dynamische Schnittstellen-" -"Konfigurationen benötigt auf denen lediglich Hosts mit zugehörigem " -"statischem Lease-Eintrag bedient werden." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "Client-Inaktivitäts-Limit" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Status" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Stoppen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Strikte Reihenfolge" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Absenden" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "Logeinträge unterdrücken" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" -"Logeinträge für erfolgreiche Operationen dieser Protokolle unterdrücken" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "Auslagerungsspeicher" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Auslagerungsdatei" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Switch %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Switch %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" -"Der Switch %q hat eine unbekannte Struktur, die VLAN Settings könnten " -"unpassend sein." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "Switch-Port-Maske" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "Switch-VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Wechsle Protokoll" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "Auf CIDR-Listen-Notation wechseln" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "Aktivität eines Switchports (%s)" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Mit Browser synchronisieren" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Synchronisiere..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "System" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Systemprotokoll" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Systemeigenschaften" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Größe des Systemprotokoll-Puffers" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "TFTP Einstellungen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "TFTP Wurzelverzeichnis" - -# same as RX -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "TX-Rate" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tabelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Ziel" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "Zielnetzwerk" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Beenden" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"Die Gerätekonfiguration deckt physische Einstellungen der WLAN-" -"Hardware wie Kanal, Sendestärke oder Antennenauswahl ab. Diese Einstellungen " -"werden von allen Netzwerken auf dem Gerät geteilt. Netzwerk-spezifische " -"Einstellungen wie Verschlüsselung oder Betriebsmodus sind in der " -"Schnittstellenkonfiguration gruppiert." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Das libiwinfo-lua Paket ist nicht installiert. Dieses Paket muss " -"für eine funktionierende WLAN-Konfiguration vorhanden sein!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" -"Die Updateprozedur für HE.net Tunnel-IP-Adrerssen hat sich geändert, statt " -"der numerischen User-ID muss nun der normale Benutzername angegeben werden." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" -"Die IPv4-Adresse oder der volle Domain Name des entfernten Tunnel-Endpunktes." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"Vom Provider zugewiesenes IPv6-Präfix, endet normalerweise mit ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Erlaubte Buchstaben sind: A-Z, a-z, 0-9 and _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "Das Backup-Archiv scheint keine valide GZip-Datei zu sein." - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" -"Die Konfigurationsdatei konnte aufgrund der folgenden Fehler nicht geladen " -"werden:" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" -"Das Gerät konnte nach dem Anwenden der ausstehenden Änderungen innerhalb von " -"%d Sekunden nicht mehr erreicht werden, daher wurde die Änderungen aus " -"Sicherheitsgründen zurückgerollt. Wenn Sie der Meinung sind, dass die " -"Änderungen trotzdem korrekt sind, wenden sie die Änderungen ungeprüft an. " -"Alternativ können Sie diese Meldung schließen und die Konfiguration weiter " -"bearbeiten bevor Sie das Anwenden neu versuchen oder alle austehenden " -"Änderungen verwerfen um den aktuell funktionierenden Konfigurationsstand " -"beizubehalten." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "Die Gerätedatei des Speichers oder der Partition (z.B.: /dev/sda)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "Das Dateisystem mit dem der Speicher formatiert ist (z.B.: ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"Das Firmware-Image wurde hochgeladen. Nachfolgend sind die Prüfsumme und " -"Dateigröße gelistet. Vergleichen Sie diese mit der Originaldatei um die " -"Integrität sicherzustellen.
    Klicken Sie \"Fortfahren\" um die Flash-" -"Prozedur zu starten." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Die folgenden Änderungen wurden verworfen" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Die folgenden Regeln sind zur Zeit auf dem System aktiv." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "Der angegebene öffentliche SSH-Schlüssel wurde bereits hinzugefügt." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" -"Der angegebene öffentliche SSH Schlüssel ist ungültig, bitte OpenSSH-" -"kompatible öffentliche RSA oder ECDSA-Schlüssel verwenden." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "Der angebene Netzwerk-Name ist nicht eindeutig" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"Die Hardware ist nicht Multi-SSID fähig und die existierende Konfiguration " -"wird beim Fortfahren ersetzt." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"Länge des IPv4-Präfix in Bits, die übrigen Bits werden in der IPv6-Adresse " -"verwendet." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "Länge des IPv6-Präfix in Bits" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "Die lokale IPv4-Adresse über die der Tunnel aufgebaut wird (optional)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"Die Netzwerkschnittstellen dieses Geräts können zu verschienden VLANs zusammengefasst werden, in denen " -"Geräte miteinander direkt kommunizieren können. VLANs werden auch häufig dazu genutzt, um Netzwerke " -"voneinander zu trennen. So ist oftmals eine Schnittstelle als Uplink zu " -"einem größeren Netz, wie dem Internet, vorkonfiguriert und die anderen " -"Schnittstellen bilden ein VLAN für das lokale Netzwerk." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "Dem ausgewähltem Protokoll muss ein Gerät zugeordnet werden" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" -"Das mitgesendete Sicherheits-Token ist ungültig oder bereits abgelaufen!" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"Die Einstellungen werden nun gelöscht! Anschließend wird ein Neustart des " -"Systems durchgeführt." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"Der Flashvorgang läuft jetzt.
    SCHALTEN SIE NICHT DEN STROM AUS!
    " -"Warten Sie einige Minuten bis das Gerät wieder erreichbar ist. Je nach " -"Konfiguration ist es notwendig, dass Sie auf Ihrem Computer eine neue IP-" -"Adresse beziehen müssen um auf das Gerät zugreifen zu können." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "Das Systempasswort wurde erfolgreich geändert." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"Das hochgeladene Firmware-Image hat ein nicht unterstütztes Format. Stellen " -"Sie sicher dass Sie das generische Format für Ihre Platform gewählt haben." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Thema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Es gibt z.Z. keine aktiven Leases." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "Es gibt keine ausstehenden Änderungen anzuwenden." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Es gibt keine ausstehenen Änderungen zurückzusetzen!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Es gibt keine ausstehenen Änderungen!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Es wurde noch kein Netzwerkgerät zugeordnet, bitte ein Gerät im \"Physische " -"Einstellungen\" Bereich anfügen" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Es ist kein Passwort auf diesem Router gesetzt. Bitte konfigurieren Sie ein " -"Root-Passwort um das Web-Interface zu schützen und SSH zu aktivieren." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "IPv4-Adresse des Relais" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" -"Diese Datei beinhaltet Zeilen in der Art 'server=/domain/1.2.3.4' oder " -"'server=1.2.3.4' für domainspezifische oder komplette Ziel-DNS-Server." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"Dies ist eine Liste von Shell-Glob-Mustern um Dateien und Verzeichnisse zu " -"selektieren welche während eines System-Upgrade gesichert werden sollen. " -"Modifizierte Dateien in /etc/config/ und bestimmte andere essenzielle " -"Konfigurationsdateien werden automatisch gesichert." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" -"Dies ist entweder der \"Update Key\" der für diesen Tunnel eingerichtet " -"wurde oder das normale Account-Passwort wenn kein separater Schlüssel " -"gesetzt wurde." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Dies ist der Inhalt von /etc/rc.local. Hier kann man eigene Befehle einfügen " -"(vor 'exit 0'), die dann am Ende des Bootvorgangs ausgeführt werden." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"Dies ist die lokale, vom Broker zugewiesene IPv6-Adresse, sie endet " -"üblicherweise mit ...:2/64" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "Dies ist der einzige DHCP im lokalen Netz" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "Das ist der normale Login-Name für den Account." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" -"Dies ist das vom Tunnel-Broker geroutete öffentliche Präfix zur Verwendung " -"durch nachgelagerte Clients." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"Dies ist die System-Crontab in der geplante Aufgaben definiert werden können." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" -"Dies ist üblicherweise die Adresse des nächstgelegenen PoPs betrieben durch " -"den Tunnelbroker" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Diese Tabelle gibt eine Übersicht über aktuell laufende Systemprozesse und " -"deren Status." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "Diese Seite gibt eine Übersicht über aktive Netzwerkverbindungen." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Diese Sektion enthält noch keine Einträge" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Zeitsynchronisation" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Die Zeitsynchronisation wurde noch nicht konfiguriert." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "Zeitintervall für die neubestimmung des Gruppenschlüssels" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Zeitzone" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "Zum Login…" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Zum Wiederherstellen der Konfiguration kann hier ein bereits vorhandenes " -"Backup-Archiv hochgeladen werden. \"Konfiguration zurücksetzen\" stellt den " -"Auslieferungszustand des Systems wieder her (nur möglich bei squashfs-" -"Images)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "Ton" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Gesamt verfügbar" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Routenverfolgung" - -# Ich bin der Meinung Traffic versteht jeder! Wenn der Begriff "deutscher" sein soll, würde ich "Datenmenge" angeben. Aber "Verkehrs" passt nicht! -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Traffic" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Transfer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Übertragungsrate" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Senden" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Sendeleistung" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Sendeantenne" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Auslöser" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Auslösmechanismus" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "Tunnel-ID" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Tunnelschnittstelle" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "Basisschnittstelle" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Sendestärke" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Typ" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Nur UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USB-Gerät" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "USB Anschlüsse" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "Gerätename konnte nicht bestimmt werden" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "Externe IP-Adresse konnte nicht bestimmt werden" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "Externe Netzwerkschnittstelle konnte nicht bestimmt werden" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Kann Anfrage nicht zustellen" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "Client-ID konnte nicht bezogen werden" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "Der AFTR-Hostname konnte nicht aufgelöst werden" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "Der Name des entfernten Hosts konnte nicht aufgelöst werden" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "Nicht verfügbare Sekunden (UAS)" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Unbekannt" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "Protokollfehler: %s" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Ignoriert" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "Aushängen" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "Unbenannter Schlüssel" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Ungespeicherte Änderungen" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "Nicht unterstützter MAP-Typ" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "Nicht unterstütztes Modem" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Nicht unterstützter Protokolltyp." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "Hoch" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Zum Ersetzen der aktuellen Firmware kann hier ein sysupgrade-Kompatibles " -"Image hochgeladen werden. Wenn die vorhandene Konfiguration auch nach dem " -"Update noch aktiv sein soll, aktivieren Sie \"Konfiguration behalten\"." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Backup wiederherstellen..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "hochgeladene Datei" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Laufzeit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Verwende /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Benutze DHCP-Gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Benutze die von der Gegenstelle zugewiesenen DNS-Server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Muss ein ISO/IEC 3166 Länderkürzel sein." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "Benutze MTU auf der Tunnelschnittstelle" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "Benutze TTL auf der Tunnelschnittstelle" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "Als externes Overlay benutzen (/overlay)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "Als Root-Dateisystem benutzen (/)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Benutze Broadcast-Flag" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "Eingebautes IPv6-Management nutzen" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Benutze eigene DNS-Server" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Benutze Standard-Gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Benutze Gateway-Metrik" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Benutze Routing-Tabelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Die Hinzufügen Schaltfläche fügt einen neuen Lease-Eintrag hinzu. " -"Die MAC-Adresse identifiziert den Host, die IPv4-Adresse " -"definiert die zu nutzende statische Adresse und der Hostname ist " -"der symbolische Name der dem Host zugewisen wird." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Belegt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Benutzer Schlüsselindex" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" -"Wird als RADIUS-NAS-ID und als 802.11r R0KH-ID verwendet. Nicht benötigt für " -"WPA(2)-PSK." - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "PEM-kodiertes Benutzerzertifikat" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "PEM-kodierter Benutzerschlüssel" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Benutzername" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANs auf %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANs auf %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "Lokale VPN-Adresse" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "Lokaler VPN-Port" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "VPN-Server" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "VPN-Server Port" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "SHA1-Hash des VPN-Server-Zertifikates" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "VPNC (VPN für CISCO 3000 und Ähnliche)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "Hersteller" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "Bei DHCP-Anfragen gesendete Vendor-Klasse" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Verifizieren" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "Virtuelle dynamisches Schnittstelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "WEP Open System" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "WEP Shared Key" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "WEP Schlüssel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM Modus" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "WPA Schlüssel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"WPA-Verschlüsselung benötigt wpa_supplicant (für Client-Modus) oder hostapd " -"(für AP oder Ad-Hoc Modus)." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Änderungen werden angewandt..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Der Befehl wird ausgeführt..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "Warte auf das Anwenden der Konfigurationsänderungen... %d Sekunden" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "Warte auf Gerät..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Warnung" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" -"Achtung: Es gibt ungespeicherte Änderungen die bei einem Neustart verloren " -"gehen!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" -"Wenn PSK-Schlüssel benutzt werden kann der PMK-Schlüssel automatisch " -"generiert werden. Wenn diese Option aktiviert ist, werden die nachfolgenden " -"R0/R1-Schlüsseloptionen nicht verwendet." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "Wi-Fi Aktivität (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "Wi-Fi Clientverbindung (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "Wi-Fi Datenempfang (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "Wi-Fi Datenübertragung (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "Wi-Fi ein (%s)" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "Breite" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "WLAN" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "WLAN-Gerät" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Drahtlosnetzwerk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Drahtlosübersicht" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "WLAN-Verschlüsselung" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "W-LAN ist deaktiviert" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "W-LAN ist nicht assoziiert" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "WLAN startet neu..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Das WLAN-Netzwerk ist deaktiviert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Das WLAN-Netzwerk ist aktiviert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Empfangene DNS-Anfragen in das Systemprotokoll schreiben" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "Systemprotokoll in Datei schreiben" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "Ja" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Hier können installierte Startscripte aktiviert oder deaktiviert werden. " -"Änderungen werden erst mit einem Geräteneustart angewendet.
    Warnung: Wenn essentielle Startscripte wie \"network\" deaktiviert " -"werden könnte das Gerät unerreichbar werden!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Im Browser muss JavaScript aktiviert sein oder LuCI wird nicht richtig " -"funktionieren." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "ZRAM Kompressionsalgorithmus" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "ZRAM Kompressionsprozesse" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "ZRAM Einstellungen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "ZRAM Größe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "beliebig" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "bridged" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "erzeugen" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "erstelle:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "überbrückt angegebene Schnittstelle(n)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "deaktivieren" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "deaktiviert" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "abgelaufen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "Speicherort für vergebenen DHCP-Adressen" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "weitergeleitet" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "Voll-Duplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "Halb-Duplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "hexadezimal kodierten Wert" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "versteckt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "hybrider Modus" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "falls Ziel ein Netzwerk ist" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "eingehend" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "Schlüssel zwischen 8 und 63 Zeichen" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "Schlüssel mit exakt 5 oder 13 Zeichen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "Lokale DNS-Datei" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "Minuten" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "gemischtes WPA/WPA2" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "nein" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "nicht verbunden" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "nicht-leeren Wert" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "nicht vorhanden" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "aus" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "ein" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "offen" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "ausgehend" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "Overlay" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "positiven Dezimalwert" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "positive Ganzzahl" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "zufällig" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "Relay-Modus" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "routed" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "Sekunden" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "Server-Modus" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "nur zustandsorientiert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "nur zustandlos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "zustandslos + zustandsorientiert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "tagged" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "Zeiteinheiten (TUs / 1024 ms) [1000-65535]" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "eindeutigen Wert" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "unbekannt" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "unbegrenzt" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "unspezifiziert" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "nichts auswählen -oder- erstellen:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "untagged" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "gültige IP-Adresse" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "gültige IP-Adresse oder gültiges IP-Präfix" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "gültige IPv4-CIDR-Notation" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "gültige IPv4-Adresse" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "gültige IPv4-Adresse oder gültiges IPv4-Netzwerk" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "gültige IPv4 \"Adresse:Port\" Notation" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "gültiges IPv4-Netzwerk" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "gültige IPv4- oder IPv6-CIDR-Notation" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "gültiger IPv4-Präfix-Wert (0-32)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "gültige iPv6-CIDR-Notation" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "gültige IPv6-Adresse" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "gültige IPv6-Addresse oder gültiger IPv6-Präfix" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "gültige IPv6 Host-Identifikation" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "gültiges IPv6-Netzwerk" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "gültiger IPv6-Präfix-Wert (0-128)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "gültige MAC-Adresse" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "gültigen UCI-Bezeichner" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "gültigen UCI-Bezeichner, Hostnamen oder IP-Adresse" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "gültige \"Adresse:Port\" Notation" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "gültiges Datum (JJJJ-MM-DD)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "gültigen Dezimalwert" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "gültigen hexadezimalen WEP-Schlüssel" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "gültigen hexadezimalen WPA-Schlüssel" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "gültige \"Host:Port\" Notation" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "gültigen Hostnamen" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "gültigen Hostnamen oder IP-Adresse" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "gültige Ganzzahl" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "gültiges Netzwerk in \"Addresse/Netzmaske\" Notation" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "gültige Telefonnummernziffer (0-0, \"*\", \"#\", \"!\" oder \".\")" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "gültigen Netzwerkport oder Port-Bereich (von-bis)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "gültigen Netzwerkport" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "gültige Zeit (SS:MM:ss)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "Wert zwischen %d und %d Zeichen" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "Wert zwischen %f und %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "Wert größer oder gleich %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "Wert kleiner oder gleich %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "Wert mit mindestens %d Zeichen" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "Wert mit maximal %d Zeichen" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "ja" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Zurück" - -#~ msgid "" -#~ "one of:\n" -#~ " - %s" -#~ msgstr "" -#~ "einen von:\n" -#~ "- %s" - -#~ msgid "" -#~ "Your Internet Explorer is too old to display this page correctly. Please " -#~ "upgrade it to at least version 7 or use another browser like Firefox, " -#~ "Opera or Safari." -#~ msgstr "" -#~ "Die benutzte Version des Internet Explorers ist zu alt, um diese Seite " -#~ "korrekt darzustellen. Bitte mindestens auf Version 7 upgraden oder einen " -#~ "anderen Browser wie Firefox, Opera oder Safari benutzen." - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "When using a PSK, the PMK can be generated locally without inter AP " -#~ "communications" -#~ msgstr "" -#~ "Wenn PSK in Verwendung ist, können PMK-Schlüssel lokal ohne Inter-Access-" -#~ "Point-Kommunikation erzeugt werden." - -#, fuzzy -#~ msgid "" -#~ "The device could not be reached within %d seconds after applying the " -#~ "pending changes, which caused the configuration to be rolled back for " -#~ "safety reasons. If you believe that the configuration changes are correct " -#~ "nonetheless, perform an unchecked configuration apply. Alternatively, you " -#~ "can dismiss this warning and edit changes before attempting to apply " -#~ "again, or revert all pending changes to keep the currently working " -#~ "configuration state." -#~ msgstr "" -#~ "Das Gerät konnte nach Anwendung der ausstehenden Konfigurationsänderungen " -#~ "nicht mehr innerhalb von %d Sekunden erreicht werden, daher wurde die " -#~ "Konfiguration aus Sicherheitsgründen zurückgerollt. Wenn die Änderungen " -#~ "dennoch korrekt sind, kann die Konfiguration ungeprüft " - -#~ msgid "Waiting for configuration to get applied… %ds" -#~ msgstr "Warte auf das Anwenden der Konfiguration… %d Sek." - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Hier können öffentliche SSH-Schlüssel reinkopiert werden (einer pro " -#~ "Zeile)." - -#~ msgid "Password successfully changed!" -#~ msgstr "Passwort erfolgreich geändert!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Unbekannter Fehler, Passwort nicht geändert!" - -#~ msgid "Design" -#~ msgstr "Design" - -#~ msgid "Available packages" -#~ msgstr "Verfügbare Pakete" - -#~ msgid "Bind only to specific interfaces rather than wildcard address." -#~ msgstr "" -#~ "Nur auf angegebenen Schnittstellen reagieren, anstatt auf allen " -#~ "Schnittstellen zu antworten." - -#~ msgid "" -#~ "Build/distribution specific feed definitions. This file will NOT be " -#~ "preserved in any sysupgrade." -#~ msgstr "" -#~ "Konfiguriert die distributionsspezifischen Paket-Repositories. Diese " -#~ "Konfiguration wird bei Upgrades NICHT gesichert." - -#~ msgid "" -#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " -#~ "in a sysupgrade." -#~ msgstr "" -#~ "Selbst konfigurierte Paket-Repositories, z.B. private oder inoffizielle " -#~ "Quellen. Diese Konfiguration wird by Upgrades gesichert." - -#~ msgid "Custom feeds" -#~ msgstr "Eigene Repositories" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Nur Pakete mit folgendem Inhalt anzeigen" - -#~ msgid "Distribution feeds" -#~ msgstr "Distributionsrepositories" - -#~ msgid "Download and install package" -#~ msgstr "Paket herunterladen und installieren" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Find package" -#~ msgstr "Paket suchen" - -#~ msgid "Free space" -#~ msgstr "Freier Platz" - -#~ msgid "General options for opkg" -#~ msgstr "Allgemeine Optionen für Opkg." - -#~ msgid "Install" -#~ msgstr "Installieren" - -#~ msgid "Installed packages" -#~ msgstr "Installierte Pakete" - -# Ich glab das ist so richtiger -#~ msgid "No package lists available" -#~ msgstr "Es sind keine Paketlisten vorhanden" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "OPKG-Konfiguration" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Die Paketlisten sind älter als 24 Stunden" - -#~ msgid "Package name" -#~ msgstr "Paketname" - -#~ msgid "Please update package lists first" -#~ msgstr "Bitte zuerst die Paketlisten aktualisieren" - -#~ msgid "Size (.ipk)" -#~ msgstr "Größe (.ipk)" - -#~ msgid "Software" -#~ msgstr "Paketverwaltung" - -#~ msgid "Update lists" -#~ msgstr "Listen aktualisieren" - -#~ msgid "Version" -#~ msgstr "Version" - -#~ msgid "none" -#~ msgstr "keine" - -#~ msgid "Disable DNS setup" -#~ msgstr "DNS-Verarbeitung deaktivieren" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 und IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "nur IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "nur IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Lease-Gültigkeitsdauer" - -#~ msgid "Multicast address" -#~ msgstr "Multicast-Adresse" - -#~ msgid "Protocol family" -#~ msgstr "Protokollfamilie" - -#~ msgid "No chains in this table" -#~ msgstr "Keine Ketten in dieser Tabelle" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Konfigurationsdateien sichern" - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Warnung: Konfigurationsdateien werden gelöscht." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Dieses Netzwerk aktivieren" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Hermes 802.11b W-LAN Adapter" - -#~ msgid "Interface is shutting down..." -#~ msgstr "Schnittstelle fährt herunter..." - -#~ msgid "Interface reconnected" -#~ msgstr "Schnittstelle neu verbunden" - -#~ msgid "Interface shut down" -#~ msgstr "Schnittstelle heruntergefahren" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Prism2/2.5/3 802.11b W-LAN Adapter" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "RaLink 802.11%s W-LAN Adapter" - -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface" -#~ msgstr "" -#~ "Dieses Netzwerk wirklich herunterfahren? Der Kontakt zum Gerät könnte " -#~ "verloren gehen wenn die Verbindung über dieses Netzwerk erfolgt." - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "Die Schnitstelle \"%s\" wirklich herunterfahren?\n" -#~ "Der Zugriff auf das Gerät könnte verlorengehen wenn Sie über diese " -#~ "Schnittstelle verbunden sind." - -#~ msgid "Reconnecting interface" -#~ msgstr "Verbinde Schnittstelle neu" - -#~ msgid "Shutdown this network" -#~ msgstr "Dieses Netzwerk herunterfahren" - -#~ msgid "Wireless is disabled or not associated" -#~ msgstr "WLAN ist deaktiviert oder nicht assoziiert" - -#~ msgid "Wireless restarted" -#~ msgstr "WLAN neu gestartet" - -#~ msgid "Wireless shut down" -#~ msgstr "WLAN heruntergefahren" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP-Leases" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "DHCPv6-Leases" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "Diese Schnittstelle wirklich löschen? Der Schritt kann nicht rückgängig " -#~ "gemacht werden!\n" -#~ "Der Zugriff auf das Gerät könnte verlorengehen wenn Sie über diese " -#~ "Schnittstelle verbunden sind." - -#, fuzzy -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "Das Netzwerk wirklich herunterfahren?\n" -#~ "Der Zugriff auf das Gerät könnte verlorengehen wenn Sie über diese " -#~ "Schnittstelle verbunden sind." - -#~ msgid "Sort" -#~ msgstr "Sortieren" - -#~ msgid "help" -#~ msgstr "Hilfe" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "IPv4 WAN Status" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "IPv6 WAN Status" diff --git a/luci-base/po/el/base.po b/luci-base/po/el/base.po deleted file mode 100644 index 137f7458a..000000000 --- a/luci-base/po/el/base.po +++ /dev/null @@ -1,6508 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2012-03-31 15:35+0200\n" -"Last-Translator: Vasilis \n" -"Language-Team: LANGUAGE \n" -"Language: el\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.4\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(παράθυρο %d λεπτών, διάστημα %d δευτερολέπτων)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s διαθέσιμα)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(κενό)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(χωρίς προσαρτημένες διεπαφές)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Επιπλέον Πεδίο --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Παρακαλώ επιλέξτε --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- προσαρμοσμένο --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Φορτίο 1 λεπτού:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Φορτίο 15 λεπτών:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Φορτίο 5 λεπτών:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "Θύρα ερωτημάτων DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "Θύρα εξυπηρετητή DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"Οι DNS εξυπηρετητές θα " -"ερωτηθούν με την σειρά εμφάνισης στο αρχείο resolvfile" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "Διεύθυνση IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "Πύλη IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "Μάσκα IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"Διεύθυνση IPv6 ή Δίκτυο " -"(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "Πύλη IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "Παραμετροποίηση LED" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "Όνομα LED" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "Διεύθυνση MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Μεγ. πλήθος DHCP leases" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Μεγ. μέγεθος πακέτου EDNS0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Μεγ. πλήθος ταυτόχρονων ερωτηματων" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "Όριο επαναδοκιμών ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "Γέφυρες ΑΤΜ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM Εικονικό Κανάλι Αναγνωριστή (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM Εικονικό μονοπάτι Αναγνωριστή (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Οι γέφυρες ATM αποκαλύπτουν ενθυλακωμένες ethernet σε συνδέσεις AAL5 σαν " -"εικονικές διεπαφές δικτύου Linux, οι οποίες μπορούν να χρησιμοποιηθούν σε " -"συνδυασμό με DHCP ή PPP για την κλήση προς τον παροχέα δικτύου." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "Αριθμός συσκευής ATM" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Συγκεντρωτής Πρόσβασης " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Σημείο Πρόσβασης" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Ενέργειες" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Ενεργές Διαδρομές IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Ενεργές Διαδρομές IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Ενεργές Συνδέσεις" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Προσθήκη" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"Προσθήκη κατάληξης τοπικού τομέα για ονόματα εξυπηρετούμενα από αρχεία hosts " - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Προσθήκη νέας διεπαφής..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Επιπλέον αρχεία Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Διεύθυνση" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Διεύθυνση για πρόσβαση σε την τοπική γέφυρα αναμετάδοσης" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Διαχείριση" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Προχωρημένες Ρυθμίσεις" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Ειδοποίηση" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Επιτρέπει την εξουσιοδότηση SSH με " -"κωδικό πρόσβασης" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Να επιτρέπονται όλες, εκτός από αυτές στη λίστα" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Να επιτρέπονται μόνο αυτές στην λίστα" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Να επιτρέπεται το localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Να επιτρέπεται σε απομακρυσμένα συστήματα να συνδέονται σε τοπικά " -"προωθημένες SSH θύρες" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Να επιτρέπονται root συνδέσεις με κωδικό πρόσβασης" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" -"Να επιτρέπεται στον χρήστη root να συνδέετε με κωδικό πρόσβασης" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Να επιτρέπονται απαντήσεις από ανώτερο επίπεδο εντός του εύρους 127.0.0.0/8, " -"π.χ. για υπηρεσίες RBL" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Κεραία 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Κεραία 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Οιαδήποτε ζώνη" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Συνδεδεμένοι Σταθμοί" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Εξουσιοδότηση" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Κύριος" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Απαιτείται Εξουσιοδότηση" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Αυτόματη Ανανέωση" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Διαθέσιμο" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Μέσος Όρος:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Πίσω" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Πίσω προς Επισκόπηση" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Πίσω προς παραμετροποίηση" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Πίσω προς επισκόπηση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Πίσω στα αποτελέσματα σάρωσης" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Αποθήκευση" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Αντίγραφο ασφαλείας / Εγγραφή FLASH Υλικολογισμικό" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Λίστα αρχείων για αντίγραφο ασφαλείας" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -#, fuzzy -msgid "Bad address specified!" -msgstr "Μη έγκυρη διεύθυνση!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Παρακάτω είναι η προκαθορισμένη λίστα αρχείων για αντιγραφή ασφαλείας. " -"Αποτελείτε από αλλαγμένα αρχεία παραμετροποίησης σημαδεμένα από το opkg, " -"ουσιώδη βασικά αρχεία καθώς και καθορισμένα από το χρήστη μοτίβα αντιγράφων " -"ασφαλείας." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Ρυθμός δεδομένων" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Παράκαμψη Ψευδούς Τομέα NX" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Γέφυρα" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Γεφύρωμα διεπαφών" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Αριθμός μονάδας γέφυρας" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Ανέβασμα κατά την εκκίνηση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Χρήση CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Ακύρωση" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Αλυσίδα" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Αλλαγές" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Αλλαγές εφαρμόστηκαν." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Αλλάζει τον κωδικό διαχειριστή για πρόσβαση στη συσκευή" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Κανάλι" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Έλεγχος" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Άθροισμα Ελέγχου" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Επιλέξατε την ζώνη τείχους προστασίας που επιθυμητέ να αναθέσετε σε αυτήν " -"την διεπαφή. Επιλέξτε απροσδιόριστο για να αφαιρέσετε την διεπαφή " -"από την συσχετισμένη ζώνη ή συμπληρώστε το δημιουργία πεδίο για να " -"προσδιορίσετε μία νέα ζώνη και να προσαρτήσετε την διεπαφή σε αυτό." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Κλικ στο \"Δημιουργία αρχείου\" για να κατεβάσετε ένα tar αρχείο με τα " -"τρέχοντα αρχεία παραμετροποίησης." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Πελάτης" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "Αναγνωριστικό πελάτη που αποστέλλετε κατά την αίτηση DHCP" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Κλείσιμο, μη ενεργών συνδέσεων μετά το πέρας του ορισμένου αριθμού " -"δευτερολέπτων, χρησιμοποιήστε 0 για να εξακολουθούν να υφίστανται επ' " -"αόριστον" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Κλείσιμο λίστας..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Συλλογή δεδομένων..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Εντολή" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Κοινή Παραμετροποίηση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Παραμετροποίηση" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Επιβεβαίωση" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Σύνδεση" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Συνδεδεμένος" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Όριο Συνδέσεων" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Συνδέσεις" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Χώρα" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Κωδικός Χώρας" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Κάλυψη της ακόλουθης διεπαφής" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Κάλυψη των ακόλουθων διεπαφών" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Δημιουργία / Ανάθεση ζώνης τείχους προστασίας" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Δημιουργία Διεπαφής" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Επίπεδο Καταγραφής Cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Ρυθμίζει, αν είναι δυνατόν, την συμπεριφορά των LED της συσκευής." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Εξυπηρετητής DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP και DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "Πελάτης DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Επιλογές DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Προωθήσεις DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Αποσφαλμάτωση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Προεπιλογή %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Προεπιλεγμένη πύλη" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Προεπιλεγμένη κατάσταση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Ορίστε ένα όνομα για αυτό το δίκτυο." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Ορίστε επιπλέον επιλογές DHCP, που διαφημίζουν διαφορετικούς εξυπηρετητές " -"DNS στους πελάτες, για παράδειγμα \"6,192.168.2.1,192.168.2.2\"." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Διαγραφή" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Διαγραφή αυτού του δικτύου" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Περιγραφή" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Προορισμός" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Συσκευή" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Παραμετροποίηση Συσκευής" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Διαγνωστικά" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Κατάλογος" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Απενεργοποίηση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Απενεργοποίηση DHCP για αυτή τη διεπαφή." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Απενεργοποιημένο" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Αγνόησε τις απαντήσεις ανοδικής ροής RFC1918" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Βελτιστοποίηση Απόστασης" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Απόσταση σε μέτρα από το πιο απομακρυσμένο μέλος του δικτύου." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Διαφορική Λήψη" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Ο Dnsmasq είναι ένας συνδυασμός εξυπηρετητή DHCP και προωθητήDNS για τείχη προστασίας NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" -"Να μην αποθηκεύονται στη λανθάνουσα μνήμη οι αρνητικές απαντήσεις, π.χ. για " -"μη υπαρκτούς τομείς." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Να μην προωθούνται αιτήματα τα οποία δεν μπορούν να απαντηθούν από δημόσιους " -"εξυπηρετητές ονομάτων" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Απαίτηση για όνομα τομέα" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Λευκή λίστα τομέων" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Να μην προωθούνται ερωτήματα DNS " -"χωρίς όνομα τομέα DNS" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Κατέβασμα αντιγράφου ασφαλείας" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Το Dropbear προσφέρει πρόσβαση σε SSH " -"κέλυφος μέσω δικτύου και έναν ενσωματωμένο εξυπηρετητή SCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"Δυναμικό DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Δυναμικό τούνελ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Δυναμική απόδοση DHCP διευθύνσεων στους πελάτες. Σε περίπτωση " -"απενεργοποίησης, μόνο πελάτες με στατικα leases θα εξυπηρετούνται." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Μέθοδος EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Επεξεργασία" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Επεξεργασία αυτής της διεπαφής" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Επεξεργασία αυτού του δικτύου" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Έκτακτη ανάγκη" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Ενεργοποίηση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Ενεργοποίηση STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Ενεργοποίηση ενημέρωσης δυναμικού τερματικού σημείου HE.net." - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Ενεργοποίηση διαπραγμάτευσης IPv6 πάνω στη PPP ζεύξη" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Ενεργοποίηση διέλευσης Jumbo Frame" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Ενεργοποίηση εξυπηρετητή TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Ενεργοποίηση λειτουργίας VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Ένεργοποίηση learning and aging" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Ενεργοποίηση αυτής της προσάρτησης" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Ενεργοποίηση αυτής της swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Ενεργοποίηση/Απενεργοποίηση" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Ενεργοποιημένο" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Λειτουργία ενθυλάκωσης" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Κρυπτογράφηση" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Διαγράφεται..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Σφάλμα" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Προσαρμογέας Ethernet" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Ethernet Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Λήγει" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"Ο ελάχιστος χρόνος λήξεως των διευθύνσεων lease είναι 2 λεπτά (2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Εξωτερικός εξυπηρετητής καταγραφής συστήματος" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Αρχείο" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Όνομα αρχείου της εικόνας εκκίνησης που διαφημίζετε στους πελάτες" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Σύστημα Αρχείων" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Φιλτράρισμα ιδιωτικών" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Φιλτράρισμα άχρηστων" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Εύρεση και σύνδεση σε δίκτυο" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Τέλος" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Τείχος Προστασίας" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Ρυθμίσεις Τείχους Προστασίας" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Κατάσταση Τείχους Προστασίας" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Έκδοση Υλικολογισμικού" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Φλασάρισμα Firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Φλασάρισμα εικόνας..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Φλασάρισμα νέας εικόνας υλικολογισμικού" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Λειτουργίες φλασάρισματος" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Φλασάρεται..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Επιβολή" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Επιβολή CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" -"Επιβολή DHCP σε αυτό το δίκτυο ακόμα κι αν έχει εντοπιστεί άλλος εξυπηρετητής" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Επιβολή TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Επιβολή TKIP και CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Προώθηση κίνησης DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Προώθηση κίνησης broadcast" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Μέθοδος προώθησης" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Όριο Κατακερµατισµού" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Bursting Πλαισίων" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Πύλη" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Θύρες πύλης" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Γενικές Ρυθμίσεις" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Μετάβαση στη σχετική σελίδα ρυθμίσεων" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Κρέμασμα" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Εδώ μπορείτε να παραμετροποιήσετε βασικές πλευρές της συσκευής σας όπως το " -"όνομα υπολογιστή ή τη ζώνη ώρας." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Κρυφό ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Καταχωρήσεις Υπολογιστών" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" -"IP Υπολογιστή ή Δικτύου" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Όνομα Υπολογιστή" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Ονόματα Υπολογιστών" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Διεύθυνση IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4 Τείχος Προστασίας" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Διεύθυνση IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "Πύλη IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Μάσκα IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-Διεύθυνση" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6 Τείχος Προστασίας" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Διεύθυνση IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "Πύλη IPv6" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-in-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Ταυτότητα" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Αν οριστεί, προσάρτησε τη συσκευή με βάση το UUID της αντί για το " -"καθορισμένο όνομα της" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Αν οριστεί, προσάρτησε τη συσκευή με βάση την ετικέτα της αντί για το " -"καθορισμένο όνομα της" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Αν η φυσική μνήμη δεν είναι αρκετή, μη-χρησιμοποιούμενα δεδομένα μπορούν " -"προσωρινά να εναλλάσσονται σε μία συσκευή swap με αποτέλεσμα περισσότερη " -"ενεργή RAM. Η εναλλαγή δεδομένων " -"είναι μία πολύ αργή διαδικασία αφού η συσκευή swap δεν μπορεί να " -"προσπελαστεί με τους υψηλούς ρυθμούς μεταφοράς δεδομένων που διαθέτει η " -"RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Αγνόησε /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Αγνόησε διεπαφή" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Αγνόησε αρχείο resolve" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Είσοδος" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Πληροφορίες" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Σενάριο εκκίνησης" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Σενάρια Εκκίνησης" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Εγκατάσταση πακέτου %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Εγκατάσταση επεκτάσεων πρωτοκόλλου..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Διεπαφή" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Παραμετροποίηση Διεπαφής" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Επισκόπηση Διεπαφής" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Η διεπαφή επανασυνδέεται..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Η διεπαφή δεν υπάρχει ή δεν έχει συνδεθεί ακόμη." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Διεπαφές" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Άκυρη τιμή εισόδου" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Άκυρο όνομα χρήστη και/ή κωδικός πρόσβασης! Παρακαλώ προσπαθήστε ξανά." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Φαίνεται πως προσπαθείτε να φλασάρετε μια εικόνα που δεν χωράει στην μνήμη " -"flash, παρακαλώ επιβεβαιώστε το αρχείο εικόνας!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "Απαιτείται JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Διατήρηση ρυθμίσεων" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Καταγραφή Πυρήνα" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Έκδοση Πυρήνα" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Κλειδί" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Κλειδί #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Σκότωμα" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Ετικέτα" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Γλώσσα" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Αρχείο Leases" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Υπόλοιπο χρόνου Lease" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Αφήστε το κενό για να γίνει αυτόματη ανίχνευση" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Αφήστε το κενό για να γίνει χρήση της τρέχουσας διεύθυνσης WAN" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Υπόμνημα:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Όριο" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Αναμμένο με Ζεύξη" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Φόρτος" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Μέσος όρος φόρτου" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Φόρτωση" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Τοπική διεύθυνση IPv4" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Τοπική διεύθυνση IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Τοπική Ώρα" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Τοπικός εξυπηρετητής" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Τοπικά ερωτήματα" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Επίπεδο εξόδου αρχείων καταγραφής" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Καταγραφή ερωτημάτων" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Καταγραφή" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Σύνδεση" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Αποσύνδεση" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-Διεύθυνση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Φίλτρο MAC Διευθύνσεων" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-Φίλτρο" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Λίστα MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Μέγιστος επιτρεπόμενος αριθμός ενεργών DHCP leases" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Μέγιστος επιτρεπόμενος αριθμός ταυτόχρονων ερωτημάτων DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Μέγιστο επιτρεπόμενο μέγεθος EDNS.0 UDP πακέτων" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" -"Μέγιστος αριθμός δευτερολέπτων αναμονής ώστε το modem να καταστεί έτοιμο" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Μέγιστος αριθμός διευθύνσεων lease" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Μνήμη" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Χρήση Μνήμης (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Μέτρο" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Λειτουργία" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Συσκευή Modem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Παρακολούθηση" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -#, fuzzy -msgid "Mount Entry" -msgstr "Προσάρτηση" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Σημείο Προσάρτησης" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Σημεία Προσάρτησης" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Σημεία Προσάρτησης - Είσοδος Προσάρτησης" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Τα σημεία προσάρτησης ορίζουν σε ποιο σημείο στο σύστημα αρχείων θα " -"προσαρτηθεί μία συσκευή μνήμης" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Επιλογές προσάρτησης" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Σημείο προσάρτησης" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Προσαρτημένα συστήματα αρχείων" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Μετακίνηση κάτω" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Μετακίνηση πάνω" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Όνομα" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Όνομα νέας διεπαφής" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Όνομα νέου δικτύου" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Πλοήγηση" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Μάσκα δικτύου" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Δίκτυο" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Εργαλεία Δικτύου" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Επόμενο »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Δεν υπάρχει ρυθμισμένος DHCP εξυπηρετητής για αυτή τη διεπαφή" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Δε βρέθηκαν αρχεία" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Δεν υπάρχουν πληροφορίες διαθέσιμες" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Δεν υπάρχει παραμετροποιημένο δίκτυο σε αυτή τη συσκευή" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Δεν έχει οριστεί όνομα δικτύου" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Δεν έχει οριστεί κωδικός πρόσβασης!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Δεν υπάρχει κανόνας σε αυτή την αλυσίδα" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Δεν έχει ανατεθεί ζώνη" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Θόρυβος" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Θόρυβος:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Κανένα" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Φυσιολογικό" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Επισήμανση" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Σε αυτή τη σελίδα μπορείτε να ρυθμίσετε τις διεπαφές δικτύου. Μπορείτε να " -"γεφυρώσετε πολλαπλές διεπαφές τικάροντας το πεδίο \"γεφύρωμα διεπαφών\" και " -"εισάγοντας τα ονόματα των διεπαφών δικτύου χωρισμένα με κενά. Μπορείτε " -"επίσης να χρησιμοποιήσετε παράσταση τύπου VLAN INTERFACE.VLANNR (π.χ.: eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Ένα ή περισσότερα πεδία περιέχουν μη έγκυρες τιμές!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Ένα ή περισσότερα πεδία δεν περιέχουν τιμές!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Η επιλογή άλλαξε" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Η επιλογή αφαιρέθηκε" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Επιλογές" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Έξοδος" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Επισκόπηση" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Κάτοχος" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Ενθυλάκωση PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Απαιτείται το πακέτο libiwinfo!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Πακέτα" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Μέρος της ζώνης %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Κωδικός Πρόσβασης" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Εξουσιοδότηση με κωδικό πρόσβασης" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Κωδικός Πρόσβασης του Ιδιωτικού Κλειδιού" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Διαδρομή για Πιστοποιητικό CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Διαδρομή για Πιστοποιητικό-Πελάτη" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Διαδρομή για Ιδιωτικό Κλειδί" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Εκτέλεση επανεκκίνησης" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Διενέργεια αρχικοποίησης" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Πκτ." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Παρακαλώ εισάγετε όνομα χρήστη και κωδικό πρόσβασης." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Πολιτική" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Θύρα" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -#, fuzzy -msgid "Prevents client-to-client communication" -msgstr "Αποτρέπει την επικοινωνία μεταξύ πελατών" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Συνέχεια" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Εργασίες" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Πρωτ." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Πρωτόκολλο" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Πρωτόκολλο νέας διεπαφής" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Η υποστήριξη πρωτοκόλλου δεν έχει εκγατασταθεί" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Ψευδό Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Όριο RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Διάβασμα του /etc/ethers για την παραμετροποίηση του " -"εξυπηρετητή DHCP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Αρχικοποίηση όλων των αλλαγών;" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Αλλαγή πρωτοκόλλου;" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Συνδέσεις πραγματικού χρόνου" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Γραφήματα πραγματικού χρόνου" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Κίνηση πραγματικού χρόνου" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Επανεκκίνηση" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Επανεκκίνηση..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Επανεκκίνηση του λειτουργικού συστήματος της συσκευής σας" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Λήψη" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Κεραία Λήψης" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Επανασύνδεση της διεπαφής" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Αναφορές" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Απομακρυσμένη διεύθυνση IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Αφαίρεση" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Επανάληψη σάρωσης" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Αντικατάσταση καταχώρησης" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Αντικατάσταση ρυθμίσεων ασύρματης σύνδεσης" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Αρχικοποίηση" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Αρχικοποίηση Μετρητών" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Αρχικοποίηση στις προεπιλεγμένες τιμές" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Αρχεία Resolv και Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Αρχείο Resolve" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Επανεκκίνηση" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Επανεκκίνηση Τείχους Προστασίας" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Επαναφορά Αντίγραφου Ασφαλείας" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Επαναφορά αντιγράφου ασφαλείας" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Αναίρεση" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Root" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Κατάλογος Root για αρχεία που σερβίρονται μέσω TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Κωδικός Πρόσβασης Δρομολογητή" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -#, fuzzy -msgid "Routes" -msgstr "Διαδρομές" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Οι διαδρομές ορίζουν τη διεπαφή και πύλη από την οποία κάποιος υπολογιστής ή " -"δίκτυο μπορεί να είναι προσβάσιμο/ς." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Εκτέλεση ελέγχου του συστήματος αρχείων πριν προσαρτηθεί η συσκευή" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Εκτέλεση ελέγχου συστήματος αρχείων" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Πρόσβαση SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "Κλειδιά SSH" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Αποθήκευση" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Αποθήκευση & Εφαρμογή" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Σάρωση" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Προγραμματισμένες Εργασίες" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Δείτε το manpage του \"mount\" για λεπτομέρειες" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -#, fuzzy -msgid "Separate Clients" -msgstr "Απομόνωση Πελατών" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Ρυθμίσεις Εξυπηρετητή" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Όνομα Υπηρεσίας" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Είδος Υπηρεσίας" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Υπηρεσίες" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Ρύθμιση Εξυπηρετητή DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Απενεργοποίηση αυτής της διεπαφής" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Σήμα" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Σήμα:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Μέγεθος" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Παράκαμψη" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Παράκαμψη σε περιεχόμενο" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Παράκαμψη σε πλοήγηση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Κάποια πεδία δεν είναι έγκυρα, δεν μπορούν να αποθηκευτούν οι τιμές!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Πηγή" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -#, fuzzy -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" -"Προσδιορίζει την θύρα ακρόασης αυτού του στιγμιοτύπου Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Ορίστε το κρυφό κλειδί κρυπτογράφησης." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Αρχή" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Προτεραιότητα εκκίνησης" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Εκκίνηση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Στατικές Διαδρομές IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Στατικές Διαδρομές IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Στατικά Leases" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Στατικές Διαδρομές" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Στατική διεύθυνση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Κατάσταση" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Αυστηρή σειρά" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Υποβολή" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Συγχρονισμός..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Σύστημα" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Καταγραφή Συστήματος" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Ιδιότητες Συστήματος" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Ρυθμίσεις TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Πίνακας" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Στόχος" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Τερματισμός" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Οι επιτρεπόμενοι χαρακτήρες είναι: A-Z, a-z, " -"0-9 και _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"Το αρχείο συσκευής της μνήμης ή του διαμέρισματος (π.χ. /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"Το σύστημα αρχείων που χρησιμοποιήθηκε για διαμόρφωση (π.χ. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Οι παρακάτω αλλαγές έχουν αναιρεθεί" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Οι παρακάτω κανόνες είναι αυτή τη στιγμή ενεργοί σε αυτό το σύστημα." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "Το παρεχόμενο όνομα δικτύου δεν είναι μοναδικό" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"Το σύστημα φλασάρετε τώρα.
    ΜΗ ΣΒΗΣΕΤΕ ΤΗΝ ΣΥΣΚΕΥΗ!
    Περιμένετε " -"λίγα λεπτά για να δοκιμάσετε επανασύνδεση. Ανάλογα με τις ρυθμίσεις σας, " -"είναι πιθανό να χρειαστεί να ανανεώσετε την διεύθυνση του υπολογιστή σας για " -"να αποκτήσετε ξανά πρόσβαση στη συσκευή." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"Η εικόνα που ανεβάσατε δεν περιέχει κάποια υποστηριζόμενη μορφή. Βεβαιωθείτε " -"ότι επιλέξατε την γενική μορφή εικόνας για την πλατφόρμα σας." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Εμφάνιση" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Δεν υπάρχουν ενεργά leases." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Αυτός είναι ο μόνος DHCP στο τοπικό δίκτυο" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"Αυτό είναι το crontab του συστήματος στο οποίο μπορούν να οριστούν " -"προγραμματισμένες εργασίες." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Αυτή η λίστα δίνει μία εικόνα των τρέχοντων εργασιών συστήματος και της " -"κατάστασής τους." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" -"Αυτή η σελίδα δίνει μία εικόνα για τις τρέχουσες ενεργές συνδέσεις δικτύου." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Αυτό το τμήμα δεν περιέχει τιμές ακόμη" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Ζώνη ώρας" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. Για να επαναφέρετε το υλικολογισμικό στην αρχική του " -"κατάσταση, κάντε κλικ στο \"Εκτέλεσε επαναφορά\" (δυνατό μόνο σε squashfs " -"εικόνες)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Διαθέσιμο Συνολικά" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Κίνηση" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Μεταφέρθηκαν" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Ρυθμός Εκπομπής" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Εκπομπή" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Ισχύς Εκπομπής" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Κεραία Εκπομπής" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Διεπαφή Τούνελ" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Ισχύς Εκπομπής" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Τύπος" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "Συσκευή USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Άγνωστο" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Μη-αποθηκευμένες Αλλαγές" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Το Αρχείο Ανέβηκε" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Χρόνος εν λειτουργία" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Χρήση /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Χρήση πύλης DHCP" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Χρήση προεπιλεγμένης πύλης" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Σε χρήση" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Χρησιμοποιούμενη Υποδοχή Κλειδιού" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Όνομα Χρήστη" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "Εξυπηρετητής VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Μοιραζόμενο κλειδί WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "Κωδική φράση WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Υποστήριξη WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "Κωδική φράση WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Προειδοποίηση" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Ασύρματο" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Ασύρματος Προσαρμογέας" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Ασύρματο Δίκτυο" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Επισκόπηση Ασύρματου Δικτύου" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Ασφάλεια Ασύρματου Δικτύου" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Το ασύρματο δίκτυο είναι απενεργοποιημένο" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Το ασύρματο δίκτυο μη συνδεδεμένο" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Το ασύρματο δίκτυο επανεκκινείται..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Το ασύρματο δίκτυο είναι ανενεργό" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Το ασύρματο δίκτυο είναι ενεργό" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Καταγραφή των ληφθέντων DNS αιτήσεων στο syslog" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Μπορείτε να ενεργοποιήσετε ή να απενεργοποιήσετε σενάρια εκκίνησης εδώ. Οι " -"αλλαγές θα εφαρμοστούν αφού επανεκκινήσετε τη συσκευή.
    Προειδοποίηση: Αν απενεργοποιήσετε απαραίτητα σενάρια εκκίνησης " -"όπως το \"network\", η συσκευή σας μπορεί να καταστεί μη-προσβάσιμη!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "αυτόματα" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -#, fuzzy -msgid "creates a bridge over specified interface(s)" -msgstr "δημιουργεί μία γέφυρα μεταξύ των ορισμένων διεπαφών" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "ανενεργό" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"αρχείο όπου θα αποθηκεύονται τα Leases του DHCP" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "προώθηση" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "αν ο στόχος είναι ένα δίκτυο" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "είσοδος" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "τοπικό αρχείο DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "όχι" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "κλειστό" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "ανοιχτό" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "απεριόριστα" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "μη-καθορισμένο" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "μη-καθορισμένο -ή- δημιουργείστε:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "ναι" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Πίσω" - -#~ msgid "Password successfully changed!" -#~ msgstr "Ο κωδικός πρόσβασης άλλαξε επιτυχώς!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Άγνωστο Λάθος. ο κωδικός πρόσβασης δεν άλλαξε!" - -#~ msgid "Design" -#~ msgstr "Εμφάνιση" - -#~ msgid "Available packages" -#~ msgstr "Διαθέσιμα πακέτα" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Εμφάνιση μόνο πακέτων που περιέχουν" - -#~ msgid "Download and install package" -#~ msgstr "Κατέβασμα και εγκατάσταση πακέτου" - -#~ msgid "Filter" -#~ msgstr "Φίλτρο" - -#~ msgid "Find package" -#~ msgstr "Εύρεση πακέτου" - -#~ msgid "Free space" -#~ msgstr "Ελεύθερος χώρος" - -#~ msgid "Install" -#~ msgstr "Εγκατάσταση" - -#~ msgid "Installed packages" -#~ msgstr "Εγκατεστημένα πακέτα" - -#~ msgid "No package lists available" -#~ msgstr "Δεν υπάρχουν διαθέσιμες λίστες πακέτων" - -#~ msgid "OK" -#~ msgstr "Εντάξει" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Παραμετροποίηση OPKG" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Οι λίστες πακέτων έχουν να ανανεωθούν πάνω από 24 ώρες" - -#~ msgid "Package name" -#~ msgstr "Όνομα πακέτου" - -#~ msgid "Software" -#~ msgstr "Λογισμικό" - -#~ msgid "Version" -#~ msgstr "Έκδοση" - -#~ msgid "none" -#~ msgstr "κανένα" - -#~ msgid "Disable DNS setup" -#~ msgstr "Απενεργοποίηση ρυθμίσεων DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 και IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Μόνο IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Μόνο IPv6" - -#~ msgid "Multicast address" -#~ msgstr "Διεύθυνση Multicast" - -#~ msgid "Protocol family" -#~ msgstr "Οικογένεια πρωτοκόλλου" - -#~ msgid "No chains in this table" -#~ msgstr "Δεν υπάρχουν αλυσίδες σε αυτόν τον πίνακα" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Τα αρχεία παραμετροποίησης θα διατηρηθούν." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Σημείωση: Τα αρχεία παραμετροποίησης θα διαγραφούν." - -#~ msgid "Activate this network" -#~ msgstr "Ενεργοποίηση αυτού του δικτύου" - -#~ msgid "Interface is shutting down..." -#~ msgstr "Η διεπαφή απενεργοποιείται..." - -#~ msgid "Interface reconnected" -#~ msgstr "Η διεπαφή επανασυνδέθηκε" - -#~ msgid "Interface shut down" -#~ msgstr "Η διεπαφή απενεργοποιήθηκε" - -#~ msgid "Reconnecting interface" -#~ msgstr "Επανασύνδεση της διεπαφής" - -#~ msgid "Shutdown this network" -#~ msgstr "Απενεργοποίηση αυτού του δικτύου" - -#~ msgid "Wireless restarted" -#~ msgstr "Το ασύρματο δίκτυο επανεκκινήθηκε" - -#~ msgid "Wireless shut down" -#~ msgstr "Το ασύρματο δίκτυο τερματίστηκε" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP Leases" - -#~ msgid "Sort" -#~ msgstr "Ταξινόμηση" - -#~ msgid "help" -#~ msgstr "βοήθεια" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "Κατάσταση IPv6 WAN" - -#~ msgid "Apply" -#~ msgstr "Εφαρμογή" - -#~ msgid "Applying changes" -#~ msgstr "Εφαρμογή αλλαγών" - -#~ msgid "Configuration applied." -#~ msgstr "Η Παραμετροποίηση εφαρμόστηκε." - -#~ msgid "Save & Apply" -#~ msgstr "Αποθήκευση & Εφαρμογή" - -#~ msgid "The following changes have been committed" -#~ msgstr "Οι παρακάτω αλλαγές έχουν υποβληθεί" - -#~ msgid "Action" -#~ msgstr "Ενέργεια" - -#~ msgid "Buttons" -#~ msgstr "Κουμπιά" - -#~ msgid "Maximum hold time" -#~ msgstr "Μέγιστος χρόνος κράτησης" - -#~ msgid "Minimum hold time" -#~ msgstr "Ελάχιστος χρόνος κράτησης" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "Διαδρομή για το εκτελέσιμο που χειρίζεται το γεγονός του κουμπιού" - -#~ msgid "Leasetime" -#~ msgstr "Χρόνος Lease" - -#, fuzzy -#~ msgid "automatic" -#~ msgstr "στατικό" - -#~ msgid "AR Support" -#~ msgstr "Υποστήριξη AR" - -#~ msgid "Background Scan" -#~ msgstr "Σάρωση Παρασκηνίου" - -#~ msgid "Compression" -#~ msgstr "Συμπίεση" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Απενεργοποίηση χρονιστή HW-Beacon" - -#~ msgid "Do not send probe responses" -#~ msgstr "Να μην στέλνονται απαντήσεις σε probes" - -#~ msgid "Fast Frames" -#~ msgstr "Γρήγορα Πλαίσια" - -#~ msgid "Maximum Rate" -#~ msgstr "Μέγιστος Ρυθμός" - -#~ msgid "Minimum Rate" -#~ msgstr "Ελάχιστος Ρυθμός" - -#~ msgid "Multicast Rate" -#~ msgstr "Ρυθμός Multicast" - -#~ msgid "Outdoor Channels" -#~ msgstr "Εξωτερικά Κανάλια" - -#~ msgid "Regulatory Domain" -#~ msgstr "Ρυθμιστική Περιοχή" - -#~ msgid "Separate WDS" -#~ msgstr "Ξεχωριστά WDS" - -#~ msgid "Turbo Mode" -#~ msgstr "Λειτουργία Turbo" - -#~ msgid "XR Support" -#~ msgstr "Υποστήριξη XR" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "Ένα επιπλέον δίκτυο θα δημιουργηθεί εάν αυτό αφεθεί κενό" - -#~ msgid "Port %d" -#~ msgstr "Θύρα %d" - -#~ msgid "VLAN Interface" -#~ msgstr "Διεπαφή VLAN" diff --git a/luci-base/po/en/base.po b/luci-base/po/en/base.po deleted file mode 100644 index e74897111..000000000 --- a/luci-base/po/en/base.po +++ /dev/null @@ -1,6392 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2012-04-03 08:44+0200\n" -"Last-Translator: juhosg \n" -"Language-Team: LANGUAGE \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: Pootle 2.0.4\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d minute window, %d second interval)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s available)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(empty)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(no interfaces attached)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Additional Field --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Please choose --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- custom --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "1 Minute Load:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "15 Minute Load:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "5 Minute Load:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS query port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS server port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"DNS servers will be queried in the " -"order of the resolvfile" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-Address" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-Netmask" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-Address or Network " -"(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED Configuration" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED Name" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-Address" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Max. DHCP leases" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Max. EDNS0 packet size" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Max. concurrent queries" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "ARP retry threshold" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM Bridges" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM Virtual Channel Identifier (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM Virtual Path Identifier (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "ATM device number" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Access Concentrator" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Access Point" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Actions" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Active IPv4-Routes" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Active IPv6-Routes" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Active Connections" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Add" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "Add local domain suffix to names served from hosts files" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Add new interface..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Additional Hosts files" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Address" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Address to access local relay bridge" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administration" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Advanced Settings" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Alert" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "Allow SSH password authentication" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Allow all except listed" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Allow listed only" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Allow localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "Allow remote hosts to connect to local SSH forwarded ports" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Allow root logins with password" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Allow the root user to login with password" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antenna 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antenna 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Any zone" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Assign interfaces..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Associated Stations" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Authentication" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Authoritative" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Authorization Required" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Auto Refresh" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Available" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Average:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Back" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Back to Overview" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Back to configuration" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Back to overview" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Back to scan results" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Backup / Flash Firmware" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Backup file list" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Bad address specified!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Bitrate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Bogus NX Domain Override" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Bridge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Bridge interfaces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Bridge unit number" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Bring up on boot" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Buffered" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU usage (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Cancel" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Chain" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Changes" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Changes applied." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Changes the administrator password for accessing the device" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Channel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Check" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Checksum" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Cipher" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Client" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "Client ID to send when requesting DHCP" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Close list..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Collecting data..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Command" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Common Configuration" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Configuration" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Confirmation" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Connect" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Connected" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Connection Limit" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Connections" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Country" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Country Code" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Cover the following interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Cover the following interfaces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Create / Assign firewall-zone" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Create Interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Create a bridge over multiple interfaces" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Critical" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Cron Log Level" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Custom Interface" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Customizes the behaviour of the device LEDs if possible." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP Server" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP and DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP client" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP-Options" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "DNS forwardings" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Debug" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Default %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Default gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Default state" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Define a name for this network." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Delete" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Delete this network" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Description" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Destination" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Device" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Device Configuration" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnostics" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Directory" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Disabled" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Distance Optimization" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Distance to farthest network member in meters." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diversity" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Domain required" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Don't forward DNS-Requests " -"without DNS-Name" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"Dynamic DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP-Method" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Edit" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Enable STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Enable/Disable" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Enabled" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Enables the Spanning Tree Protocol on this bridge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Encryption" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Error" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Ethernet Adapter" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Ethernet Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Filesystem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filter private" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filter useless" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Firewall Settings" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Firewall Status" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Flash Firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Force" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Fragmentation Threshold" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Frame Bursting" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "General Setup" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Go to relevant configuration page" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Hang Up" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Hide ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Host entries" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "Host-IP or Network" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Hostname" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Hostnames" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP address" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identity" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ignore /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignore interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignore resolve file" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "In" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Initscript" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Initscripts" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfaces" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Invalid input value" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Invalid username and/or password! Please try again." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"It appears that you try to flash an image that does not fit into the flash " -"memory, please verify the image file!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Join Network" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Kernel Log" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Key" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Kill" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Language" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Leasefile" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Leasetime remaining" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Limit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Link On" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Load" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Local Time" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Localise queries" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Log queries" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Login" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Logout" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "MAC-Address Filter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-Filter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "MAC-List" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Memory" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Memory usage (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metric" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Mode" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Modem device" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Mount Point" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Mount Points" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Mounted file systems" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Name" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Name of the new network" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigation" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Network" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "No rules in this chain." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Noise" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Options" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Out" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Overview" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Owner" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "PPPoA Encapsulation" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Packets" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Password" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Password authentication" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Password of Private Key" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Path to CA-Certificate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Path to Private Key" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Perform reboot" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Physical Settings" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pkts." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Please enter your username and password." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Policy" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Prevents client-to-client communication" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Proceed" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Processes" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protocol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTS Threshold" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Read /etc/ethers to configure the DHCP-Server" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Reboot" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Reboots the operating system of your device" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Receive" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Receiver Antenna" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "References" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Remove" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Repeat scan" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Replace entry" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Reset" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Reset Counters" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Restart" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Restart Firewall" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Restore backup" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Revert" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Routes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Save" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Save & Apply" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Scan" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Scheduled Tasks" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Separate Clients" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Services" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Signal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Size" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Skip" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Skip to content" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Skip to navigation" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Slot time" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Source" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Start" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Start priority" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Static IPv4 Routes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Static IPv6 Routes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Static Leases" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Static Routes" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Status" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Stop" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Strict order" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Submit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "System" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "System Log" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Table" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Target" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Terminate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"The filesystem that was used to format the memory (e.g. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "The following changes have been reverted" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "The following rules are currently active on this system." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    Wait a " -"few minutes until you try to reconnect. It might be necessary to renew the " -"address of your computer to reach the device again, depending on your " -"settings." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Theme" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"This is the only DHCP in the local network" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "This is the system crontab in which scheduled tasks can be defined." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"This list gives an overview over currently running system processes and " -"their status." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "This page gives an overview over currently active network connections." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "This section contains no values yet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Timezone" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Traffic" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Transfer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Transmission Rate" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Transmit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Transmit Power" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Transmitter Antenna" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Type" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Unsaved Changes" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Uploaded File" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Uptime" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Use /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Used" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Username" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM Mode" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Wireless Adapter" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Wireless Network" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Wireless Overview" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Wireless Security" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "creates a bridge over specified interface(s)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "disable" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"file where given DHCP-leases will be stored" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "if target is a network" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "local DNS file" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "unspecified -or- create:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Back" - -#~ msgid "Design" -#~ msgstr "Design" - -#~ msgid "Available packages" -#~ msgstr "Available packages" - -#~ msgid "Download and install package" -#~ msgstr "Download and install package" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Find package" -#~ msgstr "Find package" - -#~ msgid "Install" -#~ msgstr "Install" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "OPKG-Configuration" - -#~ msgid "Package name" -#~ msgstr "Package name" - -#~ msgid "Software" -#~ msgstr "Software" - -#~ msgid "Version" -#~ msgstr "Version" - -#~ msgid "none" -#~ msgstr "none" - -#~ msgid "No chains in this table" -#~ msgstr "No chains in this table" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Configuration files will be kept." - -#~ msgid "Activate this network" -#~ msgstr "Activate this network" - -#~ msgid "Backup / Restore" -#~ msgstr "Backup / Restore" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP Leases" - -#~ msgid "help" -#~ msgstr "help" - -#~ msgid "Apply" -#~ msgstr "Apply" - -#~ msgid "Applying changes" -#~ msgstr "Applying changes" - -#~ msgid "Configuration applied." -#~ msgstr "Configuration applied." - -#~ msgid "Action" -#~ msgstr "Action" - -#~ msgid "Buttons" -#~ msgstr "Buttons" - -#~ msgid "Handler" -#~ msgstr "Handler" - -#~ msgid "Maximum hold time" -#~ msgstr "Maximum hold time" - -#~ msgid "Minimum hold time" -#~ msgstr "Minimum hold time" - -#~ msgid "Specifies the button state to handle" -#~ msgstr "Specifies the button state to handle" - -#~ msgid "Leasetime" -#~ msgstr "Leasetime" - -#~ msgid "automatic" -#~ msgstr "automatic" - -#~ msgid "AR Support" -#~ msgstr "AR Support" - -#~ msgid "Background Scan" -#~ msgstr "Background Scan" - -#~ msgid "Compression" -#~ msgstr "Compression" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Disable HW-Beacon timer" - -#~ msgid "Do not send probe responses" -#~ msgstr "Do not send probe responses" - -#~ msgid "Fast Frames" -#~ msgstr "Fast Frames" - -#~ msgid "Maximum Rate" -#~ msgstr "Maximum Rate" - -#~ msgid "Minimum Rate" -#~ msgstr "Minimum Rate" - -#~ msgid "Multicast Rate" -#~ msgstr "Multicast Rate" - -#~ msgid "Outdoor Channels" -#~ msgstr "Outdoor Channels" - -#~ msgid "Regulatory Domain" -#~ msgstr "Regulatory Domain" - -#~ msgid "Separate WDS" -#~ msgstr "Separate WDS" - -#~ msgid "Turbo Mode" -#~ msgstr "Turbo Mode" - -#~ msgid "XR Support" -#~ msgstr "XR Support" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "An additional network will be created if you leave this unchecked." - -#~ msgid "CPU" -#~ msgstr "CPU" diff --git a/luci-base/po/es/base.po b/luci-base/po/es/base.po deleted file mode 100644 index f285ecb9d..000000000 --- a/luci-base/po/es/base.po +++ /dev/null @@ -1,6810 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2019-06-22 17:38-0300\n" -"Last-Translator: José Vicente \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: Poedit 2.2.3\n" -"Language-Team: \n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "%.1f dB" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "%d Bit" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "%d campo(s) inválido(s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "¡%s no está etiquetado en varias VLAN!" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(ventana de %d minutos, intervalo de %d segundos)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s disponible)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(Vacío)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(Sin interfaces conectadas)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Campo adicional --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Por favor elija --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- Personalizado --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- Emparejar por dispositivo --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- Emparejar por etiqueta --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "-- Emparejar por uuid --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "-- Por favor seleccione --" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" -"0 = Sin utilizar el umbral RSSI, 1 = No cambiar el valor predeterminado del " -"controlador" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Carga a 1 minuto:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Carga a 15 minutos:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "ID hexadecimal de 4 caracteres" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "464XLAT (CLAT)" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Carga a 5 minutos:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "Identificador de 6 octetos como una cadena hexadecimal, sin dos puntos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "Habilitar 802.11r (FT)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "Consulta tiempo de espera máximo de Asociación SA de 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "Consulta tiempo de espera de reintento de Asociación SA de 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "Protección de marco de gestión de 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "Tiempo de espera máximo de 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "Tiempo de espera de reintento de 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "Puerto de consultas al DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "Puerto del servidor DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"Los servidores de DNS se consultan " -"en el orden en que aparecen en el archivo resolv" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "Dirección IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "" -"Puerta de enlace IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "Máscara de red IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"Dirección o red (CIDR)IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "" -"Puerta de enlace IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "IPv6-Suffix (hex)" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "Configuración de LEDs" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "Nombre del LED" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "Dirección MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Máximas conexiones DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "Tamaño máximo de paquetes EDNS0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Máx. consultas simultáneas" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    Nota: debe reiniciar manualmente el servicio cron si el archivo crontab " -"estaba vacío antes de editar." - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" -"Se requiere un nuevo inicio de sesión ya que la sesión de autenticación " -"expiró." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "A43C + J43 + A43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "A43C + J43 + A43 + V43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "ADSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "ANSI T1.413" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "Umbral de reintento ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "ATM (Modo de transferencia asíncrono)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "Puente ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "Identificador de canal virtual ATM (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "Identificador de camino virtual ATM (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Los puentes ATM exponen conexiones AAL5 ethernet encapsuladas como " -"interfaces de red Linux que se pueden usar junto a DHCP o PPP para conectar " -"a la red del proveedor." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "Número de dispositivo ATM" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "ID del proveedor del sistema ATU-C" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Concentrador de acceso" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Punto de Acceso" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Acciones" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Rutas IPv4 activas" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Rutas IPv6 activas" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Conexiones activas" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Clientes DHCP activos" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Clientes DHCPv6 activos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Añadir" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "Añadir dirección IPv4..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "Añadir dirección IPv6..." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "Añadir clave" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"Añadir el sufijo de dominio local a los nombres servidos desde el archivo de " -"hosts" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Añadir nueva interfaz..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Archivos de hosts adicionales" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "Archivo de servidores adicionales" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Dirección" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Dirección del puente relé local" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administración" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "Avanzado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Configuración avanzada" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "Potencia de transmisión agregada (ACTATP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Alerta" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "Apodo de interfaz" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "Apodo de \"%s\"" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "Todos los servidores" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" -"Asigna direcciones IP secuencialmente, comenzando desde la dirección más " -"baja disponible" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "Asignar IPs secuencialmente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Permitir autenticación de contraseña via SSH" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" -"Permitir que el modo AP desconecte los clientes por una condición de ACK bajo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Permitir a todos excepto a los de la lista" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "Permitir tasas de 802.11b heredadas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Permitir a los pertenecientes en la lista" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Permitir host local" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Permitir que los hosts remotos se conecten a los puertos reenviados SSH " -"locales" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Permitir conexiones a root con contraseña" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Permitir al usuario root conectar con contraseña" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Permitir respuestas en el rango 127.0.0.0/8, por ejemplo para servicios RBL" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "IPs permitidas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "Siempre anunciar el enrutador predeterminado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "Siempre apagado (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "Siempre encendido (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" -"Usará siempre canales de 40MHz incluso si el canal secundario se superpone. " -"¡El uso de esta opción no cumple con IEEE 802.11n-2009!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "Anexo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "Anexo A + L + M (todos)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "Anexo A G.992.1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "Anexo A G.992.2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "Anexo A G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "Anexo A G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "Anexo B (todos)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "Anexo B G.992.1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "Anexo B G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "Anexo B G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "Anexo J (todos)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "Anexo L G.992.3 POTS 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "Anexo M (todos)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "Anexo M G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "Anexo M G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" -"Anuncie como enrutador predeterminado incluso si no hay un prefijo público " -"disponible." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "Dominios DNS anunciados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "Servidores DNS anunciados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "Identidad anónima" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "Monte anónimo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "Swap anónimo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antena 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antena 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Configuración de la antena" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Cualquier zona" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "Aplicar de todos modos" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "Solicitud de aplicar fallida con estado %h" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "Arquitectura" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" -"Asigna una parte de la longitud dada de cada prefijo IPv6 público a esta " -"interfaz" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Asignar interfaces..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" -"Asigna partes de prefijo utilizando este ID de subprefijo hexadecimal para " -"esta interfaz." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Dispositivos conectados" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "Dispositivos" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "Grupo de autenticaciones" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Autenticación" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "Tipo de autenticación" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autorizar" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Autorización requerida" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Autorefrescar" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "Automático" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "Homenet automático (HNCP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" -"Comprobar automáticamente el sistema de archivos para detectar errores antes " -"del montaje" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "Montar automáticamente el sistemas de archivos en hotplug" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "Montar swap automáticamente en hotplug" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "Montar el sistema de archivos automáticamente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "Montar Swap automáticamente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Disponible" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Media:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "B43 + B43C" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "B43 + B43C + V43" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "BR / DMR / AFTR" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Volver" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Volver al resumen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Volver a la configuración" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Volver al resumen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Volver a resultados de la exploración" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Copia de seguridad" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Copia de seguridad / Grabar firmware" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Salvar lista de archivos" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "¡Dirección no válida!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "Banda" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "Intervalo de baliza" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Lista de archivos a los que hacer copia de seguridad. Es una lista de " -"archivos de configuración cambiados por archivos marcados por opkg, archivos " -"esenciales base y los patrones de copia de seguridad definidos por el " -"usuario." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" -"Enlace dinámico a las interfaces en lugar de la dirección del comodín " -"(recomendado como linux predeterminado)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "Interfaz de enlace" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "Enlazar el túnel a esta interfaz (opcional)." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Bitrate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Ignorar dominio falso NX" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Puente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Puentear interfaces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Número de unidad del puente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Iniciar en el arranque" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Controlador WiFi 802.11%s Broadcom" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Controlador WiFi 802.11 BCM%04x" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "En búfer" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" -"Certificado de CA; Si está vacío se guardará después de la primera conexión." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Uso de CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "Llamada fallida" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Cancelar" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "Categoría" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "Precaución: los archivos de configuración serán borrados" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "Precaución: la actualización del sistema será forzada" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Cadena" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "Cambiar contraseña de inicio de sesión" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Cambios" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Cambios aplicados." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "Se revirtieron los cambios." - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Cambie la contraseña del administrador para acceder al dispositivo" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "Cambiando contraseña..." - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Canal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" -"El canal %d no está disponible en el dominio regulatorio %s y se ha ajustado " -"automáticamente a %d." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Comprobar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "Comprobar los sistemas de archivos antes de montar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "Marque esta opción para eliminar las redes existentes de esta radio." - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Comprobación" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "Elegir mtdblock" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Elija la zona del firewall a la que quiere asignar esta interfaz. Seleccione " -"no especificado para remover la interfaz de la zona asociada o " -"rellene el campo crear para definir una zona nueva a la que " -"asignarla." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Elija la red o redes a las que quiere unir esta interfaz WiFi o rellene el " -"campo crear para definir una red nueva." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Cifrado" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "Encapsulación UDP de Cisco" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Pulse \"Generar archivo\" para descargar un archivo .tar con los archivos de " -"configuración actuales." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" -"Haga clic en \"Guardar mtdblock\" para descargar el archivo mtdblock " -"especificado. (NOTA: ¡ESTA FUNCIÓN ES PARA PROFESIONALES!)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Cliente" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "ID de cliente que se enviará al solicitar DHCP" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "Cerrar" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Cerrar las conexiones inactivas tras los segundos dados. Use 0 para una " -"conexión permanente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Cerrar lista..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Un momento..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Comando" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "Comentario" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Configuración común" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" -"Complica los ataques de reinstalación de claves en el lado del cliente al " -"deshabilitar la retransmisión de los marcos de claves EAPOL que se utilizan " -"para instalar claves. Esta solución podría causar problemas de " -"interoperabilidad y reducir la robustez de la negociación de claves, " -"especialmente en entornos con una gran carga de tráfico." - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Configuración" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "Configuración fallida" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "Los archivos de configuración se mantendrán" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "Se ha aplicado la configuración." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "¡La configuración ha sido revertida!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Confirmación" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Conectar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Conectado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Límite de conexión" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "Intento de conexión fallido" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Conexiones" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" -"No se pudo recuperar el acceso al dispositivo después de aplicar los cambios " -"de configuración. Es posible que deba volver a conectarse si modificó la " -"configuración relacionada con la red, como la dirección IP o las " -"credenciales de seguridad WiFi." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "País" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Código de país" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Cubrir interfaz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Cubre los siguientes interfaces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Crear / Asignar zona de firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Crear interfaz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Crear un puente sobre múltiples interfaces" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Crítico" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Nivel de registro de cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Interfaz personalizada" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "Delegado personalizado IPv6-prefix" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" -"Los archivos personalizados (certificados, scripts) pueden permanecer en el " -"sistema. Para evitar esto, primero realice un restablecimiento de fábrica." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "Intervalo de flash personalizado (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Personaliza el comportamiento de los LEDs del dispositivo, si es posible." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "Cliente DAE" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "Puerto DAE" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "Secreto DAE" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Servidor DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP y DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "Cliente DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Opciones de DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "Cliente DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "Modo DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "Servicio DHCPv6" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Reenvíos DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "Etiqueta DNS / FQDN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "DNSSEC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "Comprobación DNSSEC sin firmar" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "Tiempo de espera de inactividad de DPD" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "Dirección DS-Lite AFTR" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "DSL" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "Estado DSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "Modo de línea DSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "Intervalo DTIM" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "Velocidad de datos" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Depuración" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "%d por defecto" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "Ruta predeterminada" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Puerta de enlace predeterminada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "El valor predeterminado es Sin estado + Con estado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Estado por defecto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Definir un nombre para esta red." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Define opciones adicionales de DHCP, por ejemplo " -"\"6,192.168.2.1,192.168.2.2\" que publica diferentes servidores " -"DNS a los clientes." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Eliminar" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "Eliminar clave" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Eliminar esta red" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "Intervalo de mensaje de indicación de tráfico de entrega" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Descripción" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Destino" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Dispositivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Configuración del dispositivo" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "El dispositivo se está reiniciando..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "Dispositivo inalcanzable!" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "Dispositivo inalcanzable! Todavía esperando al dispositivo..." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnósticos" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "Marcar el número" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Directorio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Deshabilitar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Deshabilitar DHCP " -"para esta interfaz." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "Deshabilitar encriptación" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "Deshabilitar el sondeo de inactividad" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "Deshabilitar esta red" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Deshabilitado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "Deshabilitado (predeterminado)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "Desasociarse en un reconocimiento bajo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Descartar respuestas RFC1918 salientes" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "Desconectar" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "Intento de desconexión fallido" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "Descartar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Optimización de distancia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Distancia al miembro de la red mas lejana en metros." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diversidad" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq es un programa que combina un servidor DHCP y un reenviador DNS para Firewalls NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "No guardar respuestas negativas, por ejemplo dominios inexistentes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"No reenviar peticiones que no se puedan responder por servidores de nombres " -"públicos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "No reenviar búsquedas inversas para redes locales" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "¿Realmente quiere eliminar la siguiente clave SSH?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Requerir dominio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Lista blanca de dominios" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "No fragmentar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"No reenviar peticiones de DNS sin " -"un nombre de DNS" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "Abajo" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Descargar copia de seguridad" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "Descargar mtdblock" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "Desplazamiento SNR en sentido descendente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Instancia Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear ofrece acceso SSH y un servidor " -"SCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "Dual-Stack Lite (RFC6333)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"DHCP dinámico" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Túnel dinámico" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Reparte direcciones DHCP dinámicamente a los clientes. Si se deshabilita, " -"sólo se servirá a clientes con direcciones estáticas." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "Longitud de bits EA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Método EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Editar" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" -"Edite los datos de configuración sin procesar anteriores para corregir " -"cualquier error y presione \"Guardar\" para volver a cargar la página." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Editar esta interfaz" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Editar esta red" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Emergencia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Habilitar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" -"Habilitar IGMP " -"Snooping" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Habilitar STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Habilitar actualización dinámica de punto final HE.net" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "Habilitar negociación IPv6" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Habilitar negociación IPv6 en el enlace PPP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Habilitar paso de tramas jumbo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Habilitar cliente NTP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "Habilitar solo DES" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Habilitar servidor TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Habilitar funcionalidad VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "Habilitar botón WPS, requiere WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "Habilitar las medidas correctivas de reinstalación de claves (KRACK)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Habilitar aprendizaje y envejecimiento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "Habilitar la duplicación de paquetes entrantes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "Habilitar la duplicación de paquetes salientes" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" -"Habilita el indicador DF (No fragmentar) de los paquetes de encapsulación." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Habilitar este punto de montaje" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "Habilitar esta red" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Habilitar este swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Habilitar/Deshabilitar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Habilitado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "Habilita el protocolo IGMP Snooping en este puente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" -"Habilita la itinerancia rápida entre los puntos de acceso que pertenecen al " -"mismo dominio de movilidad" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Habilita el protocolo STP en este puente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Modo de encapsulado" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Encriptación" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "Punto final de Host" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "Punto final del puerto" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "Ingrese valor personalizado" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "Ingrese valores personalizados" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Borrando..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Error" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "Segundos errados (ES)" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Adaptador ethernet" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Switch ethernet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "Excluir interfaces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Expandir hosts" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "Esperando %s" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Expira" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"Tiempo de expiración de direcciones dadas, con un mínimo de dos minutos " -"(2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "Externo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "Lista de soporte de clave externa R0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "Lista de soporte de clave externa R1" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Servidor externo de registro del sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Puerto del servidor externo de registro del sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "Protocolo de servidor de registro de sistema externo" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "Opciones de comando SSH adicionales" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "FT sobre DS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "FT sobre The Air" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "Protocolo FT" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" -"Error al confirmar aplicar dentro de %ds. Esperando a que se reviertan los " -"cambios..." - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Archivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Nombre del archivo de imagen de arranque mostrado a los clientes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Sistema de archivos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtro privado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtro inútil" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "La finalización falló" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" -"Encuentre todos los sistemas de archivos actualmente conectados e " -"intercambie y reemplace la configuración con los valores predeterminados " -"según lo que se detectó" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Encontrar y unirse a red" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Terminar" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "Marca de Firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Configuración del Firewall" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Estado del Firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "Archivo de firmware" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Versión del firmware" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Puerto origen fijo para peticiones de DNS salientes" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Grabar firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Grabar imagen..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Grabar nueva imagen de firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Operaciones de grabado" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Grabando..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Forzar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "Forzar modo 40MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Forzar CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Forzar DHCP en esta red aunque se detecte otro servidor." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Forzar TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forzar TKIP y CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "Forzar enlace" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "Forzar actualización" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "Forzar uso de NAT-T" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "No coincide el token del formulario" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Reenviar tráfico DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "Segundos de corrección de errores de reenvío (FECS)" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Reenviar tráfico de difusión" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "Reenviar tráfico de pares de malla" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Modo de reenvío" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Umbral de fragmentación" - -# It should be "Frame Bursting" at once! -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Estallido del marco" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Libre" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" -"Más información sobre las interfaces y los pares de WireGuard en wireguard.com." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Sólo GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Puerta de enlace" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "La dirección de la puerta de enlace es inválida" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Puertos del gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Configuración general" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Configuración general" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "Generar Config" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "Generar PMK localmente" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Generar archivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Controlador WiFi 802.11%s genérico" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" -"La confirmación y la contraseña no coinciden. ¡No se ha cambiado la " -"contraseña!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "Configuración global" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "Opciones globales de red" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Ir a configuración de contraseña..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Ir a la página principal de configuración" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "Grupo de contraseña" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "Invitado" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Contraseña HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "Nombre de usuario HE.net" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "Modo HT (802.11n)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Suspender" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "Errores de código de error de encabezado (HEC)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "Intervalo de ritmo (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Aquí puede configurar los aspectos básicos de su dispositivo, como el nombre " -"del host o la zona horaria." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Ocultar ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "Ocultar cadenas vacias" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "Host" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Entradas de hosts" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Tiempo de espera de expiración del host" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "Dirección IP o red" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "Contenido de la etiqueta Host-Uniq" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Nombre del host" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Nombre del host a enviar cuando se solicite una IP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Nombres de hosts" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "Híbrido" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "Grupo IKE DH" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "Direcciones IP" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "Protocolo IP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Dirección IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "Dirección IP inválida" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "Falta la dirección IP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "Firewall IPv4" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "Conexión IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Dirección IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "Longitud de asignación de IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "Difusión IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "Puerta de enlace IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Máscara de red IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "Red IPv4 en notación de dirección / máscara de red" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "Prefijo IPv4" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Longitud de prefijo IPv4" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "IPv4+IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "Dirección IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "IPv4 en IPv4 (RFC2003)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "Firewall IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "Vecinos de IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "Configuraciones de IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "IPv6 ULA-Prefix" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "Conexión IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Dirección IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "Sugerencia de asignación de IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "Longitud de asignación de IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "Puerta de enlace IPv6" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "Red IPv6 en notación de dirección / máscara de red" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "Prefijo IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Longitud de prefijo IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "Prefijo IPv6 enrutado" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "Sufijo IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "Dirección IPv6" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "IPv6-PD" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-en-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-sobre-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-sobre-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identidad" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "Si está comprobado, 1DES está habilitado" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "Si está marcado, el encriptado estará deshabilitado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Montar el dispositivo por su UUID en vez de un nodo fijo de dispositivo si " -"se especifica" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Montar el dispositivo por la etiqueta de la partición en vez de por el nodo " -"fijo de dispositivo si se especifica" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Si está desmarcado no se configurará una ruta por defecto" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" -"Si está desmarcado las direcciones de servidores DNS ingresadas se ignorarán" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Si su dispositivo no tiene RAM " -"suficiente, los datos no utilizados pueden ser guardados temporalmente en un " -"dispositivo de Swap (swap-device) liberando el espacio que ocupan. Tenga en " -"cuenta que el Swap es un proceso lento porque este método no puede " -"transferir volúmenes de información a alta velocidad tal y como hace la " -"RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ignorar /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Deshabilitar DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignorar el archivo resolve" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Imagen" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Entrada" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" -"Para evitar el acceso no autorizado al sistema, su solicitud ha sido " -"bloqueada. Haga clic en \"Continuar» a continuación para volver a la página " -"anterior." - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Espera de inactividad" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Entrante:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Información" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "Información" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "Fallo de inicialización" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Nombre del script de inicio" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Scripts de inicio" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "Instale \"iputils-traceroute6\" para Traceroute IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Instalar paquete %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Instalar extensiones de protocolo..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interfaz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "La interfaz %q del dispositivo migra automáticamente de %q a %q." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Configuración de la interfaz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Resumen de interfaces" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Reconectando interfaz..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "Nombre de interfaz" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "La interfaz no existe o no está aún conectado." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfaces" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "Interno" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Error interno del servidor" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Inválido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "¡ID VLAN no válido! Sólo se permiten IDs entre %d y %d." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "¡ID VLAN no válido! Sólo se permiten IDs únicos" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "¡Nombre de usuario y/o contraseña no válido/s!. Por favor reintente." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "Aislar clientes" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Parece que está intentando grabar una imagen de firmware mayor que la " -"memoria flash de su equipo. ¡Por favor, verifique el archivo!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "¡Se necesita JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Conectar" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Conectarse a una red: Búsqueda de redes WiFi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "Conectarse a: %q" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Conservar la configuración del router" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Registro del Kernel" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Versión del Kernel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Clave" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Clave #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "KiB" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Matar" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "Servidor L2TP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "Umbral de fracaso en eco LCP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "Intervalo de eco LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Etiqueta" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Idioma" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Idioma y Estilo" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "Latencia" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "Hoja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "Tiempo de expiración" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Archivo de conexiones" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Tiempo de conexión restante" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Deje vacío para autodetectar" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Deje vacío para usar la dirección WAN actual" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Registro de cambios:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Límite de IPs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" -"Limita el servicio de DNS a las subredes de interfaces en las que estamos " -"sirviendo DNS." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "Limita la escucha de estas interfaces, y el bucle de retorno." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "Atenuación de línea (LATN)" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "Modo de línea" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "Estado de línea" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "Tiempo de actividad de línea" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Enlace activado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Lista de servidores DNS a los que " -"enviar solicitudes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" -"Lista de R0KHs en el mismo dominio de movilidad.
    Formato: dirección " -"MAC, identificador NAS, clave de 128 bits como cadena hexadecimal.
    Esta lista se usa para asignar R0KH-ID (Identificador de NAS) a una " -"dirección MAC de destino cuando se solicita la clave PMK-R1 del R0KH que el " -"STA usó durante la Asociación de dominio de movilidad inicial." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" -"Lista de R1KHs en el mismo dominio de movilidad.
    Formato: dirección " -"MAC, R1KH-ID como 6 octetos con dos puntos, clave de 128 bits como cadena " -"hexadecimal.
    Esta lista se utiliza para asignar R1KH-ID a una " -"dirección MAC de destino cuando se envía la clave PMK-R1 desde R0KH. Esta es " -"también la lista de R1KH autorizados en el MD que pueden solicitar claves " -"PMK-R1." - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "Lista de archivos de claves SSH para autenticación" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Lista de dominios a los que se permiten respuestas RFC1918" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "Lista de dispositivos que proporcionan resultados de dominio NX falsos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "Interfaces de escucha" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "Puerto de escucha" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "Escucha solo en la interfaz dada o, si no se especifica, en todas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Puerto de escucha para consultas DNS entrantes" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Carga" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Carga media" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Cargando" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "Cargando claves SSH..." - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "Dirección IP local inválida" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "Dirección IP local para asignar" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Dirección local IPv4" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Dirección local IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "Solo servicio local" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Arranque local" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Hora local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Dominio local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Especificación de dominio local. Los nombres que coinciden con este dominio " -"nunca se reenvían y se resuelven solo desde archivos DHCP o hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Sufijo del dominio local que se añade a los nombres DHCP y a las entradas " -"del archivo de dispositivos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Servidor local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Localice el nombre del host en función de la subred que solicita si hay " -"varias IP disponibles" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Localizar consultas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "Bloqueado en el canal %s utilizado por: %s" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Nivel de registro" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Registrar consultas" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Registro" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Iniciar sesión" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Cerrar sesión" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "Pérdida de segundos de señal (LOSS)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "Dirección inicial más baja como diferencia de la dirección de red." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "MAC" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "Dirección MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Filtro por dirección MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Filtro por dirección MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Lista de direcciones MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "MAP / LW4over6" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "La regla MAP no es válida" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "MD5" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" -"Asegúrate de clonar el sistema de archivos raíz usando algo como los " -"siguientes comandos:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "Manual" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "Max. velocidad de datos alcanzable (ATTNDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "Máximo permitido de intervalo de escucha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Número máximo de clientes DHCP activos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Número máximo de consultas DNS concurrentes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Tamaño máximo de paquetes EDNS.0 paquetes UDP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Segundos máximos de espera a que el módem esté activo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" -"La longitud máxima del nombre es de 15 caracteres, incluido el prefijo de " -"protocolo/puente automático (br-, 6in4-, pppoe-, etc.)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Máximo de conexiones activas." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "Medio" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Memoria" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Uso de RAM (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "ID de malla" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Métrica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "Puerto monitor de espejo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "Puerto fuente de espejo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Extensión de protocolo faltante para %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "Dominio de movilidad" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Modo" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "Modelo" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "Modem predeterminado" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Dispositivo de módem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "Error en la consulta de información del módem" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Espera de inicialización del modem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "Más caracteres" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Entrada de montaje" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Punto de montaje" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Puntos de montaje" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Puntos de montaje - Entrada de montaje" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Puntos de montaje - Entrada de Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Los puntos de montaje definen el directorio en el que un dispositivo de " -"memoria se unirá al sistema del archivos" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "Sistemas de archivos de montaje no configurados específicamente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Opciones de montaje" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Punto de montaje" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "Montaje de Swap no configurado específicamente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Sistemas de archivo montados" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Bajar" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Subir" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "Modo NAT-T" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "Prefijo NAT64" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "NCM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "NDP-Proxy" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "Dominio NT" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Servidores NTP a consultar" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Nombre" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Nombre de la nueva interfaz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Nombre de la nueva red" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navegación" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Máscara de red" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Red" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Utilidades de red" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Imagen de arranque en red" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "Actividad del dispositivo de red (%s)" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "El dispositivo de red no está presente" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Red sin interfaces." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Siguiente »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "No" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "No se ha configurado un servidor DHCP para esta interfaz" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "Sin NAT-T" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "No se han encontrado archivos" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "No hay información disponible" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "No hay delegación de prefijo coincidente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Sin caché negativa" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "No hay red configurada para este dispositivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "No se ha especificado un nombre de red" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "¡Sin contraseña!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "No hay claves públicas presentes todavía." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "No hay reglas en esta cadena." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "Aún no hay resultados de escaneo disponibles ..." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Sin zona asignada" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Ruido" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "Margen de ruido (SNR)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Ruido:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "Errores de CRC no preventivos (CRC P)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "Sin comodín" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Ninguno" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normal" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "No encontrado" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "No asociado" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "No conectado" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "No se inició en el arranque" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "Nota: longitud del nombre de la interfaz" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Aviso" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "NSLookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" -"Número de entradas de DNS en caché (el máximo es 10000, 0 es sin " -"almacenamiento en caché)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "Número de hilos paralelos utilizados para la compresión" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "Contraseña de grupo confusa" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "Contraseña confusa" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "Obtener dirección IPv6" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Retraso de desconexión" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Configure las interfaces de red. Puede hacer puentes con diferentes " -"interfaces, marcando el campo \"Puentear interfaces\" e introduciendo el " -"nombre de las mismas separadas por espacios. También puede usar la notación " -"VLAN, INTERFACE." -"VLANNR (Ej.: eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Retraso de activación" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "¡Debe especificar al menos un nombre de host o dirección MAC!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "¡Uno o más campos contienen valores inválidos!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "Uno o más valores inválidos / requeridos en la pestaña" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "¡Campos vacíos!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Abrir lista..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "OpenConnect (CISCO AnyConnect)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "Frecuencia de operación" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Opción cambiada" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Opción removida" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "Opcional" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" -"Opcional. Marca de 32 bits para los paquetes cifrados salientes. Ingrese el " -"valor en hexadecimal, comenzando con 0x." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" -"Opcional. Valores permitidos: 'eui64', 'random', valor fijo como '::1' o " -"'::1:2'. Cuando se recibe un prefijo IPv6 (como 'a:b:c:d::') desde un " -"servidor delegante, use el sufijo (como '::1') para formar la dirección IPv6 " -"('a:b:c:d::1') para la interfaz." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" -"Opcional. Clave precompartida codificada en base64. Agrega una capa " -"adicional de criptografía de clave simétrica para la resistencia post-" -"cuántica." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "Opcional. Crear rutas para IPs permitidas para este par." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "Opcional. Descripción del par." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" -"Opcional. Host de pares. Los nombres se resuelven antes de abrir la interfaz." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "Opcional. Unidad máxima de transmisión de la interfaz del túnel." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "Opcional. Puerto de pares." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" -"Opcional. Segundos entre mantener mensajes vivos. El valor predeterminado es " -"0 (deshabilitado). El valor recomendado si este dispositivo está detrás de " -"un NAT es 25." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "Opcional. Puerto UDP utilizado para paquetes salientes y entrantes." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Opciones" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Otros:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Salida" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Saliente:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "Interfaz de salida" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "Reemplazar dirección MAC" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "Reemplazar MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "Reemplazar TOS" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "Reemplazar TTL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "Reemplaza el nombre de interfaz predeterminado" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Reemplazar puerta de enlace en las respuestas DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Anula la máscara de red enviada a los clientes. Normalmente se calcula a " -"partir de la subred que se sirve." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "Anular la tabla utilizada para rutas internas" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Descripción general" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Propietario" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "Contraseña PAP/CHAP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "Nombre de usuario PAP/CHAP" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "Código PIN rechazado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "PMK R1 Push" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Encapsulación PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "PPPoSSH" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "Desplazamiento PSID" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "Longitud de PSID-bits" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "PTM/EFM (Modo de transferencia de paquetes)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "¡Se necesita el paquete libiwinfo!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Paquetes" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Parte de zona %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Contraseña" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Autentificación de contraseña" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Contraseña de la Clave Privada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "Contraseña de clave privada interna" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "Seguridad de la contraseña" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "Contraseña2" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "Pegar o arrastrar archivo de clave SSH..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Ruta al Certificado CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Camino al certificado de cliente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Ruta a la Clave Privada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "Ruta al certificado interno de CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "Ruta al certificado del cliente interno" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "Ruta a la clave privada interna" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Pico:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "Dirección IP del par para asignar" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "Falta la dirección del compañero" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "Pares" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "Reenvío secreto perfecto" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Reiniciar" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Realizar restablecimiento" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "Mantener vivo persistente" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Ratio Phy:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Configuración física" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Paq." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Por favor, introduzca su nombre de usuario y contraseña." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Política" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "Intervalo de autorefrezco" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "Intervalo de autorefrezco para consultas de estado en segundos" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Puerto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Estado del puerto:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "Modo de administración de energía" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "Errores preventivos de CRC (CRC P)" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "Preferir LTE" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "Preferir UMTS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "Prefijo delegado" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "Clave precompartida" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"Asumir que el otro estará muerto tras estos fallos de echo LCP, use 0 para " -"ignorar fallos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "Evita escuchar en estas interfaces." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Impide la comunicación entre los clientes" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "Clave privada" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Proceder" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Procesos" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "Prefil" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protocolo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Protocolo de la nueva interfaz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "No está instalado el paquete necesario para utilizar el protocolo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Dar servicio NTP" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Introduzca una nueva red" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "Clave pública" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" -"Las claves públicas permiten los inicios de sesión SSH sin contraseña con " -"una mayor seguridad en comparación con el uso de contraseñas simples. Para " -"cargar una nueva clave en el dispositivo, pegue una línea de clave pública " -"compatible con OpenSSH o arrastre un archivo .pub al campo de " -"entrada." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" -"Prefijo público enrutado a este dispositivo para su distribución a los " -"clientes." - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "QMI Celular" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Calidad" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" -"Consulta todos los servidores DNS " -"disponibles en el enlace" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "Tiempo de vida de la clave R0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "Llavero R1" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "RFC3947 modo NAT-T" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "Umbral RSSI para unirse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Umbral RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "Tasa RX" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Puerto de contabilidad Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Secreto de contabilidad Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Servidor de contabilidad Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Puerto de autentificación Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Secreto de autentificación Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Servidor de autentificación Radius" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" -"Bytes en bruto codificados en hexadecimal. Deje en blanco a menos que su ISP " -"lo requiera" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Leer /etc/ethers para configurar el servidor DHCP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" -"¿Realmente quiere eliminar esta interfaz? La eliminación no se puede " -"deshacer! Es posible que pierda el acceso a este dispositivo si está " -"conectado a través de esta interfaz" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"¿Realmente quiere eliminar esta red WiFi? La eliminación no se puede " -"deshacer! Es posible que pierda el acceso a este dispositivo si está " -"conectado a través de esta red." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "¿Está seguro de restablecer todos los cambios?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "¿Está seguro de querer cambiar el protocolo?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Conexiones en tiempo real" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Gráficos en tiempo real" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Carga en tiempo real" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Tráfico en tiempo real" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Red WiFi en tiempo real" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "Fecha límite de reasociación" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Protección contra reasociación" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Reiniciar" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Reiniciando..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Reiniciar el sistema operativo de su dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Recibir" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Antena Receptora" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "Recomendado. Direcciones IP de la interfaz de WireGuard." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Reconectar esta interfaz" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Referencias" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Relé (relayd)" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Puente relé (relayd)" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Relé entre redes" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Puente relé (relayd)" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Dirección IPv4 remota" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "Dirección IPv4 remota o FQDN" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Remover" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Repetir exploración" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Reemplazar entrada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Cambiar la configuración WiFi" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "Solicitar dirección IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "Solicitud IPv6-prefijo de longitud" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "Requerido" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Requerido para ciertos ISPs, por ejemplo Charter con DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "Requerido. Clave privada codificada en base64 para esta interfaz." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "Requerido. Base64 codificada clave pública de igual." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" -"Requerido. Direcciones IP y prefijos que este par puede usar dentro del " -"túnel. Por lo general, las direcciones IP del túnel del par y las redes que " -"el mismo enruta a través del túnel." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" -"Requiere la versión completa de wpad/hostapd y soporte del controlador de " -"wifi
    (a partir de enero de 2019: ath9k, ath10k, mwlwifi y mt76)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" -"Requiere upstream soporta DNSSEC; Verifique que las respuestas de los " -"dominios no firmados realmente provengan de dominios no firmados" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Reiniciar" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Reiniciar contadores" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Reiniciar a configuraciones predeterminadas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Archivos Resolv y Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Archivo de resolución" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Reiniciar" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Reiniciar Firewall" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "Reiniciar la interfaz de radio" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Restaurar" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Restaurar copia de seguridad" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Mostrar/ocultar contraseña" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Revertir" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "Revertir cambios" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "Error al revertir la solicitud con el estado %h" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "Revirtiendo configuración..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Raíz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Directorio raíz para los archivos servidos por TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "Preparación de la raíz" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "Ruta permitida IPs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "Tipo de ruta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "Servicio de anuncio de enrutador" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Contraseña del router" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Rutas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Las rutas especifican sobre qué interfaz y puerta de enlace se puede llegar " -"a un cierto dispositivo o red." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "Regla" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Comprobar el sistema de archivos antes de montar el dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Comprobar el sistema de archivos" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "SHA256" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "SNR" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Acceso SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "Dirección del servidor SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "Puerto del servidor SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "Nombre de usuario SSH" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "Claves SSH" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "SWAP" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Guardar" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Guardar y aplicar" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "Guardar mtdblock" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "Guardar contenidos mtdblock" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "Guardando llaves..." - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Escanear" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "Error en la solicitud de escaneo" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Tareas programadas" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Sección añadida" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Sección removida" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Vea la página del manual de \"mount\" para detalles" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" -"Seleccione \"Forzar actualización\" para flashear la imagen incluso si falla " -"la verificación del formato de la imagen. ¡Úselo solo si está seguro de que " -"el firmware es correcto y está diseñado para su dispositivo!" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"Enviar peticiones de echo LCP cada intervalo de segundos dado, solo efectivo " -"usado conjuntamente con el umbral de fallo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Aislar clientes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Configuración del servidor" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Nombre de servicio" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Tipo de servicio" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Aplicaciones" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "Sesión expirada" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "Establecer VPN como ruta predeterminada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" -"Configura las propiedades de la interfaz independientemente del operador de " -"enlace (si está configurado, los eventos de detección de operador no invocan " -"los controladores de conexión en caliente)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "Configurar la sincronización del tiempo" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "La configuración de la PLMN falló" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "El modo de operación de ajuste falló" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Configuración del servidor DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "Segundos con errores graves (SES)" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "GI corto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "Preámbulo corto" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Mostrar lista de archivos a resguardar" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "Mostrar cadenas vacias" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Apagar esta interfaz" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Señal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "Atenuación de señal (SATN)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Señal:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Tamaño" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "Tamaño de la caché de consultas DNS" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "Tamaño del dispositivo ZRam en megabytes" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Saltar" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Saltar al contenido" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Saltar a navegación" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Tiempo asignado" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "Software VLAN" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Algunos campos son inválidos, ¡no se pueden guardar!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Objeto no encontrado." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "El servidor encontró un error inesperado." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"No está instalado el soporte para el sysupgrade, la nueva imagen debe " -"grabarse manualmente. Por favor, mire el wiki para instrucciones de " -"instalación específicas." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Origen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Especifica el directorio al que está enlazado el dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" -"Especifica los puertos de escucha de esta instancia de Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Especifica la cantidad de peticiones ARP fallidas hasta suponer muerto un " -"dispositivo" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" -"Especifica la cantidad de segundos a transcurrir hasta suponer muerto un " -"dispositivo" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "Especifique un TOS (Tipo de Servicio)." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" -"Especifique un TTL (Tiempo de vida) para el paquete de encapsulación que no " -"sea el predeterminado (64)." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" -"Especifique una MTU (Unidad de transmisión máxima) distinta de la " -"predeterminada (1280 bytes)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Especifique la clave de encriptación." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Iniciar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Prioridad de inicio" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "Iniciando aplicar configuración..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "Iniciando escaneo de WiFi..." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Arranque" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Rutas IPv4 estáticas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Rutas IPv6 estáticas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Direcciones estáticas" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Rutas estáticas" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Dirección estática" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Las direcciones estáticas se usan para asignar direcciones IP fijas y " -"nombres identificativos de dispositivos a clientes DHCP. También son " -"necesarias para configuraciones de interfaces no dinámicas en las que a cada " -"dispositivo siempre se le quiere dar la misma dirección IP." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "Límite de inactividad de la estación" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Estado" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Detener" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Orden estricto" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "Fuerte" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Enviar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "Suprimir el registro" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "Suprimir el registro de la operación rutinaria de estos protocolos" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Entrada de Swap" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Switch %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Switch %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" -"El Switch %q tiene una topología desconocida: la configuración de VLAN puede " -"no ser precisa." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "Máscara de puerto de Switch" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "Switch VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Intercambiar protocolo" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "Cambiar a la notación de lista CIDR" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "Actividad de switchport (%s)" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "Sincronizar con el servidor NTP" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Sincronizar con el navegador" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Sincronizando..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Sistema" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Registro del sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Propiedades del sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Tamaño del buffer de registro del sistema" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Configuración TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Raíz del servidor TFTP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "Tasa TX" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tabla" - -# Target = Meta --> Objetivo --> Destino? -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Destino" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "Red de destino" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Terminar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"La sección de Configuración del dispositivo ocupa la configuración " -"física del hardware de radio como el canal, la potencia de transmisión o la " -"selección de antena que se comparte entre todas las redes WiFi definidas (si " -"el hardware de radio es capaz de ser multi-SSID). Configuración por red como " -"encriptado o modo de operación se agrupan en Configuración de la " -"interfaz." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"El paquete libiwinfo-lua no está instalado. ¡Debe instalarlo para " -"poder configurar la conectividad WiFi!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" -"La configuración de actualización de punto final de HE.net cambió, ¡ahora " -"debe usar el nombre de usuario simple en lugar de la ID de usuario!" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" -"La dirección IPv4 o el nombre de dominio completo del extremo del túnel " -"remoto." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"El prefijo IPv6 asignado por el proveedor, suele termina con ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Los caracteres permitidos son: A-Z, a-z, " -"0-9 y _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "El archivo de copia de seguridad no parece ser un archivo gzip válido." - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" -"El archivo de configuración no se pudo cargar debido al siguiente error:" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" -"No se pudo conectar al dispositivo dentro de los %d segundos después de " -"aplicar los cambios pendientes, lo que provocó que la configuración se " -"revirtiera por razones de seguridad. Si cree que los cambios de " -"configuración son correctos, proceda de todos modos. Alternativamente, puede " -"descartar esta advertencia y editar los cambios antes de intentar aplicar " -"nuevamente, o revertir todos los cambios pendientes para mantener el estado " -"de configuración actualmente en funcionamiento." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"El archivo de dispositivo de memoria o partición (e.j. /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"El sistema de archivo que fue utilizado para dar formato a la memoria (Ej. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"Imagen recibida. Verifique que la comprobación y tamaño del archivo recibido " -"coinciden con los del original.
    Pulse \"Proceder\" para empezar el " -"grabado." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Los siguientes cambios han sido revertidos." - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Las siguientes reglas están actualmente activas en este sistema." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "La clave pública SSH dada ya se ha agregado." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" -"La clave pública SSH dada no es válida. Por favor, suministre las claves " -"públicas RSA o ECDSA." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "El nombre de red dado no es único" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"El hardware no tiene capacidad de tener varios SSIDs y la configuración " -"existente será reemplazada si continúa." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"Longitud del prefijo IPv4 en bits, el resto se usará en direcciones IPv6." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "Longitud del prefijo IPv6 en bits" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "La dirección IPv4 local sobre la que se crea el túnel (opcional)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"Los puertos de red de este dispositivo se pueden combinar en varias VLANs en las que los ordenadores " -"se pueden comunicar directamente entre ellos. Las VLANs se usan a menudo para separar diferentes " -"segmentos de red. Es común que exista un puerto por defecto para subida " -"hacia una red mayor como internet y el resto se dediquen a la red local." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "Este protocolo necesita estar asignado a un dispositivo" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "¡El token de seguridad enviado no es válido o ya está vencido!" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"El sistema está borrando la partición de configuración y rearrancará cuando " -"termine." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"Escribiendo en la memoria flash.
    ¡NO APAGUE EL DISPOSITIVO!
    " -"Espere unos minutos antes de reconectar. Es posible que tenga que renovar la " -"conexión de su ordenador para poder acceder de nuevo al dispositivo." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "La contraseña del sistema se ha cambiado correctamente." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"El archivo con la imagen de firmware subido no tiene un formato adecuado. " -"Asegúrese de haber elegido la imagen correcta para su plataforma." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Tema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Sin conexiones activas." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "No hay cambios para aplicar." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "¡No hay cambios a revertir!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "¡Sin cambios pendientes!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"No hay dispositivo asignado aún. Por favor, enlace un dispositivo de red en " -"la pestaña \"Configuración física\"" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"No hay contraseñas en este router. Por favor, configure una contraseña para " -"proteger el interfaz web y habilitar SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "Dirección IPv4 del relé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" -"Este archivo puede contener líneas como 'servidor=/dominio/1.2.3.4' o " -"'servidor=1.2.3.4' para dominios específicos o dominantes completos DNS." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"Lista de patrones shell con los archivos y directorios que se deben incluir " -"en un sysupgrade. Los archivos modificados en /etc/config/ y ciertas otras " -"configuraciones se guardarán automáticamente." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" -"Esta es la \"clave de actualización\" configurada para el túnel o la " -"contraseña de la cuenta si no se ha configurado ninguna clave de " -"actualización" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Contenido de /etc/rc.local. Ponga sus propios comandos aquí (antes de 'exit " -"0') para ejecutarlos al final del proceso de inicio." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"Esta es la dirección de punto final asignada por el broker del túnel, suele " -"terminar con ...:2/64" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Este es el único servidor DHCP en la red de área local" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "Este es el nombre de usuario simple para iniciar sesión en la cuenta" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" -"Este es el prefijo que le envía el agente de túneles para que lo utilicen " -"los clientes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "Definición de tareas programadas para crontab." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" -"Esta es normalmente la dirección del PoP más cercano operada por el broker " -"del túnel" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "Procesos del sistema que se están ejecutando actualmente y su estado." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "Conexiones de red activas." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "No hay reglas definidas" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Sincronización horaria" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Sincronización horaria no configurada." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "Intervalo de tiempo para reprogramar GTK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Zona horaria" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "Iniciar sesión…" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Para restaurar los archivos de configuración, debe subir primero una copia " -"de seguridad. Para reiniciar el firmware a sus configuraciones " -"predeterminadas pulse \"Realizar restablecimiento\" (sólo posible con " -"imágenes squashfs)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "Tono" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Total disponible" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Tráfico" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Transferencia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Tasa de transmisión" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Transmitir" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Potencia de transmisión" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Antena transmisora" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Disparador" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Modo de disparador" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "ID de túnel" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Interfaz de túnel" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "Enlace del túnel" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Potencia-TX" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Tipo" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Sólo UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "Dispositivo USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "Puertos USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "No se puede determinar el nombre del dispositivo" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "No se puede determinar la dirección IP externa" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "No se puede determinar la interfaz ascendente" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Imposible repartir" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "No se puede obtener la identificación del cliente" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "No se puede resolver el nombre de host AFTR" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "No se puede resolver el nombre de host del par" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "Segundos no disponibles (UAS)" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Desconocido" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "Error desconocido (%s)" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "No administrado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "Desmontar" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "Clave sin nombre" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Cambios sin aplicar" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "Tipo de MAP no soportado" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "Módem no soportado" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Tipo de protocolo no soportado." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "Arriba" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Suba una imagen compatible con sysupgrade para reemplazar el firmware " -"actual. Puede marcar \"Conservar la configuración del router\" si lo desea " -"(es necesario que la imagen sea compatible)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Subir archivo..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Archivo subido" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Tiempo activo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Usar /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Usar puerta de enlace DHCP" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Usar otros servidores DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Usa códigos de país ISO/IEC 3166 alpha2." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "MTU a usar en el interfaz de túnel" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "TTL a usar en el interfaz de túnel" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "Utilizar como superposición externa (/overlay)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "Utilizar como sistema de archivos raíz (/)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Usar marca de difusión" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "Utilizar la gestión integrada de IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Usar servidores DNS personalizados" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Utilizar la puerta de enlace predeterminada" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Usar métrica de puerta de enlace" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Usar tabla de rutas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Pulse el botón Añadir para insertar una nueva dirección. " -"Dirección MAC identificará el dispositivo, Dirección IPv4 " -"especificará la dirección fija a usar y Nombre del host se asignará " -"como nombre identificativo." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Usado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Espacio de clave usado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" -"Se utiliza para dos propósitos diferentes: RADIUS NAS ID y 802.11r R0KH-ID. " -"No es necesario con WPA normal (2)-PSK." - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "Certificado de usuario (Codificado PEM)" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "Clave de usuario (codificada PEM)" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Nombre de usuario" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "VDSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANs en %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANs en %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "VPN dirección local" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "VPN puerto local" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "Servidor VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "Puerto del servidor VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "Hash SHA1 del certificado del servidor VPN" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "VPNC (CISCO 3000 (y otros) VPN)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "Proveedor" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "Clase de vendedor a enviar cuando solicite DHCP" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Verificar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "Interfaz dinámica virtual" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Sistema abierto WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Clave compartida WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "Contraseña WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Habilitar WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "Contraseña WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"Para el encriptado WPA se necesita que estén instalados \"wpa_supplicant\" " -"para el modo cliente o \"hostapd\" para los modos AP y ad-hoc." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Esperando a que se apliquen los cambios..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Esperando a que termine el comando..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "Esperando a que se aplique la configuración... %ds" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "Esperando por el dispositivo..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Aviso" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "Advertencia: ¡Hay cambios no guardados que se perderán al reiniciar!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "Débil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" -"Cuando se utiliza un PSK, el PMK se puede generar automáticamente. Cuando " -"está habilitada, las siguientes opciones de teclas R0/R1 no se aplican. " -"Deshabilite esto para usar las opciones de teclas R0 y R1." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "Actividad WiFi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "Asociación de clientes de WiFi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "Recepción de datos WiFi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "Transmisión de datos WiFi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "WiFi en (%s)" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "Ancho de banda" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "WireGuard VPN" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "WiFi" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Adaptador WiFi" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Red WiFi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Visión general de WiFi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Seguridad WiFi" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Red WiFi deshabilitada" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Red WiFi no asociada" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Reiniciando red WiFi..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Red WiFi deshabilitada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Red WiFi habilitada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Escribe las peticiones de DNS recibidas en el registro del sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "Escribe el registro del sistema al archivo" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "Si" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Puede habilitar o deshabilitar los scripts de inicio instalados aquí. Los " -"cambios se aplicarán después de que se reinicie el dispositivo.
    " -"Advertencia: Si deshabilitas los scripts de inicio esenciales como " -"\"red\", ¡Tu dispositivo podría volverse inaccesible!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Debe habilitar JavaScript en su navegador o LuCI no funcionará correctamente." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "Algoritmo de compresión ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "Streams de compresión ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "Configuración de ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "Tamaño de ZRam" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "Cualquiera" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "Auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "Puenteado" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "Crear" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "Crear:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "Crea un puente sobre la interfaz o interfaces asociadas" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "Deshabilitar" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "Deshabilitado" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "Expirado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"Archivo en el que se guardarán las direcciones DHCP asignadas" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "Reenviar" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "Full dúplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "Half dúplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "Valor codificado en hexadecimal" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "Oculto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "Modo híbrido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "Si el destino es una red" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "Entrada" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "clave entre 8 y 63 caracteres" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "clave de 5 o 13 caracteres" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "Archivo DNS local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "Minutos" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "WPA/WPA2 mixto" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "No" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "Sin enlace" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "Valor no vacío" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "No presente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "Apagado" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "Encendido" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "uno de: -%s" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "Abierto" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "Salida" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "Overlay" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "Valor decimal positivo" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "Valor entero positivo" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "Aleatorio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "Modo relé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "Enrutado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "Seg" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "Modo servidor" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "Con estado solamente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "Sin estado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "Sin estado + Con estado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "Etiquetado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "Unidades de tiempo (TUs / 1.024 ms) [1000-65535]" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "Valor único" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "Desconocido" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "Ilimitado" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "No especificado" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "No especificado -o- crear:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "Desetiquetado" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "Dirección IP válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "Dirección IP válida o prefijo" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "IPv4 válido CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "Dirección IPv4 válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "Dirección IPv4 o red válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "Dirección IPv4 válida: puerto" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "Red IPv4 válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "IPv4 válido o IPv6 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "Valor de prefijo IPv4 válido (0-32)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "IPv6 válido CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "Dirección IPv6 válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "Dirección IPv6 válida o prefijo" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "ID de host IPv6 válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "Red IPv6 válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "Valor de prefijo IPv6 válido (0-128)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "dirección MAC válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "Identificador UCI válido" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "Identificador UCI válido, nombre del host o dirección IP" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "Dirección válida: puerto" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "Fecha válida (AAAA-MM-DD)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "Valor decimal válido" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "clave WEP hexadecimal válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "clave hexadecimal WPA válida" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "host válido: puerto" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "Nombre de host válido" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "Nombrel de host válido o dirección IP" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "Valor entero valido" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "Red válida en notación de dirección/máscara de red" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "Dígito de teléfono válido (0-9, \"*\", \"#\", \"!\" o \".\")" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "puerto válido o rango de puertos (port1-port2)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "Valor de puerto válido" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "Tiempo válido (HH: MM: SS)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "Valor entre %d y %d caracteres" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "Valor entre %f y %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "Valor mayor o igual a %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "Valor menor o igual a %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "Valor con al menos %d caracteres" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "Valor con un máximo de %d caracteres" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "Si" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Volver" - -#~ msgid "Flashmemory write access (%s)" -#~ msgstr "Acceso de escritura de memoria flash (%s)" - -#~ msgid "" -#~ "one of:\n" -#~ " - %s" -#~ msgstr "" -#~ "uno de:\n" -#~ " - %s" - -#~ msgid "" -#~ "Your Internet Explorer is too old to display this page correctly. Please " -#~ "upgrade it to at least version 7 or use another browser like Firefox, " -#~ "Opera or Safari." -#~ msgstr "" -#~ "Su Internet Explorer es demasiado viejo para mostrar esta página " -#~ "correctamente. Actualícelo al menos a la versión 7 o use otro navegador " -#~ "como Firefox, Opera o Safari." - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "Claves públicas SSH. Ponga una por línea." - -#~ msgid "Password successfully changed!" -#~ msgstr "¡Contraseña cambiada!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Error desconocido, ¡no se ha cambiado la contraseña!" - -#~ msgid "Design" -#~ msgstr "Diseño" - -#~ msgid "Available packages" -#~ msgstr "Paquetes disponibles" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Mostrar sólo paquete que contienen" - -#~ msgid "Download and install package" -#~ msgstr "Descargar e instalar paquete" - -#~ msgid "Filter" -#~ msgstr "Filtro" - -#~ msgid "Find package" -#~ msgstr "Buscar paquete" - -#~ msgid "Free space" -#~ msgstr "Espacio libre" - -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgid "Installed packages" -#~ msgstr "Paquetes instalados" - -#~ msgid "No package lists available" -#~ msgstr "No hay listas de paquetes disponibles" - -#~ msgid "OK" -#~ msgstr "Aceptar" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Configuración de OPKG" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Las listas de paquetes tienen más de 24 horas" - -#~ msgid "Package name" -#~ msgstr "Nombre del paquete" - -#~ msgid "Software" -#~ msgstr "Instalación de programas" - -#~ msgid "Update lists" -#~ msgstr "Actualizar listas" - -#~ msgid "Version" -#~ msgstr "Versión" - -#~ msgid "none" -#~ msgstr "ninguno" - -#~ msgid "Disable DNS setup" -#~ msgstr "Desactivar configuración de DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 e IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Sólo IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Sólo IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Tiempo de validación de cesión" - -#~ msgid "Multicast address" -#~ msgstr "Dirección multicast" - -#~ msgid "Protocol family" -#~ msgstr "Familia de procolo" - -#~ msgid "No chains in this table" -#~ msgstr "No hay cadenas en esta tabla" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Se mantendrán los ficheros de configuración." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Nota: se borrarán los ficheros de configuración." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Activar esta red" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Controlador inalámbrico 802.11b Hermes" - -#~ msgid "Interface is shutting down..." -#~ msgstr "Parando interfaz..." - -#~ msgid "Interface reconnected" -#~ msgstr "Interfaz reconectado" - -#~ msgid "Interface shut down" -#~ msgstr "Interfaz detenido" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Controlador inalámbrico 802.11n Prism2/2.5/3" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "Controlador inalámbrico 802.11%s RaLink" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "¿Está seguro de apagar la interfaz \"%s\"?.\n" -#~ "Puede perder el acceso a este dispositivo si está conectado por interfaz." - -#~ msgid "Reconnecting interface" -#~ msgstr "Reconectando la interfaz" - -#~ msgid "Shutdown this network" -#~ msgstr "Apagar esta red" - -#~ msgid "Wireless restarted" -#~ msgstr "Red inalámbrica rearrancada" - -#~ msgid "Wireless shut down" -#~ msgstr "Apagando red inalámbrica" - -#~ msgid "DHCP Leases" -#~ msgstr "Cesiones DHCP" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "Cesiones DHCPv6" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "¿Está seguro de borrar esta interfaz?. ¡No será posible deshacer el " -#~ "borrado!\n" -#~ "Puede perder el acceso a este dispositivo si está conectado por esta " -#~ "interfaz." - -#, fuzzy -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "¿Está seguro de querer apagar esta red?.\n" -#~ "Puede perder el acceso a este dispositivo si está conectado por esta red." - -#~ msgid "Sort" -#~ msgstr "Ordenar" - -#~ msgid "help" -#~ msgstr "ayuda" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "Estado de la WAN IPv4" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "Estado de la WAN IPv6" - -#~ msgid "Apply" -#~ msgstr "Aplicar" - -#~ msgid "Applying changes" -#~ msgstr "Aplicando cambios" - -#~ msgid "Configuration applied." -#~ msgstr "Configuración establecida." - -#~ msgid "Save & Apply" -#~ msgstr "Guardar y aplicar" - -#~ msgid "The following changes have been committed" -#~ msgstr "Se han hecho los siguientes cambios" - -#~ msgid "There are no pending changes to apply!" -#~ msgstr "¡No hay cambios pendientes!" - -#~ msgid "Action" -#~ msgstr "Acción" - -#~ msgid "Buttons" -#~ msgstr "Botones" - -#~ msgid "Handler" -#~ msgstr "Manejador" - -#~ msgid "Maximum hold time" -#~ msgstr "Pausa máxima de transmisión" - -#~ msgid "Minimum hold time" -#~ msgstr "Pausa mínima de espera" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "Ruta al ejecutable que maneja el evento button" - -#~ msgid "Specifies the button state to handle" -#~ msgstr "Especifica el estado de botón a manejar" - -#~ msgid "This page allows the configuration of custom button actions" -#~ msgstr "Configuración de acciones personalizadas para los botones" - -#~ msgid "Leasetime" -#~ msgstr "Tiempo de cesión" - -#, fuzzy -#~ msgid "automatic" -#~ msgstr "estático" - -#~ msgid "AR Support" -#~ msgstr "Soporte a AR" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Controlador inalámbrico 802.11%s Atheros" - -#~ msgid "Background Scan" -#~ msgstr "Exploración en segundo plano" - -#~ msgid "Compression" -#~ msgstr "Compresión" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Desactivar el temporizador de baliza hardware" - -#~ msgid "Do not send probe responses" -#~ msgstr "No enviar respuestas de prueba" - -#~ msgid "Fast Frames" -#~ msgstr "Tramas rápidas" - -#~ msgid "Maximum Rate" -#~ msgstr "Ratio Máximo" - -#~ msgid "Minimum Rate" -#~ msgstr "Ratio mínimo" - -#~ msgid "Multicast Rate" -#~ msgstr "Ratio multicast" - -#~ msgid "Outdoor Channels" -#~ msgstr "Canales al aire libre" - -#~ msgid "Regulatory Domain" -#~ msgstr "Dominio Regulador" - -#~ msgid "Separate WDS" -#~ msgstr "WDS aislado" - -#~ msgid "Static WDS" -#~ msgstr "WDS estático" - -#~ msgid "Turbo Mode" -#~ msgstr "Modo Turbo" - -#~ msgid "XR Support" -#~ msgstr "Soporte de XR" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "Se creará una red adicional si deja esto desmarcado." - -#~ msgid "Join Network: Settings" -#~ msgstr "Unirse a Red: Configuración" - -#~ msgid "CPU" -#~ msgstr "CPU" - -#~ msgid "Port %d" -#~ msgstr "Puerto %d" - -#~ msgid "Port %d is untagged in multiple VLANs!" -#~ msgstr "¡El puerto %d está desmarcado en múltiples VLANs!" - -#~ msgid "VLAN Interface" -#~ msgstr "Interfaz VLAN" diff --git a/luci-base/po/fr/base.po b/luci-base/po/fr/base.po deleted file mode 100644 index e03a5dd43..000000000 --- a/luci-base/po/fr/base.po +++ /dev/null @@ -1,6674 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2013-12-22 17:11+0200\n" -"Last-Translator: goofy \n" -"Language-Team: LANGUAGE \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: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(fenêtre de %d minutes, intervalle de %d secondes)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s disponible)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(vide)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(pas d'interface connectée)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Champ Supplémentaire --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Choisir --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- autre --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Charge sur 1 minute :" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Charge sur 15 minutes :" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Charge sur 5 minutes :" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "Port des requêtes DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "Port du serveur DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"Les serveurs DNS seront
    interrogés dans l'ordre du fichier de résolution" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "Adresse IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "Passerelle IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "Masque réseau IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"Adresse ou réseau IPv6 " -"(notation CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "Passerelle IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "" -"Configuration des DELs" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "Nom de la DEL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "Adresse MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Nombre de baux DHCP maximum" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"taille maximum des paquets EDNS0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Maximum de requêtes concurrentes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "Niveau de ré-essai ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "Ponts ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" -"Identifiant de canal virtuel (VCI) ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" -"Identifiant de chemin virtuel (VPI) ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Les ponts ATM présentent l'Ethernet encapsulé dans des connexions AAL5 comme " -"des interfaces réseau virtuelles Linux qui peuvent être utilisées avec DHCP " -"ou PPP pour se connecter au réseau du fournisseur d'accès." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "Numéro de périphérique ATM" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Concentrateur d'accès" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Point d'accès" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Actions" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Routes IPv4 actives" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Routes IPv6 actives" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Connexions actives" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Bails DHCP actifs" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Bails DHCPv6 actifs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Ajouter" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"Ajouter le suffixe du domaine local aux noms résolus d'après le fichier hosts" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Ajout d'une nouvelle interface..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Fichiers hosts supplémetaires" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Adresse" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Adresse pour accéder au pont-relais local" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administration" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Paramètres avancés" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Alerte" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Autoriser l'authentification SSH par mot " -"de passe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Autoriser tout sauf ce qui est listé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Autoriser seulement ce qui est listé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Autoriser l'hôte local" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Permettre à des hôtes distants de se conecter à des ports SSH locaux " -"correspondants (« forwarded »)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Autoriser les connexions administrateur avec mot de passe" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" -"Autoriser l'utilisateur root à se connecter avec un mot de passe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Autorise les réponses de l'amont dans la plage 127.0.0.0/8, par ex. pour les " -"services RBL" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antenne 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antenne 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Configuration de l'antenne" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "N'importe quelle zone" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Affecte les interfaces…" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Équipements associés" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Authentification" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autoritaire" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Autorisation requise" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Rafraîchissement automatique" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Disponible" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Moyenne :" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Retour" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Retour à la vue générale" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Retour à la configuration" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Retour à la vue générale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Retour aux résultats de la recherche" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Sauvegarder" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Sauvegarde / Mise à jour du micrologiciel" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Liste des fichiers de sauvegarde" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Adresse spécifiée incorrecte!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Voici la liste des fichiers à sauvegarder. Elle est constituée des fichiers " -"de configuration modifiés marqués par opkg, des fichiers de base essentiels, " -"et des motifs de sauvegarde définis par l'utilisateur." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Débit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Contourne les «  NX Domain » bogués" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Pont" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Interfaces en pont" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Numéro d'unité du pont" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "L'activer au démarrage" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Contrôleur sans fil Broadcom 802.11%s" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Contrôleur sans fil Broadcom BCM%04x 802.11" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Temporisé" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Utilisation CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Annuler" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Chaîne" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Changements" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Changements appliqués." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Change le mot de passe administrateur pour accéder à l'équipement" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Canal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Vérification" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Somme de contrôle" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Choisissez la zone de pare-feu à laquelle vous voulez affecter cette " -"interface. Sélectionnez non précisé pour retirer l'interface de la " -"zone associée, ou remplissez le champ créer pour définir une " -"nouvelle zone et y inclure cette interface." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Choisissez le(s) réseau(x) que vous souhaitez attachez a cette interface " -"sans-fil ou remplissez le créer champ pour définir un nouveau " -"réseau. " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Code de chiffrement" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Cliquer sur \"Construire l'archive\" pour télécharger une archive tar des " -"fichiers de la configuration actuelle." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Client" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "Identifiant client à envoyer dans les requêtes DHCP" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Fermer une connexion inactive après le délai donné en secondes, mettre 0 " -"pour garder les connexions" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Fermer la liste…" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Récupération de données..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Commande" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Configuration commune" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Configuration" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Confirmation" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Se connecter" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Connecté" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Limite de connexion" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Connexions" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Pays" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Code pays" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Couvre l'interface suivante" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Couvre les interfaces suivantes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Créer / Assigner une zone du pare-feu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Créer une interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Créer un pont par dessus plusieurs interfaces" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Critique" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Niveau de journalisation de Cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Interface spécifique" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Personnaliser le comportement des DELs si possible." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Serveur DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP et DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "client DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Options DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "transmissions DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Deboguage" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "%d par défaut" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Passerelle par défaut" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "État par défaut" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Donne un nom à ce réseau." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Définir des options DHCP supplémentaires, par exemple " -"\"6,192.168.2.1,192.168.2.2\" qui publie différents serveurs " -"DNS à ses clients." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Effacer" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Supprimer ce réseau" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Description" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Destination" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Équipement" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Configuration de l'équipement" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnostics" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Répertoire" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Désactiver" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Désactiver DHCP " -"pour cette interface." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Désactivé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Jeter les réponses en RFC1918 amont" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Optimisation de la distance" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Distance au membre du réseau le plus éloigné, en mètres." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diversité" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq est un serveur DHCP combiné à un relais DNS pour les pare-feu NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" -"Ne pas mettre en cache les réponses négatives, par ex. pour des domaines " -"inexistants" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Ne pas transmettre les requêtes qui ne peuvent être résolues par les " -"serveurs de noms publics" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" -"Ne pas transmettre les requêtes de recherche inverse pour les réseaux locaux" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Domaine nécessaire" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Liste blanche de domaines" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Ne pas transmettre de requêtes DNS " -"sans nom DNS" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Télécharger la sauvegarde" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Session Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear est un serveur SSH et intègre " -"un serveur SCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"DHCP dynamique" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Tunnel dynamique" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Alloue dynamiquement des adresses pour les clients du DHCP. Si désactivé, " -"seuls les clients ayant des baux statiques seront gérés." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Méthode EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Éditer" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Éditer cette interface" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Éditer ce réseau" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Urgence" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Activer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Activer le protocole STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Activer la mise à jour dynamique de l'extrémité du tunnel chez HE.net" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Activer la négociation IPv6 sur le lien PPP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Activer la circulation de très grandes trames (Jumbo)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Activer client NTP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Activer le serveur TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Acviter la gestion des VLANs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Activer l'apprentissage et la péremption" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Activer ce montage" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Activer cette mémoire d'échange (swap)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Activer/Désactiver" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Activé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" -"Activer le protocole STP sur " -"ce pont" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Mode encapsulé" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Chiffrement" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Effacement…" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Erreur" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Module Ethernet" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Commutateur Ethernet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Étendre le nom d'hôte" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Expire" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"Délai d'expiration des adresses allouées, le minimum est de 2 minutes " -"(2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Serveur distant de journaux système" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Port du serveur distant de journaux système" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Fichier" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Nom de fichier d'une image de démarrage publiée aux clients" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Système de fichiers" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtrer les requêtes privées" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtrer les requêtes inutiles" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Cherche et rejoint un réseau" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Terminer" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Pare-feu" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Paramètres du pare-feu" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "État du pare-feu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Version du micrologiciel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Port source fixe pour les requêtes DNS sortantes" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Mise à jour du micrologiciel" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Écriture de l'image…" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Écrire l'image du nouveau micrologiciel" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Opérations d'écriture" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Écriture…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Forcer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Forcer CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Force le DHCP sur ce réseau même si un autre serveur est détecté." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Forcer TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forcer TKIP et CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Transmettre le trafic DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Transmettre le trafic de diffusion" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Mode de transmission" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Seuil de fragmentation" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Rafale de trames" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Libre" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "Ghz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "seulement GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Passerelle" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Ports de la passerelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Paramètres généraux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Configuration générale" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Construire l'archive" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Contrôleur sans fil générique 802.11%s" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" -"La confirmation du nouveau mot de passe ne correspond pas, changement " -"annulé !" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Aller à la configuration du mot de passe…" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Aller à la page de configuration correspondante" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Mot de passe HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Signal (HUP)" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Ici, vous pouvez configurer les aspects basiques de votre routeur comme son " -"nom ou son fuseau horaire." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Cacher le ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Entrées d'hôtes" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Délai d'expiration pour les hôtes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "adresse IP ou réseau" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Nom d'hôte" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Nom d'hôte à envoyer dans une requête DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Noms d'hôtes" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Adresse IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "Pare-feu IPv4" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Adresse IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "Diffusion IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "Passerelle IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Masque-réseau IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "longueur du préfixe IPv4" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "Adresse IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "Pare-feu IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Adresse IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "Passerelle IPv6" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "Préfixe IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "longueur du préfixe IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "Adresse IPv6" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6 dans IPv4 (RFC 4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6 sur IPv4 (6ème)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6 sur IPv4 (6 vers 4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identité" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Monte le périphérique identifié par cet UUID au lieu d'un nom de " -"périphérique fixe" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Monte le périphérique identifié par cette étiquette au lieu d'un nom de " -"périphérique fixe" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Décoché, aucune route par défaut n'est configurée" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "Décoché, les adresses des serveurs DNS publiés sont ignorées" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Si la mémoire physique n'est pas en quantité suffisante, les données " -"inutilisées peuvent être temporairement transférée sur une partition " -"d'échange, relevant la quantité de RAM disponible. Ce processus est lent car " -"la mémoire d'échange ne peut être accédée aux taux de transfert de la RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ignorer /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignorer l'interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignorer le fichier de résolution" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Image" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Entrée" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Délai d'inactivité" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Intérieur :" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Info" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Script d'initialisation" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Scripts d'initialisation" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Installer le paquet %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Installation des extensions de protocole…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Configuration de l'interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Vue d'ensemble de l'interface" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "L'interface se reconnecte…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "L'interface n'est pas présente ou pas encore connectée." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfaces" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Erreur Serveur Interne" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Erreur : donnée entrée invalide" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" -"Identifiant VLAN invalide !Seuls les IDs entre %d et %d sont autorisés." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" -"Identifiant VLAN donné invalide ! Seuls les identifiants uniques sont " -"autorisés" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Nom d'utilisateur et/ou mot de passe invalides ! Réessayez !" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Il semble que vous essayez de programmer votre routeur avec une image qui ne " -"tient pas dans sa mémoire flash, vérifiez s'il vous plait votre fichier-" -"image !" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "Nécessite un Script Java !" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Rejoindre un réseau" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Rejoindre un réseau : recherche des réseaux sans-fil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Garder le paramètrage" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Journal du noyau" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Version du noyau" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Clé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Clé n° %d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Tuer" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "Serveur L2TP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "Seuil d'erreur des échos LCP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "Intervalle entre échos LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Étiquette" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Langue" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Langue et apparence" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Fichier de baux" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Durée de validité" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Laisser vide pour l'auto-détection" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Laisser vide pour utiliser l'adresse WAN actuelle" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Légende :" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Limite" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Lien établi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Liste des serveurs auquels sont transmis les requêtes DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Liste des domaines où sont permises les réponses de type RFC1918" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" -"Liste des hôtes qui fournissent des résultats avec des « NX domain » bogués" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "Écouter seulement sur l'interface spécifié, sinon sur toutes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Port d'écoute des requêtes DNS entrantes" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Charger" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Charge moyenne" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Chargement" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Adresse IPv4 locale" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Adresse IPv6 locale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Démarrage local" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Heure Locale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Domaine local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Domaine local à préciser. Les noms correspondants à ce domaine ne sont " -"jamais transmis, mais résolus seulement depuis le serveur DHCP ou le fichier " -"Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Suffixe du domaine local ajouté aux noms du serveur DHCP et du fichier Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Serveur local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Trouve le nom d'hôte suivant le sous-réseau d'où vient la requête si " -"plusieurs adresses IPs sont possibles" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Localiser les requêtes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Niveau de journalisation" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Journaliser les requêtes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Journalisation" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Connexion" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Déconnexion" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" -"Adresse allouée la plus basse, spécifiée par un décalage à partir de " -"l'adresse réseau." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "Adresse MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Filtrage par adresses MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Filtrage par adresses MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Liste des adresses MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Nombre maximum de baux DHCP actifs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Nombre maximum de requêtes DNS au même moment" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Taille maximum autorisée des paquets UDP EDNS.0" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Délai d'attente maximum que le modem soit prêt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Nombre maximum d'adresses allouées." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Mémoire" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Utilisation Mémoire (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metrique" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Extention de protocole manquante pour le proto %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Mode" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Interface Modem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Délai max. d'initialisation du modem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Montage" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Point de montage" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Point de montage" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Points de montage - élément à monter" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Points de montage - partition d'échange" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Les points de montage définissent l'attachement d'un périphérique au système " -"de fichier" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Options de montage" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Point de montage" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Systèmes de fichiers montés" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Descendre" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Monter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Serveurs NTP candidats" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Nom" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Nom de la nouvelle interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Nom du nouveau réseau" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigation" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Masque de réseau" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Réseau" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Utilitaires réseau" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Image de démarrage réseau" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Réseau sans interfaces." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Prochain »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Aucun serveur DHCP configuré sur cette interface" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Aucun fichier trouvé" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Information indisponible" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Pas de cache négatif" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Ce périphérique n'a aucune adresse configurée" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Aucun nom de réseau donné" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Pas de mot de passe positionné !" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Aucune règle dans cette chaîne" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Aucune zone attribuée" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Bruit" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Bruit :" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Vide" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normal" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Pas trouvé" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Pas associé" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Non connecté" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Note" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Durée éteinte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Dans cette page vous pourrez configurer les interfaces réseaux. Vous pouvez " -"bridger différentes interfaces en cochant le champ \"bridger les interfaces" -"\" et en saisissant les noms des interfaces réseau séparées par des espaces. " -"Vous pouvez aussi utiliser la notation VLAN, INTERFACE.VLANNB (ex : eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Durée allumée" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Il faut indiquer un nom d'hôte ou une adresse MAC !" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Un ou plusieurs champs contiennent des valeurs incorrectes !" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Un ou plusieurs champs n'ont pas de valeur !" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Ouvrir la liste…" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Option modifiée" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Option retirée" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Options" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Autres :" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Sortie" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Extérieur :" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "Modifier l'adresse MAC" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "Modifier le MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Modifier la passerelle dans les réponses DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Remplacer le masque réseau envoyés aux clients. Il est normalement calculé à " -"partir du sous-réseau géré." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "Modifier la table utilisée pour les routes internes" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Vue d'ensemble" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Propriétaire" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "Mot de passe PAP/CHAP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "Identifiant PAP/CHAP" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "code PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "PPPoA Encapsulation" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Nécessite le paquet libiwinfo !" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Paquets" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Fait partie de la zone %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Mot de passe" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Authentification par mot de passe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Mot de passe de la clé privée" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Chemin de la CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Chemin du certificat-client" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Chemin de la clé privée" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Pic :" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Redémarrer" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Réinitialiser" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Débit de la puce:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Paramètres physiques" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pqts." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Saisissez votre nom d'utilisateur et mot de passe." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Politique" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Statut du port :" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"Suppose que le distant a disparu une fois le nombre donné d'erreurs d'échos " -"LCP ; utiliser 0 pour ignorer ces erreurs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Empêche la communication directe entre clients" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Continuer" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Processus" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protocole" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Protocole de la nouvelle interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "La gestion du protocole n'est pas installée" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Fournir serveur NTP" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Donner un nouveau réseau" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Qualitée" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Seuil RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "Reçu" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "Débit en réception" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Port de la comptabilisation Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Secret de la comptabilisation Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Serveur de la comptabilisation Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Port de l'authentification Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Secret de l'authentification Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Serveur de l'authentification Radius" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "Lire /etc/ethers pour configurer le serveur DHCP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Voulez-vous vraiment supprimer ce réseau sans-fil? L'effacement ne peut être " -"annulé!\n" -"Vous pourriez perdre l'accès à l'équipement si vous y êtes connecté par ce " -"réseau." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Voulez-vous vraiment ré-initialiser toutes les modifications ?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Voulez-vous vraiment changer de protocole ?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Connexions temps-réel" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Graphiques temps-réel" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Charge temps-réel" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Trafic temps-réel" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Qualité de réception actuelle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Protection contre l'attaque « rebind »" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Redémarrage" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Redémarre…" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Redémarrage du système d'exploitation de votre équipement" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Reçoit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Antenne émettrice" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Reconnecter cet interface" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Références" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Relais" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Pont-relais" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Relais entre réseaux" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Pont-relais" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Adresse IPv4 distante" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Désinstaller" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Répéter la recherche" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Remplacer l'entrée" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Remplacer la configuration sans-fil" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Nécessaire avec certains FAIs, par ex. : Charter avec DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Remise à zéro" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Remise à zéro des compteurs" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Ré-initialisation" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Fichiers Resolv et Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Fichier de résolution des noms" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Redémarrer" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Redémarrer le pare-feu" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Restaurer" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Restaurer une sauvegarde" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Montrer/cacher le mot de passe" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Revenir" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Racine" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Répertoire racine des fichiers fournis par TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Mot de passe du routeur" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Routes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Avec les routes statiques vous pouvez spécifier à travers quelle interface " -"ou passerelle un réseau peut être contacté." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" -"Faire un vérification du système de fichiers avant de monter le périphérique" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Faire une vérification du système de fichiers" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Accès SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "Clés SSH" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Sauvegarder" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Sauvegarder et Appliquer" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Scan" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Tâches Régulières" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Section ajoutée" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Section retirée" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Voir le manuel de « mount » pour les détails" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"Envoyer des demandes d'échos LCP à intervalles donnés, en secondes ; utile " -"uniqument associé à un seuil d'erreurs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Isoler les clients" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Paramètres du serveur" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Nom du service" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Type du service" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Services" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "Configurer la synchronisation de l'heure" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Configurer le serveur DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Afficher la liste des fichiers de la sauvegarde actuelle" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Arrêter cet interface" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Signal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Signal :" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Taille" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Passer au suivant" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Skip to content" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Skip to navigation" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Tranche de temps" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Certains champs sont invalides, ne peut sauvegarder les valeurs !" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Désolé, l'objet que vous avez demandé n'as pas été trouvé." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Désolé, le serveur à rencontré une erreur inattendue." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"Désolé, il n'y a pas de gestion de mise à jour disponible, une nouvelle " -"image du micrologiciel doit être écrite manuellement. Reportez-vous S.V.P. " -"au wiki pour connaître les instructions d'installation spécifiques à votre " -"matériel." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Source" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Indique le répertoire auquel le périphérique est rattaché" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Indique le port d'écoute de cette instance Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Indique le nombre de requêtes ARP ratées au delà duquel les hôtes seront " -"supposés disparus" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "Indique le délai après quoi les hôtes seront supposés disparus" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Spécifiez ici la clé secrète de chiffrage." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Démarrer" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Priorité de démarrage" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Démarrage" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Routes IPv4 statiques" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Routes IPv6 statiques" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Baux Statiques" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Routes statiques" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Adresse statique" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Les baux statiques sont utilisés pour donner des adresses IP fixes et des " -"noms symboliques à des clients DHCP. Il sont également nécessaires pour les " -"interfaces sans configuration dynamique où l'on fournit un bail aux seuls " -"hôtes configurés." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Status" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Arrêter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Ordre stricte" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Soumettre" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Élement de partition d'échange" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Commutateur" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Commutateur %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Commutateur %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Protocole du commutateur" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Synchro avec le navigateur" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Synchronisation…" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Système" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Journal système" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Propriétés système" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Taille du tampon du journal système" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP :" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Paramètres TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Racine du serveur TFTP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "Transmis" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "Débit en émission" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Table" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Cible" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Terminer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"La section Configuration de l'équipement couvre les paramètres " -"physiques du matériel radio comme le canal, la puissance d'émission ou la " -"sélection de l'antenne, qui sont partagés entre tous les réseaux sans-fil " -"définis (si le matériel radio gère plusieurs réseaux SSID). Les paramètres " -"dépendant de chaque réseau comme le chiffrage ou le mode de fonctionnement " -"sont groupés dans Configuration de l'interface." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Le paquet libiwinfo-lua n'est pas installé. Vous devez l'installer " -"pour une configuration sans-fil fonctionnelle !" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"Le préfixe IPv6 attribué par le fournisseur, se termine généralement par " -"::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Les caractères autorisés sont : A-Z, a-z, " -"0-9 et _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "Le périphérique de bloc contenant la partition (ex : /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"Le système de fichiers utilisé pour formatter le support de stockage (ex : " -"ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"L'image du micrologiciel a été chargée. Ci-dessous la taille et la somme de " -"contrôle de cette image, comparez-les avec le fichier original pour vous " -"assurer de son intégrité.
    Cliquez sur \"Continuer\" pour lancer la " -"procédure d'écriture." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Les changements suivants ont été annulés" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Les règles suivantes sont actuellement actives sur ce système." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "Le nom de réseau donné n'est pas unique" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"Le matériel ne sait pas gérer plusieurs SSID et la configuration existante " -"sera remplacée si vous continuez." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"La longueur du préfixe IPv4 en bits, le reste est utilisé dans les adresses " -"IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "La longueur du préfixe IPv6 en bits" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"Les ports de votre équipement peuvent être configurés pour combiner " -"plusieurs VLANs dans " -"lesquels les machines connectées peuvent dialoguer directement l'une avec " -"l'autre. Les VLANs sont " -"souvent utilisés pour séparer différences sous-réseaux. Bien souvent il y a " -"un port d'uplink pour une connexion vers un réseau plus vaste, comme " -"internet et les autres ports sont réservés au réseau local." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "Le protocole sélectionné nécessite l'attribution d'un périphérique" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"Le système est en train d'effacer la partition de configuration et " -"redémarrera tout seul une fois cela fini." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    Wait a " -"few minutes until you try to reconnect. It might be necessary to renew the " -"address of your computer to reach the device again, depending on your " -"settings." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Apparence" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Il n'y a aucun bail actif." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Il n'y a aucun changement à annuler !" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Il n'y a aucun changement en attente !" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Il n'y a aucun périphérique attribué pour l'instant, liez s.v.p. un " -"périphérique réseau dans l'onglet \"Paramètres du matériel\"" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Ce routeur n'a pas de mot de passe configuré. Veuillez configurer un mot de " -"passe pour l'utilisateur root pour protéger l'accès de votre interface web " -"et activer l'accès par SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "L'adresse IPv4 du relais" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"Voici la liste des motifs de type glob shell utilisés pour sélectionner les " -"fichiers et répertoires à inclure durant la mise à jour système. Les " -"fichiers modifiés dans /etc/config/ et certains autres sont automatiquement " -"conservés." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Voici le contenu de /etc/rc.local. Placez-y vos propres commandes (avant le " -"« exit 0 ») pour qu'ils soient exécutés en fin de démarrage." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"Il s'agit de l'adresse de l'extrémité locale attribuée par le fournisseur de " -"tunnels, elle se termine habituellement avec ...:2/64" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "C'est le seul serveur DHCP sur le réseau local" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"Ceci est le système crontab avec lequel sont définies les tâches récurrentes." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" -"Il s'agit habituellement de l'adresse du plus proche PoP géré par le " -"fournisseur de tunnels" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Cette liste donne une vue d'ensemble des processus en exécution et leur " -"statut." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" -"Cette page donne une vue d'ensemble des connexions réseaux actuellement " -"actives." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Cette section ne contient pas encore de valeur" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Synchronisation de l'heure" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "La synchronisation de l'heure n'est pas encore configurée." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Fuseau horaire" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Pour restaurer les fichiers de configuration, vous pouvez charger ici une " -"archive de sauvegarde construite précédemment. Pour réinitialiser le " -"micrologiciel dans son état initial, cliquer sur \"Réinitialiser\" (possible " -"seulement avec les images de type squashfs)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Total disponible" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Trafic" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Transfert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Débit d'émission" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Transmet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Puissance d'émission" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Antenne émettrice" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Déclenchement" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Mode de déclenchement" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "ID du tunnel" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Interface du tunnel" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Puissance d'émission" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Type" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP :" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "seulement UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "Périphérique USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Impossible d'envoyer" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Inconnu" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "non-géré" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Changements non appliqués" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Type de protocole non pris en charge." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Envoyer ici une image compatible avec le système de mise à jour pour " -"remplacer le micrologiciel actuel. Cochez \"Garder la configuration\" pour " -"maintenir la configuration actuelle (nécessite une image de micrologiciel " -"compatible)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Envoi de l'archive…" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Fichier Uploadé" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Uptime" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Utiliser /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Utiliser la passerelle DHCP" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Utiliser les serveurs DNS publiés par le distant" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Utiliser les codes-pays ISO/IEC 3166 alpha2." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "Utiliser le MTU sur l'interface du tunnel" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "Utiliser le TTL sur l'interface du tunnel" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Utiliser une marque de diffusion" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Utiliser des serveurs DNS spécifiques" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Utiliser la passerelle par défaut" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Utiliser la métrique de la passerelle" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Utiliser la table de routage" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Utiliser le bouton Ajouter pour créer un nouveau bail. " -"L'adresse MAC identifie l'hôte, l'adresse IPv4 décrit " -"l'adresse fixe à utiliser et le nom d'hôte sera le nom symbolique " -"attribué à l'hôte qui fait la demande." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Utilisé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Clé utilisée" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Nom d'utilisateur" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANs sur %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANs sur %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "Serveur VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "Classe de fournisseur à envoyer dans les requêtes DHCP" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Vérifier" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Système ouvert WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Clé partagée WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "Mot de passe WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Mode WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "Mot de passe WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"Le chiffrage WPA nécessite l'installation du paquet wpa_supplicant (en mode " -"client) ou hostapd (en mode Point d'accès ou Ad-hoc)." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "En attente de l'application des changements..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "En attente de la fin de la commande..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Attention" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Sans-fil" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Module Wi-Fi" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Réseau sans-fil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Présentation des réseaux sans-fil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Sécurité des réseaux sans-fil" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Le Wi-Fi est désactivé" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Le Wi-Fi est non associé" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Le Wi-Fi est ré-initialisé…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Le réseau Wi-Fi est désactivé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Le réseau Wi-Fi est activé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Écrire les requêtes DNS reçues dans syslog" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Vous pouvez ici activer ou désactiver les scripts d'initialisation " -"installés. Les changements seront pris en compte après un redémarrage.
    Attention: Si vous désactivez des scripts essentiels comme \"réseau" -"\", votre équipement pourrait ne plus être accessible !" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Vous devez activer JavaScript dans votre navigateur pour que LuCI fonctionne " -"correctement." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "n'importe lequel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "ponté" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "créer:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "créer un bridge entre plusieurs interfaces" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "désactiver" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "expiré" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "fichier dans lequel les baux DHCP seront stockés" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "transfert" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "full-duplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "half-duplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "cacher" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "si la destination est un réseau" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "entrée" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "fichier de résolution local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "non" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "pas de lien" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "Arrêté" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "Actif" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "ouvrir" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "routé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "marqué" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "inconnu" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "non limité" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "non précisé" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "non précisé -ou- créer :" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "non marqué" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "oui" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Retour" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Vous pouvez copier ici des clés SSH publiques (une par ligne) pour une " -#~ "authentification SSH sur clés publiques." - -#~ msgid "Password successfully changed!" -#~ msgstr "Mot de passe changé avec succès !" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Erreur inconnue, mot de passe inchangé !" - -#~ msgid "Design" -#~ msgstr "Apparence" - -#~ msgid "Available packages" -#~ msgstr "Paquets disponibles" - -#~ msgid "Displaying only packages containing" -#~ msgstr "N'afficher que les paquets contenant" - -#~ msgid "Download and install package" -#~ msgstr "Télécharge et installe le paquet" - -#~ msgid "Filter" -#~ msgstr "Filtrer" - -#~ msgid "Find package" -#~ msgstr "Trouver un paquet" - -#~ msgid "Free space" -#~ msgstr "Espace libre" - -#~ msgid "Install" -#~ msgstr "Installer" - -#~ msgid "Installed packages" -#~ msgstr "Paquets installés" - -#~ msgid "No package lists available" -#~ msgstr "Aucune liste de paquets disponible" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Configuration OPKG" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Les listes de paquets ont plus de 24 heures" - -#~ msgid "Package name" -#~ msgstr "Nom du paquet" - -#~ msgid "Software" -#~ msgstr "Logiciels" - -#~ msgid "Update lists" -#~ msgstr "Mettre les listes à jour" - -#~ msgid "Version" -#~ msgstr "Version" - -#~ msgid "none" -#~ msgstr "aucun" - -#~ msgid "Disable DNS setup" -#~ msgstr "Désactiver la configuration DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 et IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "IPv4 seulement" - -#~ msgid "IPv6 only" -#~ msgstr "IPv6 seulement" - -#~ msgid "Lease validity time" -#~ msgstr "Durée de validité d'un bail" - -#~ msgid "Multicast address" -#~ msgstr "Adresse multidiffusion" - -#~ msgid "Protocol family" -#~ msgstr "Famille du protocole" - -#~ msgid "No chains in this table" -#~ msgstr "Aucune chaîne dans cette table" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Les fichiers de configuration seront préservés." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Note : les fichiers de configuration seront effacés." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Activer ce réseau" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Contrôleur sans fil Hermes 802.11b" - -#~ msgid "Interface is shutting down..." -#~ msgstr "L'interface s'arrête…" - -#~ msgid "Interface reconnected" -#~ msgstr "Interface reconnectée" - -#~ msgid "Interface shut down" -#~ msgstr "Interface arrêtée" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Contrôleur sans fil Prism2/2.5/3 802.11b" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "Contrôleur sans fil RaLink 802.11%s" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "Voulez-vous vraiment arrêter l'interface %s ?\n" -#~ "Vous pourriez perdre l'accès à l'équipement si vous y êtes connecté par " -#~ "cette interface." - -#~ msgid "Reconnecting interface" -#~ msgstr "Reconnecte cet interface" - -#~ msgid "Shutdown this network" -#~ msgstr "Arrêter ce réseau" - -#~ msgid "Wireless restarted" -#~ msgstr "Wi-Fi ré-initialisé" - -#~ msgid "Wireless shut down" -#~ msgstr "Wi-Fi arrêté" - -#~ msgid "DHCP Leases" -#~ msgstr "Baux DHCP" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "Bails DHCPv6" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "Voulez-vous vraiment supprimer cette interface? L'effacement ne peut être " -#~ "annulé!\n" -#~ "Vous pourriez perdre l'accès à l'équipement si vous y êtes connecté par " -#~ "cette interface." - -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "Voulez-vous vraiment arrêter l'interface %s ?\n" -#~ "Vous pourriez perdre l'accès à l'équipement si vous y êtes connecté par " -#~ "cette interface." - -#~ msgid "Sort" -#~ msgstr "Trier" - -#~ msgid "help" -#~ msgstr "aide" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "État IPv4 du WAN" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "État IPv6 du WAN" - -#~ msgid "Apply" -#~ msgstr "Appliquer" - -#~ msgid "Applying changes" -#~ msgstr "Changements en cours" - -#~ msgid "Configuration applied." -#~ msgstr "Configuration appliquée." - -#~ msgid "Save & Apply" -#~ msgstr "Sauvegarder et appliquer" - -#~ msgid "The following changes have been committed" -#~ msgstr "Les changements suivants ont été appliqués" - -#~ msgid "There are no pending changes to apply!" -#~ msgstr "Il n'y a aucun changement en attente d'être appliqués !" - -#~ msgid "Action" -#~ msgstr "Action" - -#~ msgid "Buttons" -#~ msgstr "Boutons" - -#~ msgid "Handler" -#~ msgstr "Gestionnaire" - -#~ msgid "Maximum hold time" -#~ msgstr "Temps de maintien maximum" - -#~ msgid "Minimum hold time" -#~ msgstr "Temps de maintien mimimum" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "Chemin du programme exécutable gérant les évènements liés au bouton" - -#~ msgid "Specifies the button state to handle" -#~ msgstr "Indique l'état du bouton à gérer" - -#~ msgid "This page allows the configuration of custom button actions" -#~ msgstr "" -#~ "Cette page permet la configuration d'actions spécifiques des boutons" - -#~ msgid "Leasetime" -#~ msgstr "Durée du bail" - -#, fuzzy -#~ msgid "automatic" -#~ msgstr "statique" - -#~ msgid "AR Support" -#~ msgstr "Gestion du mode AR" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Contrôleur sans fil Atheros 802.11%s " - -#~ msgid "Background Scan" -#~ msgstr "Recherche en arrière-plan" - -#~ msgid "Compression" -#~ msgstr "Compression" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Désactiver l'émission périodique de balises wifi (« HW-Beacon »)" - -#~ msgid "Do not send probe responses" -#~ msgstr "Ne pas envoyer de réponses de test" - -#~ msgid "Fast Frames" -#~ msgstr "Trames rapides" - -#~ msgid "Maximum Rate" -#~ msgstr "Débit maximum" - -#~ msgid "Minimum Rate" -#~ msgstr "Débit minimum" - -#~ msgid "Multicast Rate" -#~ msgstr "Débit multidiffusion" - -#~ msgid "Outdoor Channels" -#~ msgstr "Canaux en extérieur" - -#~ msgid "Regulatory Domain" -#~ msgstr "Domaine de certification" - -#~ msgid "Separate WDS" -#~ msgstr "WDS séparé" - -#~ msgid "Static WDS" -#~ msgstr "WDS statique" - -#~ msgid "Turbo Mode" -#~ msgstr "Mode Turbo" - -#~ msgid "XR Support" -#~ msgstr "Gestion du mode XR" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "Un réseau supplémentaire sera créé si vous laissé ceci décoché." - -#~ msgid "Join Network: Settings" -#~ msgstr "Rejoindre un réseau : paramètres" - -#~ msgid "CPU" -#~ msgstr "CPU" - -#~ msgid "Port %d" -#~ msgstr "Port %d" - -#~ msgid "Port %d is untagged in multiple VLANs!" -#~ msgstr "Le port %d n'est pas marqué dans plusieurs VLANs !" - -#~ msgid "VLAN Interface" -#~ msgstr "Interface du VLAN" diff --git a/luci-base/po/he/base.po b/luci-base/po/he/base.po deleted file mode 100644 index 0f2dde1d2..000000000 --- a/luci-base/po/he/base.po +++ /dev/null @@ -1,6299 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2013-02-02 14:32+0200\n" -"Last-Translator: oranav \n" -"Language-Team: none\n" -"Language: he\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s פנוי)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(ריק)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(אין ממשק מצורף)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- שדה נוסף --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- נא לבחור --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- מותאם אישית --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "עומס במשך דקה:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "עומס במשך רבע שעה:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "עומס במשך 5 דקות:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS יציאת שאילתא" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS יציאת שרת" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "כתובות IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"כתובת או רשת (CIDR) IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "הגדרות LED" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "שם LED" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "כתובת-MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -#, fuzzy -msgid "ARP retry threshold" -msgstr "סף נסיונות של ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -#, fuzzy -msgid "ATM Bridges" -msgstr "גשרי ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -#, fuzzy -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "מזהה ערוצים ווירטואליים של ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -#, fuzzy -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "מזהה נתיבים ווירטואליים של ATM (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "מס' התקן של ATM" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -#, fuzzy -msgid "Access Concentrator" -msgstr "מרכז גישות" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "נקודת גישה" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "פעולות" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "חיבורים פעילים" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "הרשאות DHCP פעילות" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "הרשאות DHCPv6 פעילות" - -# צריך אימות של מישהו שמבין יותר במושגים האלו אם צריך בכלל לתרגם את זה או להשאיר כמו שזה -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -#, fuzzy -msgid "Ad-Hoc" -msgstr "אד-הוק" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "הוסף" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -#, fuzzy -msgid "Add local domain suffix to names served from hosts files" -msgstr "הוסף דומיין מקומי לשמות המוגשים מהקבצים של המארח" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "הוסף ממשק חדש..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "קבצי מארח נוספים" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "כתובת" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -#, fuzzy -msgid "Administration" -msgstr "מנהלה" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "הגדרות מתקדמות" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -#, fuzzy -msgid "Alert" -msgstr "אזעקה" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -#, fuzzy -msgid "Allow all except listed" -msgstr "אפשר הכל חוץ מהרשומים" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "אפשר רשומים בלבד" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -#, fuzzy -msgid "Allow localhost" -msgstr "אפשר localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "אנטנה 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "אנטנה 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "הגדרות אנטנה" - -# אזור? -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -#, fuzzy -msgid "Any zone" -msgstr "כל תחום" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "הקצה ממשקים" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "תחנות קשורות" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "אימות" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "מוסמך" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "דרוש אימות" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "רענון אוטומטי" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "זמין" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "ממוצע:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "חזרה" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "חזרה לסקירה" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "חזרה להגדרות" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "חזרה לסקירה" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "חזרה לתוצאות סריקה" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "גיבוי" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "גיבוי / קושחת פלאש" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "גיבוי רשימת קבצים" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "פורטה כתובת לא תקינה" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"למטה יש את הרשימה הסופית של קבצים לגיבוי. היא מורכבת ע\"י קבצי הגדרות ששונו, " -"המסומנים ב opkg ׁOpen PacKaGe Managementׂ, קבצי בסיס חיוניים ותבניות הגיבוי " -"המוגדרות ע\"י המשתמש." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "גשר" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "ממשקי גשר" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "מס' יח' גשר" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -#, fuzzy -msgid "Bring up on boot" -msgstr "הבא באיתחול" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "שלט אלחוטי Broadcom 802.11%s" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "שלט אלחוטי Broadcom BCM%04x 802.11" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "שימוש מעבד (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "בטל" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "שרשרת" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "שינויים" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "השינויים הוחלו" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "משנה את סיסמת המנהל לגישה למכשיר" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "ערוץ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "לבדוק" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "סגור חיבורים לא פעילים אחרי מספר השניות שהוגדר, הזן 0 על-מנת לא לסגור" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "סגור רשימה..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "אוסף מידע..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "פקודה" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "הגדרות נפוצות" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "הגדרות" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "אישור" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "התחבר" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "מחובר" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "מגבלת חיבורים" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "חיבורים" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "מדינה" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "קוד מדינה" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "כסה את הממשק הבא" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "כסה את הממשקים הבאים" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "צור / הקצה תחום-חומת אש" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "צור ממשק" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "צור גשר בין מספר ממשקים" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "קריטי" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "ממשק מותאם אישית" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"מתאים את הגדרות ה-LED-ים במכשיר " -"(אם אפשרי)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "שרת DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP ו- DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "לקוח DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "אפשרויות-DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "הגדר שם לרשת זו" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"הגדר אפשרויות DHCP נוספות, למשל \"6,192.168.2.1,192.168.2.2\" " -"אשר מציגות שרתי DNS שונים ללקוח" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "למחוק" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "מחק רשת זו" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "תיאור" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "יעד" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "מכשיר" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "הגדרות מכשיר" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "אבחון" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "מרחק לנק' הרשת הרחוקה ביותר במטרים" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "גיוון" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "הורד גיבוי" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear מאפשר גישת SSH רשתית ושרת SCP מובנה" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "DHCP דינאמי" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "ערוך" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "ערוך ממשק זה" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "ערוך רשת זו" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "מצב חרום" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "אפשר" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "אפשר STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "אפשר שרת TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "אפשר תפקוד VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "אפשר למידה והזדקנות" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "אפשר" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "הצפנה" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "מוחק..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "שגיאה" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "כתבות IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "מספר VLAN שגוי! רק ערכים בין %d לבין %d הם חוקיים." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "שם משתמש ו/או סיסמה שגויים! אנא נסה שנית." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "עומס" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "עומס ממוצע" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "טוען" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "כתובת IPv4 מקומית" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "כתובת IPv6 מקומית" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "שרת מקומי" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "שם" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "לא הוגדרה סיסמה!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "לא מחובר" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "ישנם שדות המכילים ערכים בלתי חוקיים!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "נתיב למפתח הפרטי" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "אנא הזן את שם המשתמש והסיסמה שלך:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "קצב קליטה" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "שחזור" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "הרץ בדיקת מערכת קבצים" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "שירותים" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "סנכרון זמן" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "דלג אל התוכן" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "דלג אל הניווט" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "חלק מהשדות אינם תקינים, אין אפשרות לשמור את הערכים!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "סליחה, אך האובייקט שביקשת אינו נמצא." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "סליחה, השרת נתקל בשגיאה לא צפויה." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"סליחה, אין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ידנית. אנא פנה " -"אל ה-wiki של OpenWrt עבור הוראות ספציפיות למכשיר שלך." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "מקור" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "אתחול" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "ניתובי IPv4 סטטיים" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "ניתובי IPv6 סטטיים" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "הקצאות סטטיות" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "ניתובים סטטיים" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "כתובת סטטית" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"הקצאות סטטיות נועדו להקצות כתובות IP קבועות ואת שם הרשת שלהן ללקוחות DHCP. " -"הן נחוצות גם עבור הגדרות ממשק שאינן דינאמיות, בהן מטופלות רק ישויות בעלות " -"הקצאה מתאימה." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "מצב" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "עצור" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "שלח" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "הגדרות TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "שידור" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "קצב שידור" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "טבלה" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "יעד" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "החוקים הבאים מאופשרים כרגע במערכת זו." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "השם שניתן לרשת איננו ייחודי" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "החומרה אינה תומכת בריבוי SSID ולכן ההגדרות הנוכחיות יוחלפו אם תמשיך." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "עיצוב" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "רשימה זו מציגה סקירה של תהליכי המערכת הרצים כרגע ואת מצבם." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "דף זה מציג סקירה של חיבורי הרשת הפעילים כרגע." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "אזור זה עדיין לא מכיל ערכים." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "סנכרון זמן" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "סנכרון זמן עדיין לא הוגדר." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "אזור זמן" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"על מנת לשחזר את קבצי ההגדרות, באפשרותך להעלות ארכיון גיבוי שנוצר לפני כן." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "סה\"כ פנוי" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "תעבורה" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "העברה" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "קצב שידור" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "שידור" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "עוצמת שידור" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "אנטנת שידור" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "עוצמת שידור" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "השתמש בדגל broadcast" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "השתמש בשרתי DNS מותאמים אישית" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "השתמש בטבלת ניתוב" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "שם משתמש" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "שרת VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "סיסמת WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "סיסמת WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "אזהרה" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "רשת אלחוטית מנוטרלת" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "רשת אלחוטית מאופשרת" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "אתה חייב להפעיל את JavaScript בדפדפן שלך; אחרת, LuCI לא יפעל כראוי." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "כלשהו" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "אוטומטי" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "בטל" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "קדימה" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "אם היעד הוא רשת" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "קלט" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "לא" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "כבוי" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "פועל" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "מנותב" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "מתויג" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "ללא הגבלה" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "לא מוגדר" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "לא מוגדר -או- יצר" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "לא מתויג" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "כן" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "<< אחורה" - -#~ msgid "Design" -#~ msgstr "עיצוב" - -#~ msgid "Available packages" -#~ msgstr "חבילות זמינות" - -#~ msgid "Displaying only packages containing" -#~ msgstr "מציג רק חבילות המכילות" - -#~ msgid "Download and install package" -#~ msgstr "הורד והתקן חבילות" - -#~ msgid "No package lists available" -#~ msgstr "אין רשימת חבילות זמינה" - -#~ msgid "Package name" -#~ msgstr "שם החבילה" - -#~ msgid "Software" -#~ msgstr "תוכנה" - -#~ msgid "Version" -#~ msgstr "גרסה" - -#~ msgid "none" -#~ msgstr "ללא" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 ו-IPv6" - -#~ msgid "Configuration files will be kept." -#~ msgstr "קבצי ההגדרות ישמרו." - -#~ msgid "Activate this network" -#~ msgstr "הפעל רשת זו" - -#~ msgid "DHCP Leases" -#~ msgstr "הרשאות DHCP" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "הרשאות DHCPv6" - -#, fuzzy -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "האם למחוק את הרשת האלחוטית הזו? המחיקה אינה ניתנת לביטול!\n" -#~ "ייתכן ותאבד גישה לנתב הזה אם אתה מחובר דרך השרת הזו." - -#~ msgid "Sort" -#~ msgstr "מיין" - -#~ msgid "help" -#~ msgstr "עזרה" - -#~ msgid "Apply" -#~ msgstr "החל" - -#~ msgid "Applying changes" -#~ msgstr "מחיל הגדרות" - -#~ msgid "Configuration applied." -#~ msgstr "הגדרות הוחלו" - -#~ msgid "Action" -#~ msgstr "פעולה" - -#~ msgid "Buttons" -#~ msgstr "כפתורים" - -#~ msgid "This page allows the configuration of custom button actions" -#~ msgstr "דף זה מאפשר להגדיר פעולות מיוחדות עבור הלחצנים." - -#~ msgid "AR Support" -#~ msgstr "תמיכת AR" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "שלט אלחוטי Atheros 802.11%s" - -#~ msgid "Background Scan" -#~ msgstr "סריקת רקע" - -#~ msgid "Compression" -#~ msgstr "דחיסה" - -#~ msgid "Static WDS" -#~ msgstr "WDS סטטי" - -#, fuzzy -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "רשת נוספת תווצר אם תשאיר את זה לא מסומן" - -#~ msgid "CPU" -#~ msgstr "מעבד" diff --git a/luci-base/po/hu/base.po b/luci-base/po/hu/base.po deleted file mode 100644 index 3eedb5e65..000000000 --- a/luci-base/po/hu/base.po +++ /dev/null @@ -1,6658 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-01-31 09:59+0200\n" -"Last-Translator: Gabor \n" -"Language-Team: none\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: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d perces ablak, %d másodperces intervallum)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s elérhető)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(üres)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(nincs csatalkoztatott interfész)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- További mező --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Kérem válasszon --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- egyéni --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Terhelés (utolsó 1 perc):" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Terhelés (utolsó 15 perc):" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Terhelés (utolsó 5 perc):" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS lekérdezési port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS szerver port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"DNS szerverek a resolv fájl " -"sorrendjében" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-cím" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-útválasztó" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-Netmask" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-cím, vagy hálózat " -"(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-útválasztó" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED konfiguráció" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED Név" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-cím" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Max. DHCP bérlés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Max. EDNS0 csomagméret" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Max. párhuzamos lekérdezés" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "ARP újrapróbálkozási küszöbérték" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM Hidak" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM Virtuális Csatorna Azonosító (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM Virtuális Út Azonosító (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Az ATM hidak az AAL5-be ágyazott ethernet kapcsolatokat mint virtuális Linux " -"hálózati interfész mutatják, mely így DHCP-vel vagy PPP-vel összekapcsolva " -"használható a szolgáltatói hálózatba történő betárcsázáshoz." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "ATM eszközszám" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Elérési központ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Hozzáférési pont" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Műveletek" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Aktív IPv4 útvonalak" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Aktív IPv6 útvonalak" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Aktív kapcsolatok" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Aktív DHCP bérletek" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Aktív DHCPv6 bérletek" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Hozzáadás" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"Helyi tartomány utótag hozzáadása a hosts fájlokból kiszolgált nevekhez" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Új interfész hozzáadása..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "További 'hosts' fájlok" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Cím" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Helyi közvetítő híd elérési címe" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Adminisztráció" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Haladó beállítások" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Riasztás" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"SSH jelszó hitelesítés engedélyezése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Összes engedélyezése a felsoroltakon kívül" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Csak a felsoroltak engedélyezése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Lolcalhost engedélyezése" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Távoli hostok csatlakozásának engedélyezése a helyi SSH továbbított " -"portokhoz." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "root jelszavas bejelentkezésének engedélyezése" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Engedélyezi a root felhasználó jelszavas bejelentkezését" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"A 127.0.0.0/8-as tartományba eső DNS válaszok engedélyezése (pl. RBL " -"szervizek)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "1-es antenna" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "2-es antenna" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Antenna beállítások" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Bármelyik zóna" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Interfészek összekapcsolása..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Kapcsolódó kliensek" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Hitelesítés" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Hiteles" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Hitelesítés szükséges" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Automatikus frissítés" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Elérhető" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Átlag:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Vissza" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Vissza az áttekintéshez" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Vissza a beállításokhoz" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Vissza az áttekintéshez" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Vissza a felderítési eredményekhez" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Mentés" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Mentés / Firmware frissítés" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Mentési fájl lista" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Hibás címet adott meg!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Alább található a biztonsági mentésbe kerülő fájlok listája. A lista az opkg " -"által megjelölt módosított konfigurációs fájlokból, fontos alapvető " -"fájlokból valamint a felhasználó által megadott mintáknak megfelelő " -"fájlokból áll." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Bitráta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Hamis NX tartomány felülbírálása" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Híd" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Híd interfészek" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Híd eszközszám" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Hozza fel a rendszer indításakor" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Broadcom 802.11%s vezeték-nélküli vezérlő" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom BCM%04x 802.11 vezeték-nélküli vezérlő" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Átmeneti tárban van" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Processzor használat (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Mégsem" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Lánc" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Módosítások" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "A módosítások alkalmazva." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "" -"Itt módosíthatja az eszköz eléréséhez szükséges adminisztrátori jelszót" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Csatorna" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Ellenőrzés" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Ellenőrző összeg" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Válassza ki a tűzfal zónát amit hozzá akar rendelni ehhez az interfészhez. " -"Válassza a nincs megadva elemet az interfésznek a hozzárendelt " -"zónából történő eltávolításához, vagy töltse ki az új mezőt új zóna " -"megadásához és csatlakoztassa az interfészt ahhoz." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Válassza ki azokat a hálózatokat, amelyeket csatlakoztatni akar ehhez a " -"vezetéknélküli interfészhez, vagy töltse ki az új mezőt egy új " -"hálózat definiálásához." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Titkosító" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Kattintson az \"Archívum készítése\" gombra a jelenlegi konfiguráció tar " -"archívumként történő letöltéséhez." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Ügyfél" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "DHCP kérés során küldendő kliens azonosító" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Inaktív kapcsolatok bezárása a megadott másodpercek után, használjon 0-t " -"állandó kapcsolathoz" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Lista bezárása..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Adatok összegyűjtése..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Parancs" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Álatános beállítás" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Beállítás" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Megerősítés" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Kapcsolódás" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Kapcsolódva" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Kapcsolati korlát" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Kapcsolatok" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Ország" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Országkód" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "A következő interfészt tartalmazza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "A következő interfészeket tartalmazza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Tűzfal zóna készítés / hozzárendelés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Új interfész" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Híd létrehozása több interfész között" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Kritikus" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Cron naplózási szint" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Egyéni interfész" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Az eszköz LED-jei működésének " -"testreszabása." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP kiszolgáló" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP és DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP ügyfél" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP beállítások" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "DNS továbbítások" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Hibakeresés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Alapértelmezés %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Alapértelmezett átjáró" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Alapértelmezett állapot" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Adja meg a hálózat nevét." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Adjon meg további DHCP opciókat, például \"6,192.168.2.1,192.168.2.2\", mely különböző DNS kiszolgálókat hirdet az ügyfelek részére." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Törlés" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Hálózat törlése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Leírás" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Cél" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Eszköz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Eszköz beállítások" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnosztika" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Könyvtár" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Letiltás" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"DHCP tiltása ezen " -"az interfészen." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Letiltva" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Beérkező RFC1918 DHCP válaszok elvetése. " - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Távolság optimalizáció" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "A hálózat legtávolabbi tagjának távolsága méterben." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diverzitás" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"A Dnsmasq egy kombinált DHCP-kiszolgáló és DNS-" -"továbbító NAT tűzfalak " -"számára" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" -"Ne gyorsítótárazza a negatív válaszokat, pl. nem létező domain-ok esetén" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Ne továbbítsa a publikus név szerverek által nem megválaszolható kéréseket" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "Ne továbbítson fordított keresési kéréseket a helyi hálózathoz" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Tartomány szükséges" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Tartomány fehérlista" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Ne továbbítsa a DNS-név nélküli " -"DNS-kéréseket " - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Biztonsági mentés letöltése" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Dropbear példány" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"A Dropbear a hálózaton SSH hozzáférést " -"tesz lehetővé, valamint integrált SCP " -"szolgáltatást nyújt." - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"Dinamikus DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Dinamikus alagút" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Az ügyfelek számára kiosztott DHCP címek dinamikus lefoglalása. Letiltása " -"esetén csak a statikus DHCP bérlettel rendelkező kliensek lesznek " -"kiszolgálva." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP metódus" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Szerkesztés" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Interfész szerkesztése" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Hálózat szerkesztése" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Vészhelyzet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Engedélyezés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "STP engedélyezése" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "HE.net dinamikus végpont frissítésének engedélyezése" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "IPv6 egyeztetés engedélyezése a PPP linken" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Óriás keretek átengedésének engedélyezése" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "NTP-kliens engedélyezése" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "TFTP kiszolgáló engedélyezése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "VLAN funkció engedélyezése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Tanulás és aging engedélyezése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "A csatolás engedélyezése" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "A lapozó terület engedélyezése" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Engedélyezés/Letiltás" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Engedélyezve" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "A Spanning Tree prokoll engedélyezése erre a hídra" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Beágyazási mód" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Titkosítás" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Törlés..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Hiba" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Ethernet adapter" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Ethernet switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Gépek kibontása" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Lejárat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "A bérelt címek lejárati ideje, a minimális érték 2 perc." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Külső rendszernapló kiszolgáló" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Külső rendszernapló kiszolgáló port" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Fájl" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "A kliensek részére közzétett betöltö kép fájlneve" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Fájlrendszer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Privát kérések szűrése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Használhahatlan kérések szűrése" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Hálózatok keresése és csatlakozás" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Befejezés" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Tűzfal" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Tűzfal Beállítások" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Tűzfal Állapot" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Tűzfal verzió" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Rögzített forrás port a kimenő DNS kérésekhez" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Firmware flash-elés" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Flash image..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Új firmware image flash-elése" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Flash műveletek" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Flash-elés..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Kényszerítés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "CCMP (AES) kényszerítése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" -"DHCP kényszerítése ezen a hálózaton még akkor is ha van másik szerver " -"észlelve." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "TKIP kényszerítése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "TKIP és CCMP (AES) kényszerítése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "DHCP forgalom továbbítás" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Broadcast forgalom továbbítás" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Továbbítás módja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Töredezettségi küszöb" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Keretfűzés" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Szabad" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Csak GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Átjáró" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Átjáró portok" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Általános beállítások" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Általános beállítások" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Archívum készítése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Általános 802.11%s vezeték-nélküli vezérlő" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "A megadott jelszavak nem egyeznek, a jelszó nem lett megváltoztatva!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Ugrás a jelszó beállításhoz..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Ugrás a tárgyhoz tartozó beállításokhoz" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "HE.net jelszó" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Befejezés" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Itt állíthatja be az eszköz alapvető tulajdonságait, mint például a gépnév " -"vagy az időzóna." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "ESSID elrejtése" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Host bejegyzések" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Host lejárati idő" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "Host-IP vagy hálózat" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Gépnév" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "DHCP kérés során küldendő gépnév" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Gépnevek" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP cím" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4 tűzfal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4 cím" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "IPv4 broadcast" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "IPv4 átjáró" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "IPv4 hálózati maszk" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "IPv4 prefix hossza" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-cím" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6 tűzfal" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "IPv6 cím" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "IPv6 átjáró" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "IPv6 előtag" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "IPv6 prefix hossz" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-cím" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6 IPv4-ben (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6 IPv4 felett (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6 IPv4 felett (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identitás" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Megadás esetén az eszköz csomópont helyett UUID alapján történő csatolása" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Megadás esetén az eszköz csomópont helyett címke alapján történő csatolása" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Ha nincs kiválasztva, akkor nincs alapértelmezett útvonal beállítva" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" -"Ha nincs kiválasztva, akkor a hirdetett DNS kiszolgáló címeket nem veszi " -"figyelembe" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Ha a fizikai memória túl kevés a nem használt adatok ideiglenesen áttehetők " -"egy swap-eszközre mely így nagyobb mennyiségű használható RAM-ot eredményez. Az adatok áttétele egy " -"nagyon lassú folyamat mivel a swap-eszköz nem érhető el akkora sebességgel " -"mint a RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Interfész figyelmen kívül hagyása" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "A resolve fájl figyelmen kívül hagyása" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Image" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Be" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Inaktivitási időtúllépés" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Bejövő" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Információk" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Indítási állomány" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Indítási állományok" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "%q csomag telepítése" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Protokoll kiterjesztések telepítése..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interfész" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Interfész beállítások" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Interfész áttekintés" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Interfész újracsatlakoztatása..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Az interfész nincs jelen, vagy még nincs csatlakoztatva." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfészek" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Belső szerverhiba" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Érvénytelen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" -"A megadott VLAN azonosító érvénytelen. Az azonosítónak %d és %d közé kell " -"esnie." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" -"A megadott VLAN azonosító érvénytelen! Minden VLAN-hoz egyedi azonosító kell." - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Érvénytelen felhasználói név és/vagy jelszó! Kérem próbálja újra!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Úgy tűnik, hogy a flash-elendő kép-file nem fér el a Flash-memóriába. Kérem " -"ellenőrizze a kép fájlt!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "JavaScript szükséges!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Csatlakozás a hálózathoz" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Csatlakozás a hálózathoz: vezetéknélküli hálózatok keresése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Beállítások megtartása" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Kernel napló" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Kernel verzió" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Kulcs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Kulcs #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Kilövés" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "L2TP szerver" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "LCP echo hibaküszöb" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "LCP Echo időtartam" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Címke" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Nyelv" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Nyelv és megjelenés" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Bérlet fájl" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "A bérletből hátralévő idő" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Automatikus észleléshez hagyja üresen" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "A jelenlegi WAN cím használatához hagyja üresen" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Jelmagyarázat:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Korlát" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Kapcsolat létrehozva" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"DNS szerverek listája, ahová a " -"kérések továbbításra kerülnek" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Domain-ok listája, melyeknél az RFC1918 válaszok megengedettek" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "A hamis NX tartomány eredményeket szolgáltató gépek listája" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Csak a megadott interfészen hallgat, vagy az összesen, amennyiben nem adja " -"meg" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Szerver port a beérkező DNS kérések számára" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Terhelés" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Átlagos terhelés" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Betöltés" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Helyi IPv4 cím" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Helyi IPv6 cím" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Helyi indítóscript" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Helyi idő" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Helyi tartomány" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Helyi tartomány meghatározása. Az ezzel a tartománnyal egyező nevek soha " -"nincsenek továbbítva és csak DHCP-n vagy host fájlok által kerülnek " -"feloldásra" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"A helyi tartomány utótag csatolása a DHCP nevekhez és hosts fájl " -"bejegyzésekhez" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Helyi kiszolgáló" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Gépnév lokalizációja a lekérdező alhálózattól függően, ha több IP cím is " -"elérhető" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Lekérdezések lokalizációja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Napló kimeneti szintje" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Kérések naplózása" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Naplózás" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Bejelentkezés" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Kijelentkezés" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "A legalacsonyabb bérleti címnek az interfész címétől való távolsága" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-cím" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "MAC-cím szűrő" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-szűrő" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "MAC-lista" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Aktív DHCP bérletek maximális száma" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Párhuzamos DNS kérések maximális száma" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "EDNS.0 UDP csomagok maximális mérete" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Maximális várakozási idő a modem kész állapotára (másodpercben)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "DHCP címek maximális száma" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Memória" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Memória használat (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metrika" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Hiányzó protokoll kiterjesztés a %q progokoll számára" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Mód" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Modemeszköz" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Modem inicializálás időtúllépés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Ellenőrzés" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Csatolási bejegyzés" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Csatolási pont" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Csatolási pontok" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Csatolási pontok - Csatolási bejegyzés" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Csatolási pontok - Lapozóterület bejegyzés" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"A csatolási pontok határozzák meg, hogy egy memória eszköz hová lesz " -"csatlakoztatva a fájlendszeren belül " - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Csatolási beállítások" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Csatolási pont" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Csatolt fájlrendszerek" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Mozgatás lefelé" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Mozgatás felfelé" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS azonosító" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Kijelölt NTP kiszolgálók" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Név" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Az új interfész neve" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Az új hálózat neve" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigáció" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Hálózati maszk" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Hálózat" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Hálózati eszközök" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Hálózati rendszertöltő lemezkép" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Interfészhez nem rendelt hálózat" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Következő »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Ehhez az interfészhez nincs DHCP kiszolgáló beállítva" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nem találhatók fájlok" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Nincs elérhető információ" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Nincs negatív gyorsítótár" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Ehhez az eszközhöz nincs hálózat beállítva" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Nincs megadva hálózatnév" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Nincs jelszó!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Ez a lánc nem tartalmaz szabályokat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Nincs hozzárendelt zóna" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Zaj" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Zaj:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Nincs" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normál" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Nem található" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Nincs hozzárendelve" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Nincs kapcsolódva" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Megjegyzés" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Kikapcsolt állapot késleltetés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Ezen az oldalon a hálózati interfészeket állíthatja be. Több interfész " -"között híd hozható létre a \"híd interfész\" mező bejelölésével és több " -"hálózati interfész nevének szóközzel történő elválasztásával. Lehetőség van " -"VLAN jelölés " -"INTERFÉSZ.VLANSZÁM használatára is, pl. eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Bekapcsolt állapot késleltetés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Legalább gépnevet vagy MAC-címet meg kell adni!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Egy vagy több mező érvénytelen adatot tartalmaz!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Egy vagy több kötelezően kitöltendő mező üres!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Lista megnyitása..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Beállítás módosítva" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Beállítás eltávolítva" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Lehetőségek" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Egyéb:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Ki" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Kimenő:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "MAC cím felülbírálása" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "MTU felülbíráslás" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Átjáró felülbírálása a DHCP válaszokban" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Az ügyfelek részére küldött hálózati masz felülbírálása. Ez alapesetben a " -"kiszolgált alhálózat alapján kerül meghatározásra." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "A belső útvonalakhoz használt tábla felülbírálása" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Áttekintés" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Tulajdonos" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "PAP/CHAP jelszó" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "PAP/CHAP felhasználói név" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "PPPoA beágyazás" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "A libiwinfo csomag szükséges!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Csomagok" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "A %q zóna része" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Jelszó" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Jelszó hitelesítés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "A privát kulcsh jelszava" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "CA tanúsítvány elérési útja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Kliens tanúsítvány elérési útja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "A privát kulcs elérési útja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Csúcs:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Újraindítás végrehajtása" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Visszaállítás végrehajtása" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Phy sebesség:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Fizikai beállítások" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "csom." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Adja meg a felhasználónevét és a jelszavát." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Szabály" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Port állapot:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"A peer halottnak tekintése a megadott számú LCP echo hibák után. Használjon " -"0-t a hibák figyelmen kívül hagyásához." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Ügyfél-ügyfél közötti kommunikáció megakadályozása" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Folytatás" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Folyamatok" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protokoll" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Az új interfész protokollja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Protokoll támogatás nincs telepítve" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "NTP kiszolgáló" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Új hálózat nyújtása" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Ál Ad-hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Minőség" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTS küszöbérték" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "RX sebesség" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Radius-Naplózási-Port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Radius-Naplózás-Kulcs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Radius-Naplózás-Kiszolgáló" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Radius-Hitelesítés-Port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Radius-Hitelesítés-Kulcs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Radius-Hitelesítés-Kiszolgáló" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Az /etc/ethers fájl olvasása a DHCP kiszolgáló beállításához" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Biztosan törli ezt a vezetéknélküli hálózatot? A törlés nem visszavonható!\n" -"Lehet, hogy elveszti a hozzáférést az eszközhöz, amennyiben ezen a hálózaton " -"keresztül kapcsolódik." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Biztos, hogy visszavonja az összes módosítást?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Biztos, hogy cserélni szeretné a protokollt?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Valósidejű kapcsolatok" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Valósidejű grafikonok" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Valósidejű terhelés" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Valósidejű forgalom" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Valósidejű vezetéknélküli adatok" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Rebind elleni védelem" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Újraindítás" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Újraindítás..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Újraindítja az eszköz operációs rendszerét" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Fogadás" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Vevő antenna" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Csatlakoztassa újra az interfészt" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Hivatkozások" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Átjátszás" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Átjátszó híd" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Átjátszás hálózatok között" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Átjátszó híd" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Távoli IPv4 cím" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Eltávolítás" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Felderítés ismétlése" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Bejegyés lecserélése" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Vezetéknélküli beállítások lecserélése" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" -"Szükséges bizonyos internetszolgáltatók esetén, pl. Charter 'DOCSIS 3'-al" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Visszaállítás" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Számlálók nullázása" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Alapértelmezések visszaállítása" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Resolv és hosts fájlok" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Resolv fájl" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Újraindítás" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Tűzfal újraindítása" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Visszaállítás" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Biztonsági mentés visszaállítása" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Jelszó mutatása/elrejtése" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Visszavonás" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Gyökérkönyvtár" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "TFTP-n keresztül megosztott fájlok gyökérkönyvtára" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Router jelszó" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Útvonalak" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Az útvonalak határozzák meg, hogy bizonyos gépek illetve hálózatok melyik " -"interfészen keresztül érhetők el." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Fájlrendszer ellenőrzés futtatása az eszköz csatolása előtt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Fájlrendszer ellenőrzés futtatása" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "SSH hozzáférés" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH kulcsok" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Mentés" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Mentés & Alkalmazás" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Felderítés" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Ütemezett feladatok" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Szakasz hozzáadva" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Szakasz eltávolítva" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Részletekért lásd a 'mount' man oldalát" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"LCP echo kérések küldése a másodpercben megadott időközönként, csak a " -"hibaküszöbbel együtt van hatása." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Kliensek szétválasztása" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Kiszolgáló beállításai" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Szolgáltatás neve" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Szolgáltatás típusa" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Szolgáltatások" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "Idő szinkronizálás beállítása" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "DHCP kiszolgáló beállítása" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Mentendő fájlok aktuális listájának megjelenítése" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Interfész leállítása" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Jel" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Jel:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Méret" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Ugrás" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Ugrás a tartalomhoz" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Ugrás a navigációhoz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Időrés" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Néhán mező érvénytelen, az értékek nem menthetők!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Sajnálom, a kért objektum nem található." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Sajnálom, a szerver váratlan hibát észlelt." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"Sajnáljuk, a 'sysupgrade' támogatás nem elérhető, az új firmware fájl " -"telepítését manuálisan kell elvégezni. Az eszközhöz tartozó telepítési " -"utasításokért keresse fel az wiki-t." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Forrás" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Megadja az eszköz csatlakozási könyvtárát." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Megadja a Dropbear példány portját" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Megadja a maximális sikertelen ARP kérések számát, amik után a host nem " -"elérhetőnek tekinthető" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" -"Megadja a másodpercek számát, amik után a host nem elérhetőnek tekinthető" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Itt adja meg a titkosító kulcsot." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Indítás" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Indítás prioritása" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Rendszerindítás" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Statikus IPv4 útvonalak" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Statikus IPv6 útvonalak" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Statikus bérletek" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Statikus útvonalak" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Statikus cím" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"A statikus bérletekkel a DHCP kliensekhez fix IP-címet és hostnevet " -"rendelhet. Olyan nem dinamikus interfész konfigurációk esetén is " -"szükségesek, ahol a csak a megfelelő bérlettel rendelkező hosztok kerülnek " -"kiszolgálásra." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Állapot" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Leállítás" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Kötött sorrend" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Elküldés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Lapozóterület" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Kapcsoló" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Kapcsoló %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Kapcsoló %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Protokoll csere" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Szinkronizálás a böngészővel" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Szinkronizálás..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Rendszer" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Rendszernapló" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Rendszer tulajdonságok" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Rendszer napló puffer méret" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "TFTP beállítások" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "TFTP szerver gyökér könyvtár" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "TX sebesség" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tábla" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Cél" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Megszakítás" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"Az Eszköz beállítások szakasz a rádió hardver fizikai beállításait, " -"úgymint csatorna, adóteljesítmény vagy antenna választás teszi lehetővé, " -"amelyen az összes definiált vezeték nélküli hálózat (ha a rádió hardver " -"multi-SSID képes) osztozik. A hálózatonkénti beállítások, mint az " -"titkosítás, mód az Interfész beállítások alá vannak csoportosítva." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"A libiwinfo-lua nincs telepítve. A vezetéknélküli beállítás " -"működéséhez ezt az összetevőt telepítnei kell." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"A szolgáltatóhoz rendelt IPv6 előtag, általában így végződik: ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"A következő karakterek használhatók: A-Z, a-z, " -"0-9 and _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"A memória vagy partíció eszköz fájlja (pl. " -"/dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"A memória formázásához használt fájlrendszer típusa (pl. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"Az image feltöltve. Alább található a fájl ellenőrző összege és mérete, " -"hasonlítsa össze az eredeti fájllal a feltöltött adatok sértetlenségének " -"ellenőrzéséhez.
    Kattintson az alábbi \"Folytatás\" gombra a flash-elési " -"eljárás elindításához." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "A következő módosítások lettek visszavonva" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Jelenleg a következő szabályok aktívak a rendszeren." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "A megadott hálózati név már létezik" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"A hardver nem képes többszörös SSID kezelésre ezért a meglévő beállítások " -"elvesznek ha folytatja." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"Az IPv4 előtag hossza bitekben, a maradék az IPv6 címekben használatos." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "Az IPv6 előtag hossza bitekben" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"Az eszközön található hálózati portok kombinálhatók több VLAN-ba, amelyekben a számítógépek " -"közvetlenül kommunikálhatnak egmással. A VLAN-ok gyakran a hálózati szegmensek elkülönítésére " -"használják. Gyakran van egy alapértelmezett Uplink port a következő nagyobb " -"hálózathoz (pl. az internet) való kapcsolódásra és a többi port a helyi " -"hálózathoz." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "A kiválasztott protokoll eszköz hozzárendelést igényel" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "A rendszer most törli a konfigurációs partíciót majd újraindul." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"A rendszer frissítése folyamatban.
    NE KAPCSOLJA KI AZ ESZKÖZT!
    " -"Várjon néhány percet, amíg az eszköz ismételten elérhető. Az eszköz " -"eléréséhez a beállításaitól függően szükséges lehet a számítógépe IP-címének " -"megújítása." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"A feltöltött image fájl formátuma nem támogatott. Ügyeljen arra, hogy a " -"platformjának megfelelő általános image formátumot válassza ki." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Megjelenés" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Nincsenek aktív bérletek." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Nincsenek visszavonásra váró változtatások!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Nincsenek el nem mentett változtatások!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Nincs hozzárendelt eszköz, kérem csatoljon egy hálózati eszközt a \"Fizikai " -"beállítások\" fülön." - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"A routeren jelenleg nincs jelszó beállítva. Állítsa be a root felhasználó " -"jelszavát a felhasználói felület védelme és az SSH elérés engélyezése " -"érdekében." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "Az átjátszó IPV4 címe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"Ez egy shell mintákból álló lista a rendszer frissítés során megőrzendő " -"fájlok és könytárak meghatározására. Az /etc/config/ könyvtárban található " -"módosított fájlok és bizonyos további beállítások automatikusan megőrződnek." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Ez a /etc/rc.local fájl tartalma. Ide írhatja be a saját parancsait (az " -"'exit 0' sor elé) a boot folyamat végén történő futtatásukhoz." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"Ez az alagút közvetítő (tunnel broker) által megadott helyi végpont címe, " -"általában így végződik: ...:2/64" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Ez az egyetlen DHCP a helyi hálózaton" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "Ez a rendszer crontab, amiben időzített feladatok definiálhatók." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" -"Ez általában a legközelebbi alagút közvetítő (tunnel broker) által vezérelt " -"jelenléti pont (PoP) címe" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Ez a lista a rendszerben jelenleg futó folyamatokról és azok állapotáról ad " -"áttekintést." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" -"Ez a lap a rendszerben jelenleg aktív hálózati kapcsolatokról ad áttekintést." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Ez a szakasz még nem tartalmaz értékeket" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Idő szinkronizálás" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Idő szinkronizálás még nincs beállítva." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Időzóna" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Itt tölthet fel egy korábban létrehozott biztonsági mentés archívumot a " -"konfigurációs fájlok visszaállításához. A firmware kezdeti állapotának " -"visszaállításához kattintson a \"Visszaállítás végrehajtása\" gombra (csak " -"squashfs image-ek esetén lehetséges)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Összes elérhető" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Forgalom" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Átvitel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Átviteli sebesség" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Küldés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Adóteljesítmény" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Adó antenna" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Trigger" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Trigger mód" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "Tunnel azonosító" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Tunnel interfész" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Adóteljesítmény" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Típus" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Csak UTMS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USB eszköz" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Nem indiítható" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Ismeretlen" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Nem kezelt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "El nem mentett módosítások" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Nem támogatott protokoll típus." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Itt tölthet fel egy új sysupgrade-kompatibilis képet a futó firmware " -"lecseréléséhez. A jelenlegi beállítások megtartásához jelölje be a " -"\"Beállítások megtartása\" négyzetet (kompatibilis firmware kép szükséges)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Archívum feltöltése..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Feltöltött fájl" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Működési idő" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "/etc/ethers használata" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "DHCP kiszolgáló használata" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Másik fél által ajánlott DNS szerverek használata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "ISO/IEC 3166 alpha2 országkódok használata" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "MTU használata az alagút interfészen" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "TTL használata az alagút interfészen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Broadcast flag használata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Egyedi DNS szerverek használata" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Alapértelmezett átjáró használata" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Átjáró metrikájának használata" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Útválasztó tábla használata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Használja a Hozzáadás gombot új bérleti bejegyzés hozzáadásához. A " -"MAC-cím azonosítja a gépet. az IPv4-cím adja meg a " -"használandó rögzített IP címet és a Gépnév lesz szimbolikus névként " -"hozzárendelve az igénylő géphez." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Használt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Használt kulcsindex" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Felhasználónév" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLAN-ok %q-n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLAN-ok %q-n (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "VPN kiszolgáló" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "DHCP kérés során küldendő 'Vendor Class'" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Ellenőrzés" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "WEP nyílt rendszer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "WEP megosztott kulcs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "WEP jelmondat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM mód" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "WPA jelmondat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"WPA titkosításhoz kliens módnál 'wpa_supplicant', hozzáférési pont illetve " -"ad-hoc módnál 'hostapd' telepítése szükséges." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Várakozás a változtatások alkalmazására..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Várakozás a parancs befejezésére..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Figyelmeztetés" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Vezetéknélküli rész" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Vezetéknélküli adapter" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Vezetéknélküli hálózat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Vezetéknélküli rész áttekintés" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Vezetéknélküli biztonság" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Vezetéknélküli hálózat le van tiltva" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Vezetéknélküli hálózat nincs kapcsolódva" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Vezetéknélküli rész újraindítása folyamatban..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Vezetéknélküli hálózat letiltva" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Vezetéknélküli hálózat engedélyezve" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "A kapott DNS kéréseket írja a rendszernaplóba" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Itt engedélyezheti vagy tilthatja le a telepített indítási állományokat. A " -"módosítások a rendszer újraindítása után lesznek alakalmazva.
    Figyelem: alapvető indítási állomány pl. \"network\" letiltása " -"esetén, az eszköz elérhetetlenné válhat!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Engélyezze a Java Szkripteket a böngészőjében, mert anélkül a LuCI nem fog " -"megfelelően működni." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "bármelyik" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "automatikus" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "áthidalt" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "új:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "híd létrehozása a megadott interfész(ek) között" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "letiltás" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "lejárt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"fájl ahová a DHCP " -"bérletek tárolásra kerülnek" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "továbbítás" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "full-duplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "half-duplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "rejtett" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "ha a cél hálózat" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "bemenet" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "helyi DNS fájl" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "nem" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "nincs link" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "ki" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "be" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "nyitás" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "irányított" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "cimkézett" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "ismeretlen" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "korlátlan" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "nincs meghatározva" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "nincs magadva -vagy- új:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "cimkézetlen" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "igen" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Vissza" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Nyilvános kulcs alapú SSH azonosításhoz itt adhat meg nyilvános SSH " -#~ "kulcsokat (soronként egyet)." - -#~ msgid "Password successfully changed!" -#~ msgstr "A jelszó megváltoztatása sikeres!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Ismeretlen hiba, a jelszó nem lett megváltoztatva!" - -#~ msgid "Design" -#~ msgstr "Megjelenés" - -#~ msgid "Available packages" -#~ msgstr "Elérhető csomagok" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Csak azon csomagok megjelenítése, amelyek tartalmazzák" - -#~ msgid "Download and install package" -#~ msgstr "Csomag letöltése és telepítése" - -#~ msgid "Filter" -#~ msgstr "Szűrő" - -#~ msgid "Find package" -#~ msgstr "Csomag keresése" - -#~ msgid "Free space" -#~ msgstr "Szabad hely" - -#~ msgid "Install" -#~ msgstr "Telepítés" - -#~ msgid "Installed packages" -#~ msgstr "Telepített csomagok" - -#~ msgid "No package lists available" -#~ msgstr "Csomaglisták nem állnak rendelkezésre" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "OPKG-Beállítások" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "A csomag listák 24 óránál régebbiek" - -#~ msgid "Package name" -#~ msgstr "Csomagnév" - -#~ msgid "Software" -#~ msgstr "Szoftver" - -#~ msgid "Update lists" -#~ msgstr "Listák frissítése" - -#~ msgid "Version" -#~ msgstr "Verzió" - -#~ msgid "none" -#~ msgstr "nincs" - -#~ msgid "Disable DNS setup" -#~ msgstr "DNS beállítás letiltása" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 és IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "csak IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "csak IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Bérlet érvényességi ideje" - -#~ msgid "Multicast address" -#~ msgstr "Multicast cím" - -#~ msgid "Protocol family" -#~ msgstr "Protokoll család" - -#~ msgid "No chains in this table" -#~ msgstr "Ez a tábla nem tartalmaz láncokat." - -#~ msgid "Configuration files will be kept." -#~ msgstr "A konfigurációs fájlok megmaradnak." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Megjegyzés: konfigurációs fájlok törölve lesznek." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Hálózat aktiválása" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Hermes 802.11b vezeték nélküli vezérlő" - -#~ msgid "Interface is shutting down..." -#~ msgstr "Interfész leállítása..." - -#~ msgid "Interface reconnected" -#~ msgstr "Interfész újracsatlakoztatva" - -#~ msgid "Interface shut down" -#~ msgstr "Interfész leállítás" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Prism2/2.5/3 802.11b vezeték nélküli vezérlő" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "RaLink 802.11%s vezeték nélküli vezérlő" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "Biztos, hogy leállítja a \"%s\" interfészt?\n" -#~ " Lehet, hogy elveszti a hozzáférést az eszközhöz, amennyiben ezen az " -#~ "interfészen keresztül kapcsolódik." - -#~ msgid "Reconnecting interface" -#~ msgstr "Interfész újracsatlakoztatása" - -#~ msgid "Shutdown this network" -#~ msgstr "Hálózat leállítása" - -#~ msgid "Wireless restarted" -#~ msgstr "Vezetéknélküli rész újraindítva" - -#~ msgid "Wireless shut down" -#~ msgstr "Vezetéknélküli rész leállítása" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP bérletek" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "DHCPv6 bérletek" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "Biztosan törli az interfészt? A törlés nem visszavonható!\n" -#~ " Lehet, hogy elveszti a hozzáférést az eszközhöz, amennyiben ezen az " -#~ "interfészen keresztül kapcsolódik." - -#, fuzzy -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "Biztos, hogy leállítja a hálózatot?!\n" -#~ " Lehet, hogy elveszti a hozzáférést az eszközhöz, amennyiben ezen a " -#~ "hálózaton keresztül kapcsolódik." - -#~ msgid "Sort" -#~ msgstr "Sorbarendezés" - -#~ msgid "help" -#~ msgstr "súgó" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "IPv4 WAN állapot" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "IPv6 WAN állapot" - -#~ msgid "Apply" -#~ msgstr "Alkalmaz" - -#~ msgid "Applying changes" -#~ msgstr "Módosítások alkalmazása" - -#~ msgid "Configuration applied." -#~ msgstr "Beállítások alkalmazva." - -#~ msgid "Save & Apply" -#~ msgstr "Mentés & Alkalmazás" - -#~ msgid "The following changes have been committed" -#~ msgstr "A következő módosítások lettek alkalmazva" - -#~ msgid "There are no pending changes to apply!" -#~ msgstr "Nincsenek alkalmazásra váró módosítások!" - -#~ msgid "Action" -#~ msgstr "Művelet" - -#~ msgid "Buttons" -#~ msgstr "Gombok" - -#~ msgid "Handler" -#~ msgstr "Kezelő" - -#~ msgid "Maximum hold time" -#~ msgstr "Maximális tartási idő" - -#~ msgid "Minimum hold time" -#~ msgstr "Minimális tartási idő" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "A gomb eseményeit kezelő végrehajtható állomány elérési útja" - -#~ msgid "Specifies the button state to handle" -#~ msgstr "Meghatározza a gomb kezelendő állapotát" - -#~ msgid "This page allows the configuration of custom button actions" -#~ msgstr "Ez a lap a gombok egyedi működésének beállítását teszi lehetővé" - -#~ msgid "Leasetime" -#~ msgstr "Bérlet időtartama" - -#~ msgid "AR Support" -#~ msgstr "AR Támogatás" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Atheros 802.11%s vezeték-nélküli vezérlő" - -#~ msgid "Background Scan" -#~ msgstr "Felderítés a háttérben" - -#~ msgid "Compression" -#~ msgstr "Tömörítés" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Hardveres beacon időzítő letiltása" - -#~ msgid "Do not send probe responses" -#~ msgstr "Ne válaszoljon a szondázásra" - -#~ msgid "Fast Frames" -#~ msgstr "Gyors keretek" - -#~ msgid "Maximum Rate" -#~ msgstr "Maximális sebesség" - -#~ msgid "Minimum Rate" -#~ msgstr "Minimális sebesség" - -#~ msgid "Multicast Rate" -#~ msgstr "Multicast sebesség" - -#~ msgid "Outdoor Channels" -#~ msgstr "Kültéri csatornák" - -#~ msgid "Regulatory Domain" -#~ msgstr "Szabályozó tartomány" - -#~ msgid "Separate WDS" -#~ msgstr "WDS szétválasztása" - -#~ msgid "Static WDS" -#~ msgstr "Statikus WDS" - -#~ msgid "Turbo Mode" -#~ msgstr "Turbó mód" - -#~ msgid "XR Support" -#~ msgstr "XR támogatás" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "Amennyiben ezt jelöletlenül hagyja, egy további hálózat jön létre" - -#~ msgid "Join Network: Settings" -#~ msgstr "Csatlakozás a hálózathoz: Beállítások" - -#~ msgid "CPU" -#~ msgstr "Processzor" - -#~ msgid "Port %d" -#~ msgstr "Port %d" - -#~ msgid "Port %d is untagged in multiple VLANs!" -#~ msgstr "A %d port egyszerre több VLAN-ban is cimkézetlen!" - -#~ msgid "VLAN Interface" -#~ msgstr "VLAN interfész" diff --git a/luci-base/po/it/base.po b/luci-base/po/it/base.po deleted file mode 100644 index 9f68ae2c6..000000000 --- a/luci-base/po/it/base.po +++ /dev/null @@ -1,6502 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: LuCI\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2017-09-05 00:33+0100\n" -"Last-Translator: bubu83 \n" -"Language-Team: LANGUAGE \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: Poedit 1.6.10\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d finestra in minuti , %d secondi intervallo)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s disponibile)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(vuoto)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(nessuna interfaccia collegata)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Campo aggiuntivo --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Per favore scegli --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- personalizzato --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Carico in 1 minuto:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Carico in 15 minut:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Carico in 5 minuti:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "" -"BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "Richiesta porta DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "Porta Server DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"DNS I server che verranno " -"interrogati nell'ordine del resolv file" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" -"ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "Indirizzo IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "Gateway IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "" -"Maschera di rete IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"Indirizzo IPv6 o rete " -"(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "Gateway IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "Configurazione LED" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED Nome" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "Indirizzo MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Max. Contratto DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Max. dimensione pacchetti EDNS0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Max. Richiesta in uso" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    Nota: devi riavviare manualmente il servizio cron se il file crontab " -"era vuoto prima delle modifiche." - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "riprova soglia ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "Ponti ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "Identificatore Canale Virtuale ATM (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "Identificatore Percorso Virtuale ATM (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"I ponti ATM incapsulano connessioni in AAL5, in modo che i dispositivi " -"virtuali si possono interfacciare con le reti virtuali Linux in congiunzione " -"con la comunicazione DHCP o PPP dell'ISP." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "Numero dispositivo ATM " - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Accesso Concentratore" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Punto di Accesso" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Azioni" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Instradamento IPv4 " -"attivo" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Instradamento IPv6 " -"attivo" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Connessioni attive" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Contratti attivi DHCP" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Contratti attivi DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Aggiungi" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"Aggiungere il suffisso di dominio locale ai nomi serviti dal file hosts" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Aggiungi nuova interfaccia..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "File Hosts Aggiuntivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Indirizzo" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Indirizzo per accedere al ponte locale di trasmissione" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Amministrazione" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Opzioni Avanzate" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Allerta" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Permetti autenticazione SSH tramite " -"password" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Consenti tutti tranne quelli nell'elenco" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Consenti solo quelli nell'elenco" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Permetti localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Permetti agli host remoti di connettersi tramite ssh reindirizzando le porte" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Permetti l'accesso a root con password" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Abilita l'utente root con l'accesso via password" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Permetti le risposte upstream nell'intervallo 127.0.0.0/8, per esempio nei " -"servizi RBL" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antenna 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antenna 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Configurazione dell'Antenna" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Qualsiasi Zona" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Assegna Interfacce..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Dispositivi Wi-Fi connessi" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Autenticazione PEAP" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autoritativo" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Autorizzazione richiesta" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Aggiornamento Automatico" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "Automatico" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "Homenet (HNCP) automatico" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "Controlla automaticamente il filesystem per errori prima di montare" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "Monta automaticamente i filesystem in hotplug" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "Monta automaticamente lo swap in hotplug" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "Automonta Filesystem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "Automonta Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Disponibile" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Media:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Indietro" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Ritorna alla panoramica" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Indietro alla configurazione" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Ritorna alla panoramica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Ritorno ai risultati della scansione" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Copia di Sicurezza" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Copia di Sicurezza / Flash Firmware" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Elenco dei file di cui effettuare una copia di sicurezza" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "E' stato specificato un indirizzo errato!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Di seguito l'elenco dei file di cui effettuare la copia di sicurezza. Essa è " -"composta dai file di configurazione modificati installati da opkg, file di " -"base essenziali e i file di backup definiti dall'utente." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Bitrate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Ignora Dominio Bogus NX" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Ponte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Interfacce Ponte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Numero Unità Ponte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Attivare all'avvio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Dispositivo Wireless Broadcom 802.11%s" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Dispositivo Wireless Broadcom BCM%04x 802.11" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Buffered" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Uso CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Annulla" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "Categoria" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Catena" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Modifiche" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Modifiche applicate." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Cambia la password di amministratore per accedere al dispositivo" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Canale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Verifica" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "Controlla i filesystem prima di montare" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "Marca questa opzione per cancellare le reti esistenti da questa radio." - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Checksum" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Scegli la zona del firewall che si desidera assegnare a questa interfaccia. " -"Selezionare non specificato per rimuovere l'interfaccia dalla zona " -"associata o compilare il campo crea per definire una nuova zona e " -"collegare l'interfaccia ad esso." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Scegliere la/le rete/reti a cui vuoi collegare questa interfaccia wireless o " -"riempire il campo crea per definire una nuova rete." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Cifratura" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Premi su \"Genera archivio\" per scaricare un archivio tar di backup dei " -"file di configurazione attuali." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Cliente" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "ID Cliente da inviare all'interno della richiesta DHCP" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Chiudi le connessioni inattive dopo x secondi, usa 0 per connessioni " -"persistenti" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Scegliere dall'elenco..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Raccolgo i dati..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Comando" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Configurazioni Comuni" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Configurazione" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Conferma" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Connetti" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Connesso" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Limite connessioni" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Connessioni" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Nazione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Codice Nazione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Coprire la seguente interfaccia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Coprire le seguenti interfacce" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Crea / Assegna zona firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Crea Interfaccia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Crea un ponte tra interfacce multiple" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Critico" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Livello di log del Cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Interfaccia personalizzata" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Personalizza la configurazione dei LED del sistema se possibile." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Server DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP e DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "Cliente DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Opzioni DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "Cliente DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Inoltri DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Debug" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Predefinito %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Gateway predefinito" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Stato Predefinito" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Definisci un nome per questa rete." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Definisci opzioni DHCP aggiuntive, per esempio " -"\"6,192.168.2.1,192.168.2.2\" fornisce differenti server DNS ai " -"client." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Elimina" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Rimuovi questa rete" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Descrizione" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Destinazione" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Dispositivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Configurazione del dispositivo" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "Dispositivo in riavvio..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "Dispositivo irraggiungibile" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnostica" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Cartella" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Disabilita" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Disabilita DHCP per questa interfaccia." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "Disabilita Crittografia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Disabilitato" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "Disabilitato (default)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Ignora risposte RFC1918 upstream" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Ottimizzazione distanza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Distanza del membro più lontano della rete in metri." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diversità" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq è un server DHCP e inoltratore DNS " -"per firewall NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "Non memorizzare le repliche negative, es. per domini non esistenti" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Non inoltrare le richieste che non possono essere risolte dai name server " -"pubblici" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "Non proseguire con le ricerche inverse per le reti locali." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Dominio richiesto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Elenco Domini consentiti" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "Non Frammentare" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Non inoltrare le richieste DNS " -"senza nome DNS" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Download backup" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Instanza di Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear offre accesso SSH e integra un " -"server SCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"DHCP dinamico" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Dynamic tunnel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Fornisci dinamicamente gli indirizzi DHCP ai client. Se disabilitato, solo i " -"client con un indirizzo statico saranno serviti." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Metodo EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Modifica" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Modifica questa interfaccia" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Modifica questa rete" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Emergenza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Abilita" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Abilita STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Abilitazione aggiornamento endpoint dinamico HE.net" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "Abilita negoziazione IPv6" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Attiva la negoziazione IPv6 sul collegamento PPP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Abilita Jumbo Frame passthrough" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Attiva il cliente NTP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "Abilita Single DES" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Abilita il server TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Abilita la funzionalità VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "Abilita pulsante WPS, richiede WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Attivare l'apprendimento e l'invecchiamento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "Abilita mirroring dei pacchetti in ingresso" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "Abilita mirroring dei pacchetti in uscita" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "Abilita l'opzione DF (non Frammentare) dei pacchetti incapsulati" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Abilita questo mount" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Abilita questo swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Abilita/Disabilita" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Abilitato" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Abilita il protocollo di Spanning Tree su questo bridge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Modalità di incapsulamento" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Crittografia" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Cancellazione..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Errore" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Scheda di Rete" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Switch di Rete" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Espandi gli hosts" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Scadenze" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"Tempo di scadenza di indirizzi a contratto, il minimo è di 2 minuti ( " -"2m )." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Server Log di Sistema esterno" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Porta Server Log di Sistema esterno" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "File" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Nome del file dell'immagine di avvio annunciato ai clienti." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Filesystem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtra privati" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtra inutili" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Trova e aggiungi una rete" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Fine" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Impostazioni Firewall" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Stato del Firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Versione del Firmware" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Porta di origine fissa per le richieste DNS in uscita" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Flash Firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Flash immagine..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Flash immagine nuovo firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Operazioni Flash" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Flashing..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Forza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Forza CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Forza DHCP su questa rete, anche se un altro server viene rilevato." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Forza TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forza TKIP e CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "Forza collegamento" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "Forza uso del NAT-T" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Inoltra il traffico DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Inoltra il traffico broadcast" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Modalità di Inoltro" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Soglia di frammentazione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Frame Bursting" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Disponibile" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Solo GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Gateway" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Porte Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Opzioni Generali" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Impostazioni Generali" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "Genera Configurazione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Genera Archivio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Dispositivo Wireless 802.11%s Generico" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" -"La conferma della password assegnata non ha prodotto risultati, la password " -"non è stata cambiata!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "Impostazioni Globali" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "Opzioni rete globale" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Vai alla configurazione della password..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Vai alla pagina di configurazione relativa" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Password HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Hangup" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Qui puoi configurare gli aspetti base del tuo dispositivo come l'" -"hostname o il fuso orario." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Nascondi ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Campi host" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Timeout scadenza Host" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" -"IP dell'host o rete" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Hostname" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Nome host da inviare al momento della richiesta DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Hostname" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "Ibrido" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "Indirizzi IP" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Indirizzo IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4 Firewall" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Indirizzi IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "trasmissione IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "Gateway IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Maschera rete IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "Prefisso IPv4" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Lunghezza prefisso IPv4" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "Indirizzo-IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6 Firewall" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "Impostazioni IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Indirizzi IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "Gateway IPv6" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "Prefisso IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Lunghezza prefisso IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "Suffisso IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "Indirizzo-IPv6" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-in-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-su-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-su-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identità PEAP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "Se selezionata, 1DES è abilitata" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "Se selezionata, crittografia è disabilitata" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Se specificato, montare il dispositivo dal suo UUID invece che dal nodo di " -"dispositivo fisso" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Se specificato, montare il dispositivo dall'etichetta della partizione al " -"posto di un nodo di un dispositivo fisso" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Se deselezionata, alcun percorso predefinito è configurato" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" -"Se deselezionata, gli indirizzi ai Server DNS annunciati saranno ignorati" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Se la tua memoria è insufficiente i dati non usati possono venire " -"temporaneamente spostati in un'area di swap risultando in un più grande " -"quantitativo di RAM usabile. " -"Sappi che spostare dati in swap è un processo molto lento e che il " -"dispositivo di swap non può essere acceduto alle alte velocità della RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ignora /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignora interfaccia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignora file resolv" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Immagine" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "In" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Tempo di Inattività" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "In entrata:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Informazioni" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Script di avvio" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Scripts di avvio" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Installa il pacchetto %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Installa le estensioni del protocollo..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interfaccia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Configurazione Interfaccia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Riassunto Interfaccia" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "L'interfaccia si sta ricollegando..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "Nome Interfaccia" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Interfaccia non presente o non ancora connessa." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfacce" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "Interno" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Errore del Server Interno" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Valore immesso non valido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "ID VLAN non valido! Solo gli ID compresi tra %d e %d sono consentiti." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "ID VLAN non valido! Solo gli ID unici sono consentiti" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Username o password non validi! Per favore riprova." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "Isola Clienti" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Sembra tu stia provando a flashare un'immagine più grande delle dimensioni " -"della memoria flash, per favore controlla il file!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "Richiesto JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Aggiungi Rete" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Aggiunta Rete: Rilevamento Wireless" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Mantieni le Impostazioni" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Registro del Kernel" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Versione del Kernel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Chiave" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Chiave #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Uccidi" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "Server L2TP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "Fallimento soglia echo LCP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "Intervallo echo LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Etichetta" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Lingua" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Lingua e Stile" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "Tempo Contratto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "File di contratti" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Tempo contratto residuo" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Lasciare vuoto per l'autorilevamento" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Lasciare vuoto per usare l'indirizzo WAN attuale" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Legenda:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Limite" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Collegamento on" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Elenco di Server DNSa cui " -"inoltrare le richieste in" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Elenco di domini da consentire le risposte RFC1918 per" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "Elenco degli host che forniscono falsi risultati di dominio NX" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "Ascolta solo l'interfaccia data o, se non specificato, su tutte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Porta di ascolto per le richieste DNS in entrata" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Carico" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Carico Medio" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Caricamento" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Indirizzo IPv4 locale" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Indirizzo IPv6 locale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Avvio Locale" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Ora locale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Dominio Locale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Specifiche dominio locale. I nomi di dominio corrispondenti a questi criteri " -"non sono mai inoltrate e risolti solo da DHCP o file hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Suffisso di dominio locale aggiunto ai nomi dei DHCP e voci del file hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Server Locale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Localizzare nome host a seconda della sottorete richiedente se sono " -"disponibili IP multipli" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Localizza richieste" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Livello di dettaglio registro" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Logga richieste" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Logging" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Login" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Slogga" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Filtro indirizzo MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Filtro MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Lista MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "Manuale" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Numero massimo indirizzi in contratto" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Memoria" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Uso Memoria (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metrica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Modalità" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "Modello" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Dispositivo modem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Voce di Mount" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Punto di Mount" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Punti di Mount" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Punti di Mount - Voce di Mount" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Punti di Mount - Voce Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"I punti di mount definiscono in quale punto un dispositivo di memoria verrà " -"attaccato al tuo filesystem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Opzioni di mount" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Punto di mount" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "Monta swap non configurato specificatamente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "File system montati" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Muovi giù" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Muovi su" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "ID della NAS" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Candidati server NTP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Nome" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Nome della nuova interfaccia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Nome della nuova rete" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigazione" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Maschera di rete" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Rete" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Utilità di Rete" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Rete senza interfaccia" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Prossimo »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Nessun Server DHCP configurato per questa interfaccia" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nessun file trovato" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Nessuna informazione disponibile" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Nessuna rete è configurata su questo dispositivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Nessuna password immessa!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Nessuna regola in questa catena" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Nessuna zona assegnata" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Rumore" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "Margine di Rumore (SNR)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Rumore:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Nessuno" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normale" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Non Trovato" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Non associato" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Non connesso" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "Nota: lunghezza nome interfaccia" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Notifica" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"In questa pagina puoi configurare le interfacce di rete.Puoi unire più " -"interfacce spuntando la voce \"unisci interfacce\" e inserendo i nomi di più " -"interfacce di rete separate da spazi. Puoi anche usare la notazione VLAN INTERFACCIA.VLANNUM (e.s.: eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Uno o più campi contengono valori non validi!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Uno o più campi obbligatori sono vuoti!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Apri lista..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Opzione cambiata" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Opzione cancellata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Opzioni" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Altro:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Uscita" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "In uscita:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "Sovrascrivi indirizzo MAC" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "Sovrascrivi MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "Sovrascrivi TOS" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "Sovrascrivi TTL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "Sovrascrivi nome interfaccia di default" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Sovrascrivi il gateway nelle risposte DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Sovrascrivi la netmask data ai clienti. Normalmente è calcolata dalla subnet " -"servita." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "Sovrascrivi la tabella usata per le route interne" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Riassunto" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Proprietario" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Incapsulamento PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "E' richiesto il pacchetto libiwinfo!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Pacchetti" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Parte della zona %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Password" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Password di authenticazione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Password della chiave privata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Percorso al certificato CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Percorso alla chiave privata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Picco:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Esegui un riavvio" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Per favore inserisci il tuo username e la password." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Porta" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Status porta:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Impedisci la comunicazione fra Client" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Continuare" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Processi" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "Profilo" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protocollo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Protocollo della nuova interfaccia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Supporto protocollo non installato" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Fornisci server NTP" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Fornisci nuova rete" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "Chiave Pubblica" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Qualità" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Soglia RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "Velocità RX" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Leggi /etc/ethers per configurare il server DHCP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Vuoi davvero rimuovere questa interfaccia wireless? La rimozione non può " -"essere ripristinata! Potresti perdere l'accesso a questo dispositivo se sei " -"connesso con questa rete." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Azzerare veramente tutte le modifiche?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Cambiare veramente il protocollo?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Connessioni in Tempo Reale" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Grafici in Tempo Reale" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Carico in Tempo Reale" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Traffico in Tempo Reale" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Wireless in Tempo Reale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Riavvia" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Riavviando..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Riavvia il sistema operativo del tuo dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Ricezione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Antenna Ricevente" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Ricollega questa interfaccia" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Riferimenti" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Rimuovi" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Ripeti scan" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Sostituisci campo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Sostituisci configurazione wireless" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "Richiede indirizzo-IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "Richiede prefisso-IPv6 di lunghezza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "Richiesto" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Reset" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Azzera Contatori" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Azzera a default" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "File Resolve" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Riavvia" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Riavvia Firewall" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Ripristina" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Ripristina backup" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Rivela/nascondi password" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Ripristina" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Route" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Le route specificano attraverso quale interfaccia e gateway un certo host o " -"rete può essere raggiunto." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Esegui un controllo del filesystem prima di montare il dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Esegui controllo del filesystem" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Salva" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Salva & applica" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Scan" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Operazioni programmate" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Sezione aggiunta" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Sezione rimossa" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Vedi \"mount\" manpage per dettagli" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Isola utenti" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Impostazioni Server" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Servizi" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Segnale" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Dimensione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Salta" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Salta a contenuto" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Salta a navigazione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Slot time" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Alcuni campi non sono validi, non è possibile salvare i valori!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Siamo spiacenti, l'oggetto che hai richiesto non è stato trovato." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Spiacente, il server ha rilevato un errore imprevisto." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"Spiacenti, non è presente alcun supporto sysupgrade, una nuova immagine " -"firmware deve essere memorizzata (Flash) manualmente. Si prega di fare " -"riferimento al wiki per le istruzioni di installazione di dispositivi " -"specifici." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Origine" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Specifica la cartella a cui è collegato il dispositivo in" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Specifica la porta di ascolto di questa istanza Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Consente di specificare la quantità massima di richieste ARP fallite finché " -"gli host si presume siano morti." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" -"Specifica la quantità massima di secondi dopo di che si presume che gli host " -"siano morti." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Specificare la chiave di cifratura qui." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Inizio" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Priorità di avvio" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Avvio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Instradamento statico IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Instradamento statico IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Contratti statici" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Instradamenti Statici" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Indirizzo Statico" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"I contratti statici vengono utilizzati per assegnare indirizzi IP fissi e " -"nomi host simbolici ai client DHCP. Essi sono necessari anche per interfacce " -"di configurazione non dinamici, dove solo gli host col contratto " -"corrispondente vengono serviti." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Stato" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Ferma" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Ordine severo" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Invia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Scambia ingresso" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Switch %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Switch %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Cambia protocollo" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Sincronizza con il browser" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Sincronizzazione..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Sistema" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Registro di Sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Proprietà di Sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Dimensione Buffer Log di Sistema" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Impostazioni TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Server TFTP principale" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "Velocità TX" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tabella" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Destinazione" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Termina" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"La sezione Configurazione del Dispositivo illustra le impostazioni " -"fisiche del hardware radio come canale, la potenza di trasmissione o la " -"selezione dell'antenna che viene condiviso tra tutte le reti wireless " -"definite (se l'hardware radio è multi-SSID compatibilie). Per le " -"impostazioni di rete come la crittografia o la modalità di funzionamento " -"sono raggruppati nella configurazione dell'interfaccia." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Il pacchetto libiwinfo-lua non è installato. È necessario " -"installare questo componente per il lavoro di configurazione wireless!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"Il prefisso IPv6 assegnati dal provider, si conclude di solito con ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"Il file del dispositivo di memoria o della partizione (e.s. /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"Il filesystem usato per formattare la memoria (e." -"s. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Le seguenti modifiche sono state annullate" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Le seguenti regole sono al momento attive su questo sistema." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    Wait a " -"few minutes until you try to reconnect. It might be necessary to renew the " -"address of your computer to reach the device again, depending on your " -"settings." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Tema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Non ci sono contratti attivi." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Non ci sono cambiamenti pendenti da regredire" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Non ci sono cambiamenti pendenti!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Questo è l'unico server DHCP nella tua rete locale" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"Questa è la crontab del sistema nella quale possono essere definiti le " -"operazioni da programmare." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Questa lista da un riassunto dei processi correntemente attivi e del loro " -"stato." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "Questa pagina ti da una riassunto delle connessioni al momento attive." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Questa sezione non contiene ancora valori" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Sincronizzazione Orario" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Sincronizzazione Orario non ancora configurata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Fuso orario" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Per ripristinare i file configurazione, puoi inviare un archivio di backup " -"generato precedentemente qui. Per ripristinare il firmware al suo stato " -"iniziale premi \"Esegui Ripristino\" (solo per firmware basati su squashfs)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Totale" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Traffico" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Velocità di transmissione" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Trasmissione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Potenza di trasmissione" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Antenna trasmettente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Tipo" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "Periferica USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "Porte USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Sconosciuto" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Non gestito" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "Smonta" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Modifiche non salvate" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Tipo protocollo non supportato." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Carica un'immagine sysupgrade compatibile quì per sostituire il firmware in " -"esecuzione. Attivare la spunta \"Mantieni Impostazioni\" per mantenere la " -"configurazione corrente (richiede un immagine del firmware compatibile)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Carica archivio..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "File Inviato" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Tempo di attività" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Usa /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Usa il DHCP del gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Usa i server DNS annunciati dal peer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Usa i codici delle nazioni ISO/IEC 3166 alpha2." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "Usa MTU nel tunnel dell'interfaccia" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "Usa TTL nel tunnel dell'interfaccia" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Usa flag broadcast" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Usa server DNS personalizzati" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Usa il gateway predefinito" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Usa la metrica del gateway" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Utilizzare tabella di instradamento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Utilizzare il pulsante Aggiungi per aggiungere una nuova voce di " -"contratto. L'Indirizzo-MAC identifica l'host, l'Indirizzo-IPv4 specifica l'indirizzo fisso da utilizzare e il Nome Host è " -"assegnato come nome simbolico alla richiesta dell'host. L'opzionale " -"tempo di Contratto può essere usato per impostare un tempo di " -"contratto non-standard a uno specifico host, p.e. 12h, 3d o infinito." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Usato" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Slot Chiave Usata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Nome Utente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANs su %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANs su %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "Server VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "Classe del Produttore da 'inviare al momento della richiesta DHCP" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Verifica" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Sistema Aperto WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Chiave Condivisa WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "frase di accesso WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Modalità WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "frase di accesso WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"La crittografia WPA richiede wpa_supplicant (per la modalità client) o " -"hostapd (per AP e modalità ad hoc) per essere installato." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "In attesa delle modifiche da applicare ..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "In attesa del comando da completare..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Avviso" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Wireless" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Dispositivo Wireless" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Rete Wireless" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Panoramica Wireless" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Sicurezza Wireless" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "La rete Wireless è disattivata" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "La rete Wireless è non associata" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Riavvio della Wireless..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "La rete Wireless è disattivata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "La rete wireless è attivata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Scrittura delle richiesta DNS ricevute nel syslog" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "Scrivi registro di sistema su file" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"È possibile abilitare o disabilitare gli script di inizializzazione " -"installati qui. Le modifiche saranno applicate dopo il riavvio del " -"dispositivo
    Attenzione: Se si disattiva gli script di " -"inizializzazione essenziali come ad esempio la \"rete\", il dispositivo " -"potrebbe diventare inaccessibile!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"È necessario attivare JavaScript nel tuo browser o LuCI non funzionerà " -"correttamente." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "qualsiasi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "ponte" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "crea:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "Crea un ponte sulle interfacce selezionate" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "disabilita" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "disabilitato" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "scaduto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"file dove vengono salvati i contratti DHCP dati" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "inoltro" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "full-duplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "half-duplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "nascosto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "modo ibrido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "se la destinazione è una rete" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "ingresso" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "File DNS locale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "no" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "Nessun collegamento" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "spento" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "acceso" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "apri" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "instradato" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "etichettato" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "sconosciuto" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "illimitato" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "non specificato" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "non specificato - o - creato:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "non etichettato" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "Sì" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Indietro" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Qui è possibile incollare le chiavi pubbliche SSH (uno per riga) per " -#~ "l'autenticazione con chiave pubblica SSH." - -#~ msgid "Password successfully changed!" -#~ msgstr "Password cambiata con successo!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Errore sconosciuto, password non cambiata!" - -#~ msgid "Design" -#~ msgstr "Tema" - -#~ msgid "Available packages" -#~ msgstr "Pacchetti disponibili" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Visualizza solo i pacchetti contenenti" - -#~ msgid "Download and install package" -#~ msgstr "Scarica e installa pacchetto" - -#~ msgid "Filter" -#~ msgstr "Filtro" - -#~ msgid "Find package" -#~ msgstr "Cerca pacchetto" - -#~ msgid "Free space" -#~ msgstr "Spazio libero" - -#~ msgid "General options for opkg" -#~ msgstr "Opzioni generali per opkg" - -#~ msgid "Install" -#~ msgstr "Installa" - -#~ msgid "Installed packages" -#~ msgstr "Pacchetti installati" - -#~ msgid "No package lists available" -#~ msgstr "Nessuna lista pacchetti disponibile" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Configurazione di OPKG" - -#~ msgid "Package name" -#~ msgstr "Nome pacchetto" - -#~ msgid "Software" -#~ msgstr "Software" - -#~ msgid "Update lists" -#~ msgstr "Aggiorna liste" - -#~ msgid "Version" -#~ msgstr "Versione" - -#~ msgid "none" -#~ msgstr "nessuna" - -#~ msgid "Disable DNS setup" -#~ msgstr "Disabilita il setup dei DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 e IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Solo IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Solo IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Periodo di Validità del Contratto" - -#~ msgid "Multicast address" -#~ msgstr "Indirizzo Multicast" - -#~ msgid "Protocol family" -#~ msgstr "Famiglia protocollo" - -#~ msgid "Configuration files will be kept." -#~ msgstr "I file di configurazione verranno mantenuti." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Nota: i files di Configurazione saranno eliminati" - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Attiva questa rete" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Dispositivo Wireless Hermes 802.11b" - -#~ msgid "Interface is shutting down..." -#~ msgstr "L'intefaccia si sta spegnendo..." - -#~ msgid "Interface reconnected" -#~ msgstr "Interfaccia ricollegata." - -#~ msgid "Interface shut down" -#~ msgstr "Interfaccia spenta" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "Vuoi davvero spegnere questa interfaccia \"%s\"? Potresti perdere " -#~ "l'accesso a questo router se stai usando questa interfaccia." - -#~ msgid "Reconnecting interface" -#~ msgstr "Sto ricollegando l'interfaccia" - -#~ msgid "Wireless restarted" -#~ msgstr "Wireless riavviato" - -#~ msgid "Wireless shut down" -#~ msgstr "Wireless spento" - -#~ msgid "DHCP Leases" -#~ msgstr "Contratti DHCP" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "Contratti DHCPv6" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "Vuoi davvero rimuovere questa interfaccia? La rimozione non può essere " -#~ "ripristinata! Potresti perdere l'accesso a questo dispositivo se sei " -#~ "connesso con questa rete." - -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "Vuoi davvero spegnere questa interfaccia? Potresti perdere l'accesso a " -#~ "questo router se sei connesso usando questa interfaccia." - -#~ msgid "Sort" -#~ msgstr "Ordina" - -#~ msgid "help" -#~ msgstr "aiuto" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "Stato WAN IPv4" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "Stato WAN IPv6" diff --git a/luci-base/po/ja/base.po b/luci-base/po/ja/base.po deleted file mode 100644 index 7518db81f..000000000 --- a/luci-base/po/ja/base.po +++ /dev/null @@ -1,6434 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2019-05-13 18:57+0900\n" -"Last-Translator: INAGAKI Hiroshi \n" -"Language-Team: \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: Poedit 2.2.1\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "%.1f dB" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "%d ビット" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "無効な入力欄: %d 個" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "%s は複数のVLANにUntaggedしています!" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d 分幅, %d 秒間隔)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s 使用可能)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(空)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(インターフェースが接続されていません)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- 追加項目 --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- 選択してください --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- 手動設定 --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- デバイスを指定 --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- ラベルを指定 --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "-- UUID を指定 --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "-- 選択してください --" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "0: RSSI しきい値を使用しない, 1: ドライバのデフォルトを使用する" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "過去1分の負荷:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "過去15分の負荷:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "464XLAT (CLAT)" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "過去5分の負荷:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "802.11r 高速ローミング" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "802.11w アソシエーションSAクエリの最大タイムアウト時間です。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "802.11w アソシエーションSAクエリの再試行タイムアウト時間です。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "802.11w 管理フレーム保護" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "802.11w 最大タイムアウト" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "802.11w 再試行タイムアウト" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS クエリポート" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS サーバーポート" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"リゾルバファイルの順番に、DNSサー" -"バーに問い合わせを行います" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-アドレス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-ゲートウェイ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-ネットマスク" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-アドレス又はネット" -"ワーク (CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-ゲートウェイ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" -"IPv6-サフィックス (16進数)" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED 設定" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED 名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-アドレス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"最大 DHCP リース" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"最大 EDNS0 パケットサイズ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "最大 並列処理クエリ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    注意: 編集前の crontab ファイルが空の場合、手動で cron サービスの再起動" -"を行う必要があります。" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "認証セッションの期限切れのため、再ログインが必要です。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "A43C + J43 + A43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "A43C + J43 + A43 + V43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "ADSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "ANSI T1.413" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "ARP再試行しきい値" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATMブリッジ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM仮想チャネル識別子 (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM仮想パス識別子 (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "ATMデバイス番号" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Access Concentrator" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "アクセスポイント" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "動作" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"稼働中の IPv4-経路情報" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"稼働中の IPv6-経路情報" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "アクティブ コネクション" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "アクティブなDHCPリース" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "アクティブなDHCPv6リース" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "アドホック" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "追加" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "IPv4 アドレスを追加…" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "IPv6 アドレスを追加…" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "公開鍵を追加" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"hosts ファイルにより解決される名前にローカルドメイン サフィックスを付加しま" -"す。" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "インターフェースの新規作成..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "追加のホストファイル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "追加のサーバー ファイル" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "アドレス" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "ローカル リレーブリッジにアクセスするためのIPアドレス" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "管理画面" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "詳細設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "詳細設定" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "警告" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "エイリアス インターフェース" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "\"%s\" のエイリアス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "全てのサーバー" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "SSH パスワード認証を許可します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "AP モード動作時に、低 ACK(確認応答)状態の STA の切断を許可します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "リスト内の端末からのアクセスを禁止" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "レガシー 802.11b レートを許可" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "リスト内の端末からのアクセスを許可" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "ローカルホストを許可する" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"リモートホストがSSH転送されたローカルのポートに接続することを許可します。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "パスワードでの root ログインを許可" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "パスワードを使用した root 権限でのログインを許可します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "許可されるIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "常にデフォルト ルーターを通知する" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "常にオフ (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "常にオン (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" -"セカンダリ チャンネルの重複にかかわらず、常に 40MHz チャンネルを使用します。" -"このオプションの使用は、 IEEE 802.11n-2009 に準拠しません!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" -"利用可能なパブリック プレフィクスが無くても、デフォルトのルーターとして通知し" -"ます。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "アノニマス マウント" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "アノニマス スワップ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "アンテナ 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "アンテナ 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "アンテナ設定" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "全てのゾーン" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "チェックなしの適用" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "適用リクエストはステータス %h により失敗しました" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "アーキテクチャ" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "インターフェースの割当て..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "アソシエーション済み端末" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "アソシエーション数" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "認証グループ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "認証" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Authoritative" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "ログイン認証" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "自動更新" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "自動" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "マウント実行前にファイルシステムのエラーを自動的にチェックします。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "ホットプラグによってファイルシステムを自動的にマウントします。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "ホットプラグによってスワップ パーティションを自動的にマウントします。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "ファイルシステム 自動マウント" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "スワップ 自動マウント" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "使用可" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "平均値:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "戻る" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "概要へ戻る" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "設定へ戻る" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "概要へ戻る" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "スキャン結果へ戻る" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "バックアップ" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "バックアップ / ファームウェア更新" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "バックアップファイル リスト" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "無効なアドレスです!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "バンド" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "ビーコン間隔" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"以下は、バックアップの際に含まれるファイルのリストです。このリストは、opkgに" -"よって認識されている設定ファイル、重要なベースファイル、ユーザーが設定したパ" -"ターンに一致したファイルの一覧です。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" -"ワイルドカード アドレスよりもインターフェースへ動的にバインド(Linux のデフォ" -"ルトとして推奨されます)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "インターフェースのバインド" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "ビットレート" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "ブリッジ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "ブリッジ インターフェース" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "ブリッジ ユニット番号" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "デフォルトで起動する" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Broadcom 802.11%s 無線LANコントローラ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom BCM%04x 802.11 無線LANコントローラ" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "バッファ" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "CA証明書(空白の場合、初回の接続後に保存されます。)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU使用率 (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "キャンセル" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "カテゴリー" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "注意: 設定ファイルは消去されます" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "注意: システムは強制的にアップグレードされます" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "チェイン" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "ログイン パスワードの変更" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "変更" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "変更が適用されました。" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "変更は取り消されました。" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "デバイスの管理者パスワードを変更します" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "パスワードを変更中…" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "チャネル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" -"チャンネル %d は、 %s 領域内では規制により利用できません。%d へ自動調整されま" -"した。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "チェック" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "マウント前にファイルシステムをチェックする" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" -"この無線から既存のネットワークを削除する場合、このオプションを有効にします。" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "チェックサム" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "mtdblock を選択" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"このインターフェースに設定するファイウォール ゾーンを選択してください。設" -"定しないを選択すると、設定済みのゾーンを削除します。また、作成" -"フィールドにゾーン名を入力すると、新しくゾーンを作成し、このインターフェース" -"に設定します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"無線インターフェースをアタッチするネットワークを選択してください。または、" -"作成欄を選択すると新しいネットワークを作成します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "暗号化方式" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"\"バックアップ アーカイブを生成\" をクリックすると、現在の設定ファイルをtar形" -"式のアーカイブファイルとしてダウンロードします。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" -"指定した mtdblock ファイルをダウンロードするには、 \"mtdblock を保存\" をク" -"リックしてください。(注: この機能はプロフェッショナル向けです!)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "クライアント" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "DHCPリクエスト時に送信するクライアントID" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "閉じる" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"設定した秒数後に、使用していない接続を閉じます。0を設定した場合、接続を維持し" -"ます" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "リストを閉じる" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "データ収集中です..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "コマンド" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "コメント" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "一般設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" -"キーのインストールに使用される EAPOL キーフレームの再送信を無効にすることによ" -"り、クライアント サイドの Key Reinstallation Attacks (KRACK) を困難にします。" -"この回避策は、相互運用性の問題や、特に高負荷のトラフィック環境下におけるキー " -"ネゴシエーションの信頼性低下の原因となることがあります。" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "設定" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "設定が失敗しました" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "設定ファイルは保持されます" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "設定が適用されました。" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "設定はロールバックされました!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "確認" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "接続" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "接続中" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "接続制限" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "接続の試行が失敗しました" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "ネットワーク接続" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" -"設定の変更を適用後、デバイスへのアクセスを回復できませんでした。もし IP アド" -"レスや無線のセキュリティ認証情報などのネットワーク関連の設定を変更した場合、" -"再接続が必要かもしれません。" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "国" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "国コード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "インターフェースの指定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "インターフェースの指定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "ファイアウォール ゾーンの作成 / 割り当て" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "インターフェースの作成" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "複数のインタフェースを指定してブリッジを作成します" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "重大" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Cronのログ出力レベル" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "新しいインターフェース" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" -"カスタム ファイル(証明書, スクリプト)がシステムに残るかもしれません。これを" -"防ぐには、まず最初に factory-reset を行います。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "カスタムな点滅間隔 (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"LED デバイスの挙動をカスタマイズ" -"します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCPサーバー" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP 及び DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP クライアント" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCPオプション" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "DHCPv6 クライアント" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "DHCPv6-モード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "DHCPv6-サービス" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "DNSフォワーディング" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "DNS-ラベル / FQDN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "DNSSEC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "DS-Lite AFTR アドレス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "DSL" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "DSL ステータス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "DTIM インターバル" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "デバッグ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "標準設定 %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "デフォルト ルート" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "デフォルト ゲートウェイ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "デフォルトは ステートレス + ステートフル です。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "標準状態" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "ネットワーク名を設定してください。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"追加のDHCPオプションを設定します。(例:\"6,192.168.2.1,192.168.2.2\" と設定することで、クライアントに指定のDNSサーバーを通知します。)" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "削除" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "公開鍵を削除" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "ネットワークを削除します" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "Delivery Traffic Indication Message インターバル" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "詳細" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "宛先" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "デバイス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "デバイス設定" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "デバイスを再起動中です..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "デバイスに到達できません" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "デバイスに到達できません!まだデバイスを待っています..." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "診断機能" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "ディレクトリ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "無効" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"このインターフェースではDHCP機能を使用しません。" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "暗号化を無効にする" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "非アクティブ状態ポーリングを無効化" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "このネットワークを無効にします" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "無効" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "無効(デフォルト)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "低 Acknowledgement 時のアソシエーション解除" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "RFC1918の応答を破棄します" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "切断" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "切断の試行が失敗しました" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "閉じる" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "距離の最適化" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "最も遠い端末との距離(メートル)を設定してください。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "ダイバシティ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq は DHCP" -"サーバーと NATファイア" -"ウォールの為の DNSフォワーダーを複" -"合したサービスです。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" -"無効なリプライをキャッシュしません (例:存在しないドメインからの返答など)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "パブリック DNSサーバーが返答できなかったリクエストを転送しません" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "ローカル ネットワークへの逆引きを転送しません" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "本当に以下の SSH 公開鍵を削除しますか?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "ドメイン必須" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "ドメイン ホワイトリスト" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "非フラグメント化" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"DNS名の無い DNSリクエストを転送しません" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "下へ" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "バックアップ アーカイブのダウンロード" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "mtdblock のダウンロード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Dropbear設定" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear は SSH ネットワークへのシェルア" -"クセスと統合された SCP サーバーを提供しま" -"す。" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "Dual-Stack Lite (RFC6333)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "動的 DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "動的トンネル機能" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"クライアントに対して動的にDHCPアドレスを割り振ります。無効に設定した場合、静" -"的リースのみを行います。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "EA ビット長" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAPメソッド" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "編集" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" -"上記の設定データを直接編集してエラーを修正し、 \"保存\" ボタンを押してこの" -"ページをリロードします。" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "インターフェースを編集します" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "ネットワークを編集" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "緊急" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "有効" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" -"IGMP スヌーピングの" -"有効化" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "STPを有効にする" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "HE.netの動的endpoint更新を有効にします" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "IPv6 ネゴシエーションの有効化" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "PPPリンクのIPv6 ネゴシエーションを有効にする" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "ジャンボフレーム パススルーを有効にする" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "NTPクライアント機能を有効にする" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "シングルDESの有効化" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "TFTPサーバーを有効にする" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "VLAN機能を有効にする" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "WPS プッシュボタンを有効化するには、WPA(2)-PSKが必要です。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "Key Reinstallation (KRACK) 対策の有効化" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "ラーニング エイジング機能を有効にする" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "受信パケットのミラーリングを有効化" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "送信パケットのミラーリングを有効化" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "カプセル化されたパケットの DF (Don't Fragment) フラグを有効にします。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "マウント設定を有効にする" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "このネットワークを有効にします" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "スワップ設定を有効にする" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "有効 / 無効" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "有効" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "ブリッジの IGMP スヌーピングを有効にします" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" -"同一のモビリティ ドメイン(モビリティ グループ)に属するアクセスポイント間の" -"高速ローミングを有効にします。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "スパニングツリー プロトコルを有効にする" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "カプセル化モード" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "暗号化モード" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "エンドポイント ホスト" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "エンドポイント ポート" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "カスタム値を入力" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "カスタム値を入力" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "消去中..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "エラー" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "イーサネットアダプタ" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "イーサネットスイッチ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "除外インターフェース" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "拡張ホスト設定" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "期待される値: %s" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "期限切れ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"リースアドレスの有効時間を入力します。最小設定値は2分です。 (2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "外部" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "外部システムログ サーバー" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "外部システムログ・サーバー ポート" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "外部システムログ・サーバー プロトコル" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "拡張 SSHコマンドオプション" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "%d 秒以内の適用を確認できませんでした。ロールバック中です..." - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "ファイル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "クライアントに通知するブートイメージのファイル名" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "ファイルシステム" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "プライベートフィルター" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" -"現在アタッチされている全てのファイルシステムとスワップを検索し、検出結果に基" -"づいてデフォルト設定を置き換えます。" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "ネットワークの検索と参加" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "終了" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "ファイアウォール" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "ファイアウォール設定" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "ファイアウォール ステータス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "ファームウェア ファイル" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "ファームウェア バージョン" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "DNSクエリを送信する送信元ポートを固定します" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "ファームウェアの更新" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "更新" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "ファームウェアの更新" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "更新機能" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "更新中..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "強制" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "強制 40MHz モード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "CCMP (AES) を使用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" -"別のDHCPサーバーが検出された場合でも、DHCPサーバー機能を強制的に起動します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "TKIP を使用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "TKIP 及びCCMP (AES) を使用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "強制リンク" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "強制アップグレード" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "NAT-Tの強制使用" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "フォーム トークンの不一致" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "DHCPトラフィックを転送する" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "ブロードキャスト トラフィックを転送する" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "転送モード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "フラグメンテーションしきい値" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "フレームバースト" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "空き" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" -"WireGuard インターフェースとピアについての詳細情報: wireguard.com" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "GPRSのみ" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "ゲートウェイ" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "無効なゲートウェイ アドレスです" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "ゲートウェイ ポート" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "一般設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "一般設定" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "コンフィグ生成" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "バックアップ アーカイブを生成" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "802.11%s 無線LANコントローラ" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "入力されたパスワードが一致しません。パスワードは変更されませんでした!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "全体設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "グローバル ネットワークオプション" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "パスワード設定へ移動..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "関連する設定ページへ移動" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "グループ パスワード" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "ゲスト" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "HE.net パスワード" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "HE.net ユーザー名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "HT モード (802.11n)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "再起動" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "ハートビート (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"このページではホスト名やタイムゾーンなどの基本的な設定を行うことが出来ます。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "ESSIDの隠匿" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "空のチェインを非表示" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "ホスト" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "ホスト エントリー" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" -"ホストIP または ネットワーク" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "ホスト名" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "DHCPリクエスト時に送信するホスト名" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "ホスト名" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "ハイブリッド" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "IKE DHグループ" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "IPアドレス" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "IP プロトコル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IPアドレス" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "無効な IP アドレスです" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "IP アドレスがありません" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4 ファイアウォール" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "IPv4 アップストリーム" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4 アドレス" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "IPv4 割り当て長" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "IPv4 ブロードキャスト" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "IPv4 ゲートウェイ" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "IPv4 ネットマスク" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "IPv4 ネットワーク(アドレス/ネットマスク 表記)" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "IPv4 プレフィクス" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "IPv4 プレフィクス長" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "IPv4+IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-アドレス" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "IPv4-in-IPv4 (RFC2003)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6 ファイアウォール" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "IPv6 設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "IPv6 ULA-プレフィクス" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "IPv6 アップストリーム" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "IPv6 アドレス" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "IPv6 割り当て長" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "IPv6 ゲートウェイ" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "IPv6 ネットワーク(アドレス/ネットマスク 表記)" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "IPv6 プレフィクス" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "IPv6 プレフィクス長" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "IPv6 サフィックス" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-アドレス" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "IPv6-PD" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-in-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-over-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-over-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "識別子" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "チェックした場合、暗号化は無効になります。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"固定のデバイス ノード名のかわりに、設定されたUUIDを使用してマウントします" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"固定のデバイス ノード名のかわりに、設定されたパーティション ラベルを使用して" -"マウントします。" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "チェックされていない場合、デフォルト ルートは構成されません" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "チェックされていない場合、通知されたDNSサーバー アドレスを無視します" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"物理メモリが不足する場合、使用されていないデータを一時的にスワップ デバイスに" -"スワップし、RAMの使用可能領域を増" -"やすことができます。ただし、スワップ デバイスはRAMから高速にアクセスすることができないため、データのスワップ" -"は非常に遅い処理であることに注意します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "/etc/hostsを無視" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "インターフェースを無視する" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "リゾルバ ファイルを無視する" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "イメージ" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "イン" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" -"システムへの未認証のアクセスを防ぐために、リクエストはブロックされました。以" -"下の \"続行\" をクリックして、前のページに戻ります。" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "未使用時タイムアウト" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "受信:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "情報" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "情報" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "起動スクリプト" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "起動スクリプト" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" -"IPv6 の traceroute を使用するには、 iputils-traceroute6 をインストールしま" -"す。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "%q パッケージをインストールします" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "プロトコル拡張機能をインストールします..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "インターフェース" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "インターフェース設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "インターフェース一覧" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "インターフェース再接続中..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "インターフェース名" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "インターフェースが存在しないか、接続していません" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "インターフェース" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "内部" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "内部サーバー エラー" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "入力値が不正です" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "無効なVLAN IDです! IDは%dから%dまでの値のみ入力可能です。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "無効なVLAN IDです! ユニークなIDを入力してください。" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "" -"ユーザー名かパスワード、もしくは両方が不正です!もう一度入力してください。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "クライアント間の分離" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"更新しようとしたイメージファイルはこのフラッシュメモリに適合しません。イメー" -"ジファイルを確認してください!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "JavaScriptを有効にしてください!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "ネットワークに接続する" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "ネットワークに接続する: 無線LANスキャン" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "ネットワークに接続: %q" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "設定を保持する" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "カーネル ログ" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "カーネル バージョン" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "暗号キー" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "キー #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "KiB" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "強制終了" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "L2TP サーバー" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "LCP echo 失敗数しきい値" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "LCP echo 送信間隔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "ラベル" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "言語" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "言語とスタイル" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "レイテンシー" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "リース時間" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "リースファイル" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "残りリース時間" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "空欄の場合、自動検知を行います" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "空欄の場合、現在のWANアドレスを使用します" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "凡例:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "割り当て数" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" -"DNS サービスを、現在 DNS を提供しているサブネットのインターフェースに限定しま" -"す。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "待ち受けをこれらのインターフェースとループバックに制限します。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "リンクオン" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"問い合わせを転送するDNS サーバーの" -"リストを設定します" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "認証用 SSH暗号キー ファイルのリスト" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "RFC1918の応答を許可するリスト" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "待ち受けインターフェース" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "待ち受けポート" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"指定されたインターフェースでのみ待ち受けを行います。設定しない場合はすべての" -"インタフェースが対象です。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "DNSクエリを受信するポート" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "負荷" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "システム平均負荷" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "ロード中" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "SSH 鍵をロード中…" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "無効なローカル IP アドレスです" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "割り当てるローカル IPアドレス" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "ローカル IPv4 アドレス" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "ローカル IPv6 アドレス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "ローカルサービスのみ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "ローカル スタートアップ" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "時刻" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "ローカル ドメイン" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"ローカル ドメインの定義です。このドメインに一致する名前は転送が行われず、 " -"DHCP または hosts ファイルのみにより解決されます。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"DHCP名とhostsファイルのエントリーに付される、ローカルドメイン サフィックスで" -"す。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "ローカル サーバー" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"複数の IP が利用可能な場合に、ホスト名をリクエスト中のサブネットによってロー" -"カライズします" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "ローカライズクエリ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "チャネル %s にロックされています。次で使用されています: %s" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "ログ出力レベル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "ログ クエリ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "ログ" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "ログイン" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "ログアウト" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" -"ネットワークアドレスをオフセットとして、最小のアドレスを設定してください" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "MAC" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-アドレス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "MAC-アドレス フィルタ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-フィルタ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "MAC-リスト" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "MAP / LW4over6" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "無効な MAP ルールです" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "MD5" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" -"以下のようなコマンドを使用して、ルート ファイルシステムを複製してください:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "手動" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "許容される最大 Listen 間隔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "DHCPリースの許可される最大数" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "並列DNSクエリの許可される最大数" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "EDNS.0 UDP パケットサイズの許可される最大数" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "モデムが準備完了状態になるまでの最大待ち時間" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" -"名前の長さは、自動的に含まれるプロトコル/ブリッジ プレフィクス (br-, 6in4-, " -"pppoe- など)と合わせて最大15文字です。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "リースされるアドレスの最大数です。" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "中" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "メモリー" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "メモリ使用率 (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "メッシュ ID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "メトリック" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "ミラー監視ポート" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "ミラー元ポート" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "プロトコル %qのプロトコル拡張が見つかりません" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "モビリティ ドメイン" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "モード" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "モデル" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "モデム デフォルト" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "モデム デバイス" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "モデム初期化タイムアウト" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "モニター" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "文字数不足" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "マウント機能" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "マウントポイント" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "マウントポイント" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "マウントポイント - マウント" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "マウントポイント - スワップ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"マウントポイントは、記憶デバイスがファイルシステムのどこに接続されているかを" -"表示しています。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "明確に設定されていないファイルシステムをマウントします。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "マウントオプション" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "マウントポイント" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "明確に設定されていないスワップ パーティションをマウントします。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "マウント中のファイルシステム" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "下へ移動" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "上へ移動" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "NAT-T モード" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "NAT64 プレフィクス" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "NDP-プロキシ" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "NT ドメイン" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "NTPサーバー候補" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "名前" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "新しいインターフェースの名前" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "新しいネットワークの名前" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "ナビゲーション" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "ネットマスク" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "ネットワーク" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "ネットワーク ユーティリティ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "ネットワークブート用イメージ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "ネットワークデバイス アクティビティ (%s)" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "ネットワーク デバイスが存在しません" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "インターフェースの無いネットワークです。" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "次 »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "いいえ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "このインターフェースにはDHCPサーバーが設定されていません" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "NAT-Tを使用しない" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "ファイルが見つかりませんでした" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "情報がありません" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "ネガティブキャッシュを行なわない" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "このデバイスに設定されているネットワークがありません" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "ネットワーク名が設定されていません" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "パスワードが設定されていません!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "まだ公開鍵はありません。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "チェイン内にルールがありません" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "利用可能なスキャン結果はまだありません..." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "ゾーンが設定されていません" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "ノイズ" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "ノイズ:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "非ワイルドカード" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "なし" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "標準" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "見つかりません" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "アソシエーションされていません" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "未接続" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "システム起動時に開始されません" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "注意: インターフェース名の長さ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "注意" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" -"キャッシュされる DNS エントリーの数です。(最大 10000 件。 0の場合はキャッ" -"シュしません)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "圧縮に使用される、並列スレッド数です。" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "消灯時間" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"このページではネットワーク インターフェースの設定を行うことが出来ます。\"ブ" -"リッジインターフェース\"フィールドにチェックを付け、複数のネットワーク イン" -"ターフェースをリストから選択することで複数のインターフェースをブリッジするこ" -"とが出来ます。また、INTERFACE.VLANNRという表記によりVLANも使用することが出来ます。(: eth0.1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "点灯時間" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "1つ以上のホスト名またはMACアドレスを設定してください!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "1つ以上のフィールドに無効な値が設定されています!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "タブに1つ以上の 無効/必須 の値があります。" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "1つ以上のフィールドに値が設定されていません!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "リストを開く..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "OpenConnect (CISCO AnyConnect)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "動作周波数" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "変更されるオプション" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "削除されるオプション" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "オプション" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" -"ピアのホストです。名前はインターフェースの起動前に解決されます。(オプショ" -"ン)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "トンネル インターフェースのMaximum Transmission Unit(オプション)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "ピアのポート(オプション)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" -"キープアライブ メッセージの送信間隔(秒)です。既定値: 0。このデバイスがNAT" -"以下に存在する場合の推奨値は25です。(オプション)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "発信パケットと受信パケットに使用されるUDPポート(オプション)" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "オプション" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "その他:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "アウト" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "送信:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "出力インターフェース" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "MACアドレスを上書きする" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "MTUを上書きする" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "デフォルトのインターフェース名を上書きします。" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "DHCPレスポンス内のゲートウェイアドレスを上書きする" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"クライアントへ通知するネットマスクを上書きします。通常は、設定されているサブ" -"ネットから計算されます。" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "内部ルートに使用されるテーブルを上書きします。" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "概要" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "所有者" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "PAP/CHAP パスワード" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "PAP/CHAP ユーザー名" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "PIN コードが拒否されました" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "PPPoAカプセル化" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "PPPoSSH" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "PSID オフセット" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "PSID ビット長" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "libiwinfo パッケージが必要です!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "パケット" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "ゾーン %q の一部" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "パスワード" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "パスワード認証" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "秘密鍵のパスワード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "秘密鍵のパスワード" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "パスワード強度" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "パスワード2" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "貼付けまたは SSH 鍵ファイルをドラッグ…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "CA証明書のパス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "クライアント証明書のパス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "秘密鍵のパス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "CA 証明書のパス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "クライアント証明書のパス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "秘密鍵のパス" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "ピーク:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "ピアのアドレスがありません" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "ピア" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "再起動を実行" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "設定リセットを実行" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "永続的なキープアライブ" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "物理レート:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "デバイス設定" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "パケット" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "ユーザー名とパスワードを入力してください。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "ポリシー" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "ポーリング間隔" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "ステータス クエリのポーリング間隔(秒)です。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "ポート" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "ポート ステータス:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "委任されたプレフィクス (PD)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "事前共有鍵" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"設定回数のLCP echo 確認失敗後、ピアノードがダウンしているものと見なします。0" -"を設定した場合、失敗しても無視します" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "これらのインターフェースでの待ち受けを停止します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "クライアント同士の通信を制限します" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "秘密鍵" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "続行" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "プロセス" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "プロファイル" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "プロトコル" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "プロトコル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "新しいインターフェースのプロトコル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "プロトコル サポートがインストールされていません" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "NTPサーバー機能を有効にする" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "新しいネットワークを設定します" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "擬似アドホック (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "公開鍵" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" -"公開鍵は、プレーン パスワードの使用と比べ、高セキュリティなパスワード無しで" -"の SSH ログインを可能とします。新しい鍵をデバイスにアップロードするために、入" -"力欄に OpenSSH 互換の公開鍵(1行)を貼り付けるか、 .pub ファイル" -"をドラッグしてください。" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "クオリティ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" -"アップストリームの利用可能な全 DNS " -"サーバを問い合わせます" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "RFC3947 NAT-Tモード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "ネットワーク参加の RSSI しきい値" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTSしきい値" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "受信レート" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Radiusアカウントサーバー ポート番号" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Radiusアカウント秘密鍵" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Radiusアカウントサーバー" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Radius認証サーバー ポート番号" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Radius認証秘密鍵" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Radius認証サーバー" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"DHCPサーバーの設定" -"として/etc/ethers をロードします" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" -"本当にこのインターフェースを削除しますか?一度削除すると、元に戻すことはでき" -"ません!もしこのインターフェースを経由して接続している場合、このデバイスにア" -"クセスできなくなる場合があります" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"本当にこの無線ネットワークを削除しますか?一度削除すると、元に戻すことはできま" -"せん!\n" -"このネットワークを経由して接続している場合、デバイスにアクセスできなくなる場" -"合があります。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "本当に全ての変更をリセットしますか?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "本当にプロトコルを切り替えますか?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "リアルタイム・コネクション" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "リアルタイム グラフ" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "リアルタイム・ロード" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "リアルタイム・トラフィック" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "リアルタイム・無線LAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "再アソシエーション制限時間" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "DNSリバインディング・プロテクション" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "再起動" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "再起動中..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "デバイスのオペレーティングシステムを再起動します。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "受信" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "受信アンテナ" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "WireGuard インターフェースのIPアドレスです。(推奨)" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "インターフェースを再接続します" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "参照カウンタ" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "リレー" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "リレーブリッジ" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "ネットワーク間のリレー設定" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "リレーブリッジ" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "リモート IPv4アドレス" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "リモート IPv4アドレス または FQDN" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "削除" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "再スキャン" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "エントリーの置換" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "無線設定を置換する" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "IPv6-アドレスのリクエスト" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "リクエストするIPv6-プレフィクス長" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "必須" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "DOCSIS 3.0を使用するいくつかのISPでは必要になります" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "このインターフェースに使用するBase64-エンコード 秘密鍵(必須)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" -"'フル' バージョンの wpad/hostapd と、無線LANドライバーによるサポートが必要で" -"す。
    (2019年1月現在: ath9k、ath10k、mwlwifi 及び mt76)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "リセット" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "カウンタをリセット" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "標準設定にリセット" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "名前解決およびホストファイル設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "リゾルバファイル" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "再起動" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "ファイアウォールを再起動" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "無線インターフェースを再起動します" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "復元" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "バックアップから復元する" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "パスワードを表示する/隠す" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "元に戻す" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "変更の取り消し" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "取り消しのリクエストはステータス %h により失敗しました" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "設定を元に戻しています..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "ルート" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "TFTP経由でファイルを取り扱う際のルートディレクトリ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "ルートの準備" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "ルート タイプ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "ルーター アドバタイズメント-サービス" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "ルーター パスワード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "経路情報" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"特定のホスト又はネットワークに、どのインターフェース及びゲートウェイを通して" -"通信を行うか、経路情報を設定します。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "ルール" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "デバイスのマウントを行う前にファイルシステムチェックを行う" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "ファイルシステムチェックを行う" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "SHA256" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "SNR" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "SSH アクセス" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "SSH サーバーアドレス" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "SSH サーバーポート" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "SSH ユーザー名" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH キー" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "スワップ" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "保存" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "保存 & 適用" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "mtdblock を保存" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "mtdblock の保存" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "公開鍵を保存中…" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "スキャン" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "スキャン要求が失敗しました" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "スケジュールタスク" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "追加されるセクション" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "削除されるセクション" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "詳細情報は \"mount\" のmanページを参照してください" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" -"イメージ形式のチェックが失敗した場合でも更新を行う場合、'強制アップグレード' " -"を選択してください。ファームウェアが正しいこと、デバイスに適していることを確" -"認できている場合にのみ使用してください!" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"設定された秒間隔でLCP echoリクエストを送信します。失敗数しきい値を設定した場" -"合のみ、機能が有効になります。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "クライアントの分離" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "サーバー設定" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "サービス名" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "サービスタイプ" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "サービス" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "セッションの期限切れ" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "VPN をデフォルト ルートとして設定します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "時刻同期設定" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "DHCPサーバーを設定" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "Short GI" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "Short Preamble" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "現在のバックアップファイルのリストを表示する" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "空のチェインを表示" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "インターフェースを終了します" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "信号強度" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "信号:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "サイズ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "DNS クエリ キャッシュのサイズ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "ZRam デバイスのサイズ (MB) です。" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "スキップ" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "コンテンツへ移動" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "ナビゲーションへ移動" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "スロット時間" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "ソフトウェア VLAN" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "無効な値が設定されているフィールドがあるため、保存できません。" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "申し訳ありません。リクエストされたオブジェクトは見つかりませんでした。" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "申し訳ありません。サーバーに予期せぬエラーが発生しました。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"申し訳ありません。現在このボードではsysupgradeがサポートがされていないため、" -"ファームウェア更新は手動で行っていただく必要があります。wikiを参照して、この" -"デバイスのインストール手順を参照してください。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "送信元" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "デバイスが接続するディレクトリを設定します" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Dropbear の待ち受けポートを設定してください。" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "TOS (Type of Service) を指定します。" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" -"デフォルト値 (64) 以外のカプセル化パケットの TTL (Time to Live) を指定しま" -"す。" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" -"デフォルト値 (1280 bytes) 以外の MTU (Maximum Transmission Unit) を指定しま" -"す。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "暗号鍵を設定します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "開始" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "優先順位" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "設定の適用を開始しています..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "無線LANのスキャンを開始しています..." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "スタートアップ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "IPv4 静的ルーティング" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "IPv6 静的ルーティング" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "静的リース" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "静的ルーティング" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "静的アドレス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"静的リース機能は、DHCPクライアントに対して固定のIPアドレス及び一時的なホスト" -"名をアサインします。また、クライアントは対応するリースを使用するホストがその1" -"台のみで、かつ静的なインターフェース設定にする必要があります。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "非アクティブなステーションの制限" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "ステータス" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "停止" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "問い合わせの制限" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "強" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "送信" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "ログの抑制" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "これらのプロトコルの、ルーチン的操作についてのログを抑制します。" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "スワップ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "スワップ機能" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "スイッチ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "スイッチ %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "スイッチ %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" -"スイッチ %q は不明なトポロジを持っています - VLAN 設定は正確ではないかもしれ" -"ません。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "スイッチポート マスク" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "スイッチ VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "プロトコルの切り替え" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "CIDR リスト表記へ切替" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "スイッチポート アクティビティ (%s)" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "NTP サーバーと同期" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "ブラウザの時刻と同期" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "同期中..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "システム" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "システムログ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "システム プロパティ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "システムログ バッファサイズ" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "TFTP設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "TFTPサーバー・ルート" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "送信レート" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "テーブル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "ターゲット" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "対象ネットワーク" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "停止" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"デバイス設定セクションでは、チャネル、送信出力、アンテナ設定などの無" -"線ハードウェアの設定を行います。また、無線ハードウェアがマルチSSID機能をサ" -"ポートしている場合、これらの設定は全て共通の設定として扱われます。暗号化設定" -"や無線モードなどのネットワーク毎の設定は、インターフェース設定で設定" -"を行います。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"libiwinfo-lua パッケージがインストールされていません。無線設定機能を" -"正しく動作させるために、このパッケージをインストールする必要があります。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"プロバイダに割り当てられる IPv6 プレフィクスです。通常、 :: で終" -"わります。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"使用可能な文字は右記の通りです: A-Z, a-z, " -"0-9, _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "設定ファイルは以下のエラーにより読み込めませんでした:" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" -"未適用の変更を適用後、デバイスは %d 秒以内に完了できなかった可能性がありま" -"す。これは、安全上の理由によりロールバックされる設定に起因するものです。それ" -"でも設定の変更が正しいと思う場合は、チェックなしの変更の適用を行ってくださ" -"い。もしくは、再度適用を試行する前にこの警告を閉じて設定内容の編集を行うか、" -"現在動作している設定状況を維持するために未適用の変更を取り消してください。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"デバイスファイルまたはパーティション( " -"/dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"記憶領域をフォーマットしているファイルシステムを指定します。( ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"更新用イメージがアップロードされました。以下はそのチェックサム及びファイルサ" -"イズです。オリジナルファイルと比較し、整合性を確認してください。
    \"続行" -"\"ボタンをクリックすると、更新処理を開始します。" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "以下の変更が取り消されました" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "このシステムでは、現在以下のルールが有効になっています。" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "入力された SSH 公開鍵は既に追加されています。" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" -"入力された SSH 公開鍵は無効です。正しい RSA または ECDSA 鍵を入力してくださ" -"い。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "設定されたネットワーク名はユニークなものではありません" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"このハードウェアでは複数のESSIDを設定することができないため、続行した場合、設" -"定は既存の設定と置き換えられます。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"IPv4 プレフィクスの長さ (bit) です。残りは IPv6 アドレスで使用されます。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "IPv6 プレフィクスの長さ (bit) です。" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"ネットワーク ポートは、コンピュータが他と直接通信することができる複数の " -"VLAN にまとめることができま" -"す。 VLAN は、異なるネット" -"ワーク セグメントの分離にしばしば用いられます。通常、インターネットなどより上" -"位のネットワークへの接続に使用するアップリンク ポートと、ローカル ネットワー" -"ク用のその他のポートが存在します。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "選択中のプロトコルを使用する場合、デバイスを設定する必要があります" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "送信されたセキュリティ トークンは無効もしくは期限切れです!" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "システムは設定領域を消去中です。完了後、自動的に再起動します。" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"システム更新中です。
    絶対に電源を切らないでください!
    ルーターの再" -"接続まで数分お待ち下さい。システムが更新されることにより、ルーターの設定が変" -"わる可能性があるため、再接続時にあなたのコンピュータのIPアドレスを変更しなけ" -"ればならない場合があります。" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "システム パスワードの変更に成功しました。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"アップロードされたイメージファイルは、このボードでサポートされているフォー" -"マットではありません。このプラットフォームに適合したイメージファイルかどう" -"か、確認してください。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "テーマ" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "リース中のIPアドレスはありません。" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "適用する変更はありません。" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "復元が未完了の変更はありません!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "未完了の変更はありません!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"デバイスが設定されていません。\"デバイス設定\"タブで、ネットワークデバイスを" -"選択してください。" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"ルーターにパスワードが設定されていません。Webインターフェースの保護及びSSH" -"サービスを有効にするために、管理者パスワードを設定してください。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "リレーの IPv4 アドレス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" -"このファイルは、特定ドメイン用、または上位 DNS サーバーのための 'server=/domain/1.2.3.4' や 'server=1.2.3.4' " -"というような行を含めることができます。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"以下は、sysupgrade中にバックアップ対象に含めるファイルとディレクトリのパター" -"ンリストです。/etc/config/内の設定ファイル及びその他特定の設定ファイルは自動" -"的に保持されます。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"/etc/rc.localを表示しています。実行したいコマンドを'exit 0'行より上に入力して" -"ください。これらのコマンドはブートプロセスの最後に実行されます。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"プロバイダからアサインされた、ローカルのエンドポイント アドレスです。通常、" -"...:2/64が終端に設定されます。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"これはローカル ネットワーク内のみの DHCP です。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"スケジュールタスク システムを使用することで、定期的に特定のタスクの実行を行う" -"ことが可能です。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"このリストは現在システムで動作しているプロセスとそのステータスを表示していま" -"す。" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "このページでは、現在アクティブなネットワーク接続を表示します。" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "このセクションは未設定です。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "時刻設定" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "時刻同期機能はまだ設定されていません。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "Group Temporal Key (GTK) 再生成間隔" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "タイムゾーン" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "ログイン…" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"設定を復元するには、作成しておいたバックアップ アーカイブをアップロードしてく" -"ださい。設定のリセットを行う場合、\"設定リセット\"をクリックしてください。(た" -"だし、squashfsをお使いの場合のみ使用可能です)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "合計" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "トラフィック" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "転送" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "転送レート" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "送信" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "電波出力" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "送信アンテナ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "トリガー" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "トリガーモード" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "トンネル ID" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "トンネルインターフェース" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "トンネルリンク" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "送信電力" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "タイプ" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "UMTSのみ" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USBデバイス" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "USB ポート" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "デバイス名を確定できません" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "外部 IP アドレスを確定できません" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "アップストリーム インターフェースを確定できません" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "ディスパッチできません" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "AFTR ホスト名を解決できません" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "ピアのホスト名を解決できません" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "不明" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "不明なエラー (%s)" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Unmanaged" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "アンマウント" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "名称未設定の公開鍵" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "保存されていない変更" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "非対応の MAP タイプです" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "サポートされていないプロトコルタイプ" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "上へ" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"システムをアップデートする場合、sysupgrade機能に互換性のあるファームウェア イ" -"メージをここにアップロードしてください。\"設定の保持\"を有効にすると、現在の" -"設定を維持してアップデートを行います(互換性のあるファームウェア イメージが必" -"要)。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "アーカイブをアップロード..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "アップロード完了" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "起動時間" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "/etc/ethers を使用する" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "DHCPゲートウェイを使用する" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "ピアから通知されたDNSサーバーを使用する" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "ISO/IEC 3166 alpha2の国コードを使用します。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "トンネル インターフェースのMTUを設定" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "トンネル インターフェースのTTLを設定" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "外部オーバーレイとして使用する (/overlay)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "ルート ファイルシステムとして使用する (/)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "ブロードキャスト フラグを使用する" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "ビルトインのIPv6-マネジメントを使用する" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "DNSサーバーを手動で設定" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "デフォルト ゲートウェイを使用する" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "ゲートウェイ メトリックを使用する" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "ルーティング テーブルの使用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"追加 ボタンを押して、新しくエントリーを作成してください。MAC-ア" -"ドレス はそのホストを識別し, IPv4-アドレス には払いだす固定のア" -"ドレスを設定します。また、ホスト名 はそのホストに対して一時的なホス" -"ト名をアサインします。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "使用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "使用するキースロット" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "ユーザー証明書(PEM エンコード)" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "ユーザー秘密鍵(PEM エンコード)" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "ユーザー名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "VDSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "%q上のVLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "%q上のVLAN (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "VPN ローカルアドレス" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "VPN ローカルポート" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "VPN サーバー" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "VPN サーバーポート" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "VPN サーバー証明書 SHA1ハッシュ" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "VPNC (CISCO 3000 (またはその他の) VPN)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "ベンダー" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "DHCPリクエスト送信時のベンダークラスを設定" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "確認" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "仮想ダイナミックインターフェース" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "WEP オープンシステム" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "WEP 共有キー" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "WEP 暗号フレーズ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM モード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "WPA 暗号フレーズ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"WPA暗号化を使用する場合、wpa_supplicant (クライアントモードの場合)又は " -"hostapd (アクセスポイント及びアドホック) がインストールされている必要がありま" -"す。" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "変更を適用中です..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "コマンド実行中です..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "設定を適用中です... %d 秒" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "デバイスを起動中です..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "警告" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "警告: 再起動すると消えてしまう、保存されていない設定があります!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "弱" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" -"PSK を使用する場合、 PMK は自動的に生成されることができます。このオプションが" -"有効な場合、以下の R0/R1 キー オプションは適用されません。 R0 と R1 キーのオ" -"プションを使用するには、これを無効化してください。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "無線アクティビティ (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "無線クライアント アソシエーション (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "無線データ受信状態 (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "無線データ送信状態 (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "無線オン (%s)" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "帯域幅" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "WireGuard VPN" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "無線" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "無線アダプタ" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "無線ネットワーク" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "無線LANデバイス一覧" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "無線LANセキュリティ" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "無線LAN機能は無効になっています" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "無線LAN機能がアソシエーションされていません" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "無線LAN機能再起動中..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "無線LAN機能は無効になっています" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "無線LAN機能は有効になっています" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "受信したDNSリクエストをsyslogへ記録します" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "システムログをファイルに書き込む" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "はい" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"ルーターが起動する際のサービスの有効化/無効化を行うことができます。また、変更" -"は再起動後に適用されます。
    警告: \"network\" のような重要なサー" -"ビスを無効にするとルーターにアクセスできなくなりますので、注意してください。" -"" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "JavaScriptを有効にしない場合、LuCIは正しく動作しません。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "ZRam 圧縮アルゴリズム" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "ZRam 圧縮ストリーム" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "ZRam 設定" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "ZRam サイズ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "全て" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "自動" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "ブリッジ" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "作成" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "作成:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "指定したインターフェースでブリッジを作成します" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "無効" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "無効" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "期限切れ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"DHCPリース情報を記" -"録するファイル" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "転送" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "全二重" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "半二重" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "エンコードされた値(16進数)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "(不明)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "ハイブリッド モード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "ターゲットがネットワークの場合" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "入力" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "8 文字以上 63 文字以下のキー" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "5 文字または 13 文字のキー" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "ローカル DNSファイル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "分" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "mixed WPA/WPA2" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "いいえ" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "リンクなし" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "空ではない値" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "オフ" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "オン" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "オープン" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "出力" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "オーバーレイ" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "正の値(10進数)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "正の整数値" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "ランダム" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "リレー モード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "routed" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "秒" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "サーバー モード" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "ステートフルのみ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "ステートレス" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "ステートレス + ステートフル" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "tagged" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "ユニークな値" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "不明" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "無期限" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "設定しない" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "設定しない -又は- 作成:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "untagged" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "有効な IP アドレス" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "有効な IP アドレスまたはプレフィクス" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "有効な IPv4 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "有効な IPv4 アドレス" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "有効な IPv4 アドレスまたはネットワーク" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "有効な IPv4 アドレス:ポート" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "有効な IPv4 ネットワーク" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "有効な IPv4 または IPv6 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "有効な IPv4 プレフィクス値 (0 - 32)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "有効な IPv6 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "有効な IPv6 アドレス" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "有効な IPv6 アドレスまたはプレフィクス" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "有効な IPv6 ホスト ID" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "有効な IPv6 ネットワーク" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "有効な IPv6 プレフィクス値 (0 - 128)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "有効な MAC アドレス" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "有効な UCI 識別子" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "有効な UCI 識別子またはホスト名、 IP アドレス" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "有効なアドレス:ポート" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "有効な日付 (YYYY-MM-DD)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "有効な10進数の値" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "有効な WEP キー(16進数)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "有効な WPA キー(16進数)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "有効なホスト:ポート" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "有効なホスト名" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "有効なホスト名または IP アドレス" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "有効な整数値" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "有効なネットワーク(アドレス/ネットマスク 表記)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "有効なポートまたはポート範囲(port1-port2)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "有効なポート番号" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "有効な時刻 (HH:MM:SS)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "%d 以上 %d 文字以下の値" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "%f 以上 %f 以下の値" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "%f 以上の値" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "%f 以下の値" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr " %d 文字以上の値" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "%d 文字以下の値" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "はい" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« 戻る" - -#~ msgid "Flashmemory write access (%s)" -#~ msgstr "フラッシュメモリー 書込アクセス (%s)" - -#~ msgid "" -#~ "one of:\n" -#~ " - %s" -#~ msgstr "" -#~ "以下を満たす1つ:\n" -#~ " - %s" diff --git a/luci-base/po/ko/base.po b/luci-base/po/ko/base.po deleted file mode 100644 index ae96f4e2d..000000000 --- a/luci-base/po/ko/base.po +++ /dev/null @@ -1,6377 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2012-04-03 08:44+0200\n" -"Last-Translator: Weongyo Jeong \n" -"Language-Team: LANGUAGE \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: Pootle 2.0.4\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d 분 window, %d 초 간격)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "1 분 부하:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "15 분 부하:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "5 분 부하:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS query 포트" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS 서버 포트" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-주소" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED 설정" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED 이름" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-주소" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"최대 DHCP lease 수" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"최대 EDNS0 패킷 크기" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "최대 동시 처리 query 수" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "관리 도구" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Active IPv4-Route 경로" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Active IPv6-Route 경로" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Active 연결수" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Active DHCP 임대 목록" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Active DHCPv6 임대 목록" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "추가" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "새로운 인터페이스 추가..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "추가적인 Hosts 파일들" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "주소" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "관리" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "고급 설정" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "SSH 암호 인증을 허용합니다" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "암호를 이용한 root 접근 허용" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "암호를 이용한 root 사용자 접근을 허용합니다" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "연결된 station 들" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "인증이 필요합니다" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "자동 Refresh" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "평균:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "뒤로" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "개요로 이동" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "설정으로 돌아가기" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "백업" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Firmware 백업 / Flash" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"아래는 백업할 파일 목록입니다. 이 목록은 opkg 이 수정되었다고 판단한 파일, " -"필수 기본 파일 그리고 사용자가 패턴 정의로 백업하도록 지정한 것로 이루어져 있" -"습니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Bridge 인터페이스" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "부팅시 활성화" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "버퍼된 양" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU 사용량 (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "변경 사항" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "장비 접근을 위한 관리자 암호를 변경합니다" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"이 인터페이스에 할당하고자 하는 firewall zone 을 선택하세요. 연결된 zone 으로" -"부터 인터페이스를 제거하고 싶다면 unspecified 를 선택하세요. 새로" -"운 zone 을 정의하고 인터페이스 연결을 원한다면 create 항목을 입력하" -"세요." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"이 무선랜 인터페이스와 연결하고자 하는 네트워크(들)을 선택하세요. 혹은 새로" -"운 네트워크를 정의할려면 create 을 작성하세요." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"현재 설정 파일에 대한 tar 아카이브 다운로드를 원한다면 \"아카이브 생성\" 버튼" -"을 클릭하세요." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "DHCP 요청시 전송할 Client ID" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "목록 닫기..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Data 를 수집중입니다..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "명령어" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "공통 설정" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "설정" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "다시 확인" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "연결" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "연결 시간" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "연결" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Firewall-zone 생성 / 할당" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "임의의 인터페이스" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"원한다면 장치에 부착된 LED 들의 " -"행동을 마음대로 변경할 수 있습니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP 서버" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP 와 DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP client" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP-옵션들" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "기본 상태" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"추가적인 DHCP 옵션을 정의합니다. 예를 들어 " -"\"6,192.168.2.1,192.168.2.2\" 는 client 에게 다른 DNS 서버를 세" -"팅하도록 권고할 수 있습니다." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "삭제" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "이 네트워크를 삭제합니다" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "설명" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "장치 설정" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "진단" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "비활성화" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"이 인터페이스에 대해 DHCP 기능을 비활성합니다." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq 는 NAT 방화벽을 위" -"한 DHCP-서버와 " -"DNS-Forwarder 기능을 제공합니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "백업 다운로드" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear 는 SSH network shell 접근과 " -"SCP 서버 기능을 제공합니다" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"동적으로 DHCP 주소를 client 에게 할당합니다. 만약 비활성화시, static lease " -"가 설정된 client 만 주소 제공이 이루어집니다." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "수정" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "이 인터페이스를 수정합니다" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "이 네트워크를 수정합니다" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "활성화" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "STP 활성화" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "NTP client 활성화" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "TFTP 서버 활성화" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "VLAN 기능 활성화" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "활성/비활성" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "활성화됨" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "이 bridge 에 Spanning Tree Protocol 활성화합니다" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "암호화" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Ethernet 스위치" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "만료 시간" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "임대한 주소의 유효 시간. 최소값은 2 분 (2m) 입니다." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "외부 system log 서버" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "외부 system log 서버 포트" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "외부 system log 서버 프로토콜" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "네트워크 검색 및 연결합니다" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "방화벽" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "방화벽 설정" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "방화벽 상태" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Firmware 버전" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "이미지로 Flash..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "새로운 firmware 이미지로 flash" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Flash 작업" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "강제하기" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "다른 DHCP 서버가 탐지되더라도 이 네트워크에 DHCP 를 강제합니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "이용 가능한 양" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "기본 설정" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "기본 설정" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "아카이브 생성" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "암호 설정 하기" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"여기서 호스트이름이나 시간대와 같은 기본적인 장비 설정을 할 수 있습니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "ESSID 숨기기" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "호스트" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "호스트 목록들" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "Host-IP 혹은 Network" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "호스트이름" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "DHCP 요청시 전달할 호스트이름" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "호스트이름" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP 주소" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4 방화벽" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4 주소" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-주소" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6 방화벽" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "IPv6 Neighbour 들" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "IPv6 설정" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-주소" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "체크하지 않을 경우, 기본 route 가 설정되지 않습니다" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "체크하지 않을 경우, 사용하도록 권장된 DNS 주소는 무시됩니다" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "/etc/hosts 파일 무시" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "인터페이스 무시" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "resolve 파일 무시" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "이미지" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "In" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Initscript 들" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "인터페이스" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "인터페이스 설정" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "인터페이스 개요" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "인터페이스 이름" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "인터페이스" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "네트워크 연결" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "네트워크 연결: 무선랜 스캔 결과" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "네트워크 연결중: %q" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "설정 유지" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Kernel 로그" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Kernel 버전" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "언어" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "언어와 스타일" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "임대 시간" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "남아있는 임대 시간" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "제한" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" -"DNS 를 제공하기로한 subnet 인터페이스들에 대해서만 DNS 서비스를 제공합니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"지정한 인터페이스에만 listening 하며 미지정시 모든 인터페이스에 적용됩니다" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "부하" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "부하 평균" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Local 시작 프로그램" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "지역 시간" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Log output 레벨" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "로그인" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "로그아웃" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "임대되는 주소의 최소 시작점. (네트워크 주소로 부터의 offset)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-주소" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "MAC-주소 필터" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-필터" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Active DHCP lease 건의 최대 허용 숫자" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "허용되는 최대 동시 DNS query 수" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "허용된 최대 EDNS.0 UDP 패킷 크기" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "임대될 수 있는 주소의 최대 숫자." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "메모리" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "메모리 사용량 (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "모델" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "NTP 서버 목록" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "이름" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "네트워크" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "네트워크 유틸리티" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "네트워크 boot 이미지" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "이용 가능한 정보가 없습니다" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "암호 설정을 해주세요!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "노이즈" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "연결되지 않음" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"이 페이지에서는 네트워크 인터페이스를 설정할 수 있습니다. \"Bridge 인터페이스" -"\" 항목을 클릭하고, 공백으로 구분된 네트워크 인터페이스들의 이름을 적는 방식" -"으로 여러 인터페이스들을 bridge 할 수 있습니다. 또한 VLAN 표기법인 INTERFACE.VLANNR " -"(: eth0.1) 를 사용하실 수 " -"있습니다." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "목록 열람..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "동작 주파수" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "변경된 option" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "삭제된 option" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "MAC 주소 덮어쓰기" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "MTU 덮어쓰기" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "기본 인터페이스 이름을 덮어씁니다" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Client 에 전달될 netmask 를 덮어 쓸 수 있습니다. 보통 해당 값은 제공되는 " -"subnet 에 따라 자동 계산됩니다." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "개요" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "암호" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "암호 인증" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "최고치:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "재부팅하기" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Reset 하기" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Physical 설정" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pkts." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "사용자이름과 암호를 입력해 주세요." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "포트" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "포트 상태:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "프로세스" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "프로토콜" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "새로운 네트워크를 추가합니다" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"/etc/ethers 파일을 읽어 DHCP-서버를 설정합니다" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "정말 프로토콜 변경을 원하세요?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "실시간 연결수" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "실시간 그래프" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "실시간 부하" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "실시간 트래픽" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "재부팅" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "장치의 운영체제를 재부팅합니다" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "이 인터페이스를 재연결합니다" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "제거" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "특정 ISP 들에 요구됨. 예: Charter (DOCSIS 3 기반)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "초기화" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Counter 초기화" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "초기값으로 reset" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Resolv 와 Hosts 파일" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Resolve 파일" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "재시작" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "방화벽 재시작" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "복구" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "백업 복구" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "암호 보이기/숨기기" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "변경 취소" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "TFTP 를 통해 제공되는 파일들의 root 디렉토리" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "라우터 암호" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Route 경로" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Route 경로는 특정 호스트 혹은 네트워크가 사용해야 할 인터페이스와 gateway 정" -"보를 나타냅니다." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "저장" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "저장 & 적용" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Scan 하기" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "작업 관리" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "추가된 section" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "삭제된 section" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "서버 설정" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "서비스" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "현재 백업 파일 목록 보기" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "이 인터페이스를 정지합니다" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "신호" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Size" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Dropbear instance 의 listening 포트를 지정합니다" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "시작" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "시작 우선순위" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "시작 프로그램" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Static IPv4 Route 경로" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Static IPv6 Route 경로" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Static Lease 들" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Static Route 경로" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Static Lease 는 DHCP client 에게 고정된 IP 주소와 symbolic hostname 을 할당" -"할 때 사용됩니다. 이 기능은 또한 지정된 host 에 대해서만 주소 임대를 하도록 " -"하는 non-dynamic 인터페이스 설정에도 사용됩니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "상태" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "정지" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Strict order" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "제출하기" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "스위치" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "스위치 %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "스위치 %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "스위치 VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "프로토콜 변경" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "브라우저 시간대로 동기화" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "시스템" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "시스템 로그" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "시스템 등록 정보" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "System log 버퍼 크기" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "TFTP 설정" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "TFTP 서버 root" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"장치 설정 섹션은 channel, transmit power 혹은 antenna 선택과 같은 물" -"리적인 설정 내용을 다룹니다. 이 설정은 (만약 radio 하드웨어가 multi-SSID 지" -"원이 가능하다면) 정의된 모든 무선 네트워크에 공통적으로 적용됩니다. 암호화 혹" -"은 operation mode 와 같은 각 네트워크 설정들은 인터페이스 설정에서 " -"다루어집니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "다음의 변경 사항들이 취소되었습니다" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "다음의 rule 들이 현재 이 시스템에 적용 중입니다." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"이 장치의 네트워크 포트들은 컴퓨터끼리 직접 통신을 할 수 있도록 여러 VLAN 으로 구성될 수 있습니다. " -"VLAN은 종종 다른 네트워크 " -"segment 들을 분리하는데 사용되기도 합니다. 한 개의 uplink 포트가 인터넷에 연" -"결되어 있고 나머지 포트들은 local 네트워크로 연결되는 구성에 자주 사용됩니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "디자인" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"이 공유기에 암호 설정이 되지 않았습니다. 웹 UI 와 SSH 부분을 보호하기 위해서 " -"꼭 root 암호를 설정해 주세요." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"이것은 sysupgrade 시 유지되어야 하는 파일과 디렉토리 목록에 대한 shell glob " -"패턴들입니다. /etc/config/ 하위의 수정된 파일이나 특정 다른 설정들은 자동적" -"으로 변경 사항이 보존됩니다." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"이것은 /etc/rc.local 파일의 내용입니다. 여기에 ('exit 0' 앞에) 부팅 절차가 " -"끝날 때 실행하고자 하는 명령들을 삽입하세요." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "아래는 예정된 작업들이 정의된 시스템 crontab 내용입니다." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"이 목록은 현재 실행중인 시스템 프로세스와 해당 상태에 대한 개요를 보여줍니다." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "이 페이지는 현재 active 상태인 네트워크 연결을 보여줍니다." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "이 section 은 아직 입력된 값이 없습니다" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "시간 동기화" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "시간 동기화가 아직 설정되지 않았습니다." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "시간대" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"설정 파일을 복구하고자 한다면 이전에 백업하신 아카이브 파일을 여기로 업로드" -"할 수 있습니다. Firmware 의 초기 설정 reset 을 원한다면 \"Reset 하기\" 를 클" -"릭하세요. (squashfs 이미지들만 가능)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "총 이용 가능한 양" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "트래픽" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "전송량" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "유형" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "알수없음" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "적용 안된 변경 사항" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"실행중인 firmware 변경을 하고자 한다면 여기에 sysupgrade 호환성이 유지되는 이" -"미지를 업로드하세요. 현재의 설정을 유지하고자 한다면 \"설정 유지\" 를 체크하" -"세요. (이를 지원하는 firmware 이미지 필요)" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "아카이브 업로드..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Uploaded File" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "가동 시간" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "/etc/ethers 사용" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Peer 가 권장한 DNS 서버 사용" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Broadcast flag 사용" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "자체 내장 IPv6-관리 기능 사용" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "임의의 DNS 서버 사용" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Default gateway 사용" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Gateway metric 사용" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Routing table 사용" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"새로운 항목을 추가하기 위해서는 추가 버튼을 사용하세요. MAC-주소" -"는 host 를 나타내며, IPv4-주소는 사용할 고정 주소를 나타내고, " -"요청하는 host 에 대해 hostname 이 symbolic name 으로 부여됩니다. 선" -"택 사항인 임대 시간은 해당 host 에만 해당되는 시각을 설정하는데 사용" -"될 수 있습니다. 예를 들어 12h, 3d 혹은 infinite 값들이 가능합니다." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "사용자이름" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLAN 설정: %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "DHCP 요청시 전송할 Vendor Class" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM Mode" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "변경 사항이 적용되기를 기다리는 중입니다..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "실행한 명령이 끝나기를 기다리는 중입니다..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "무선" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "무선랜 네트워크" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "무선랜 개요" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "무선랜 보안" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "무선이 비활성화되어" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "무선이 연결되어 있지 않습니다" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "무선랜이 재시작중입니다..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "무선 네트워크가 꺼져 있음" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "무선 네트워크가 켜져 있음" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "받은 DNS 요청 내용을 systlog 에 기록합니다" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "System log 출력 파일 경로" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"이 메뉴에서 설치된 init script 를 활성화/비활성화 할 수 있습니다. 변경 사항" -"은 장치가 재부팅 될 때 적용되게 됩니다.
    경고: 만약 \"network\" " -"와 같은 중요 init script 를 비활성화 할 경우, 장치에 접속을 못하실 수 있습니" -"다!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "지정한 인터페이스(들)로 구성된 bridge 를 생성합니다" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "만료됨" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"할당된 DHCP-lease " -"정보가 저장되는 파일" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "Target 이 네트워크일 경우" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "local DNS 파일" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "link 없음" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "unspecified -혹은- create:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "아래에 SSH public-key 인증을 위한 공개 SSH-Key 들 (한 줄당 한개) 를 입력" -#~ "할 수 있습니다." - -#~ msgid "Design" -#~ msgstr "디자인" - -#~ msgid "Available packages" -#~ msgstr "이용 가능한 패키지" - -#~ msgid "" -#~ "Build/distribution specific feed definitions. This file will NOT be " -#~ "preserved in any sysupgrade." -#~ msgstr "" -#~ "Build/distribution 지정 feed 목록입니다. 이 파일의 내용은 sysupgrade 시 " -#~ "초기화됩니다." - -#~ msgid "" -#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " -#~ "in a sysupgrade." -#~ msgstr "" -#~ "개인이 운영하는 feed 같은 정보를 입력할 수 있는 custom feed 목록입니다. " -#~ "이 파일은 sysupgrade 시 입력된 정보가 유지됩니다." - -#~ msgid "Custom feeds" -#~ msgstr "Custom feed 들" - -#~ msgid "Distribution feeds" -#~ msgstr "Distribution feed 들" - -#~ msgid "Download and install package" -#~ msgstr "패키지 다운로드 후 설치" - -#~ msgid "Filter" -#~ msgstr "필터" - -#~ msgid "Find package" -#~ msgstr "패키지 찾기" - -#~ msgid "Free space" -#~ msgstr "여유 공간" - -#~ msgid "General options for opkg" -#~ msgstr "opkg 명령의 기본 옵션들" - -#~ msgid "Install" -#~ msgstr "설치" - -#~ msgid "Installed packages" -#~ msgstr "설치된 패키지" - -#~ msgid "OPKG-Configuration" -#~ msgstr "OPKG-설정" - -#~ msgid "Package name" -#~ msgstr "패키지 이름" - -#~ msgid "Size (.ipk)" -#~ msgstr "크기 (.ipk)" - -#~ msgid "Software" -#~ msgstr "소프트웨어" - -#~ msgid "Version" -#~ msgstr "버전" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 와 IPv6" - -#~ msgid "No chains in this table" -#~ msgstr "이 table 에는 정의된 chain 이 없음" - -#~ msgid "Activate this network" -#~ msgstr "이 네트워를 활성화합니다" - -#~ msgid "Reconnecting interface" -#~ msgstr "인터페이스 재연결중입니다" - -#~ msgid "Shutdown this network" -#~ msgstr "이 네트워크를 shutdown 합니다" - -#~ msgid "Wireless restarted" -#~ msgstr "무선랜이 재시작되었습니다" - -#~ msgid "Wireless shut down" -#~ msgstr "무선랜이 shutdown 되었습니다" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP 임대 정보" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "DHCPv6 임대 정보" - -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "정말로 네트워크를 shutdown 하시겠습니까?\\n이 인터페이스를 통해 연결하였다" -#~ "면 접속이 끊어질 수 있습니다." - -#~ msgid "Sort" -#~ msgstr "순서" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "IPv4 WAN 상태" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "IPv6 WAN 상태" - -#~ msgid "Apply" -#~ msgstr "적용" - -#~ msgid "Save & Apply" -#~ msgstr "저장 & 적용" - -#~ msgid "Leasetime" -#~ msgstr "임대 시간" diff --git a/luci-base/po/ms/base.po b/luci-base/po/ms/base.po deleted file mode 100644 index 6203dbade..000000000 --- a/luci-base/po/ms/base.po +++ /dev/null @@ -1,6343 +0,0 @@ -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-05-07 17:57+1000\n" -"PO-Revision-Date: 2010-05-07 17:57+1000\n" -"Last-Translator: Wai Chet Teow \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Translate Toolkit 1.1.1\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s sedia)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(tiada interface dipasang)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Gelanggang Tambahan --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Sila pilih --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- memperibadi --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" -"ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-Alamat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-Pintu gerbang" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-Netmask" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "IPv6 Host-Alamat atau Rangkaian (CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-Pintu gerbang" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "Konfigurasi lampu LED" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-Alamat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Pusat akses" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Aksi" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Aktive IPv4-Routen" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Aktif IPv6-Laluan" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Sambungan Aktif" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Tambah" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Pentadbiran" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Tetapan Lanjutan" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "Membenarkan pengesahan kata laluan SSH" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Izinkan semua kecualian yang disenaraikan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Izinkan senarai saja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antena 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antena 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Associated Stesen" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Authentifizierung" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Pengesahan" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Otorisasi Diperlukan" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Boleh didapati" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Kembali ke ikhtisar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Kembali ke keputusan scan" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Sandaran" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Bridge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Antara Muka Bridge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Penggunaan CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Batal" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Rantai" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Laman" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Laman diterapkan." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Saluran" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Jumlah disemak " - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "Pilih zon firewall yang anda ingin tetapkan untuk antar muka ini." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#, fuzzy -msgid "Client" -msgstr "Pelanggan" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Perintah" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Konfigurasi" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Pengesahan" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Sambungan Batas" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Kod negara" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Buat / Menetapkan dinding api-zon" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "Mengkustomisasi perilaku peranti LED jika mungkin." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP-Pilihan" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Padam" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Keterangan" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Tempat tujuan" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Alat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Jarak Optimasi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Jarak ke rangkaian terjauh ahli dalam meter." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Keanekaragaman" - -# Nur für NAT-Firewalls? -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq adalah gabungan DHCP-Pelayan danDNS-" -"Forwarder untuk NAT " -"firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Domain diperlukan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "Jangan hantar permintaan DNS tanpa nama DNS" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear menawarkan SSH kulit rangkaian aksesdan pelayan yang terintegrasi." - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "Dinamik DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP-Kaedah" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Sunting" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Mengaktifkan STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Aktifkan spanning Tree Protokol di jambatan ini" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Enkripsi" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Kesalahan" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Ethernet Adapter" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Ethernet Beralih" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Fail Sistem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Penapis swasta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Penapis tak berguna" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Selesai" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Tetapan Firewall" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Status Firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Firmware Flash" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Paksa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Fragmentasi Ambang" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Bingkai Meletup" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Setup Umum" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Menuju ke halaman konfigurasi yang relevan" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Menutup" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Di sini anda boleh mengkonfigurasi aspek asas peranti anda seperti nama host " -"atau zon." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Menyembunyikan ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Entri host" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "IP host atau rangkaian" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Nama Host" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Nama Host" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Alamat IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "Konfigurasi IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identiti" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Jika memori fizikal anda tidak cukup data yang boleh digunakan sementara " -"menukar ke peranti-penukar yang dihasilkan dalam jumlah RAM berguna yang " -"lebih tinggi. Berhati-hatilah bahawa penukaran data adalah proses yang " -"sangat lambat kerana peranti-penukar tidak boleh diakses dengan datarates " -"yang tinggi pada RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Mengabaikan /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Abaikan antara muka" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Abaikan fail yang selesai" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Masuk" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interface" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Tak Sah" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Username dan / atau password tak sah! Sila cuba lagi." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Tampak bahawa anda cuba untuk flash fail gambar yang tidak sesuai dengan " -"memori flash, sila buat pengesahan pada fail gambar!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -#, fuzzy -msgid "Join Network" -msgstr "Gabung Rangkaian" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Log Kernel" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Kunci" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Tamatkan" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Bahasa" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Sewa fail" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Sisa masa penyewaan" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Batas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Link Pada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Load" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Masa Tempatan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Soalan tempatan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Log soalan" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Login" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Logout" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Penapis alamat MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Penapis MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Senarai MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Memori" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Penggunaan Memori (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metrik" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Mode" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Alat modem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Mount Point" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Mount Points" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Mount Points menentukan di mana titik peranti memori akan melekat pada fail " -"sistem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Mounted fail sistems" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Nama" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Nama rangkaian baru" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigation" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Rangkaian" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Kemudian »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Tidak ada peraturan dalam rantai ini" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Kebisingan" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Pada halaman ini anda boleh mengkonfigurasi antara muka rangkaian. Anda " -"boleh menjembatani beberapa antara muka dengan menanda jambatan antara muka " -"gelanggang dan masukkan beberapa nama antara muka rangkaian dipisahkan " -"dengan ruang. Anda juga boleh menggunakan antara muka VLAN notasi. Seperti " -"eth0.1." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Pilihan" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Keluar" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Keseluruhan" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Pemilik" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Pengkapsulan PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Paket" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Kata laluan" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Kata laluan pengesahan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Kata Laluan Kunci Swasta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Path ke CA-Sijil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Path ke Kunci Swasta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Lakukan reboot" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Tetapan Fizikal" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pkts." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Sila masukkan username dan kata laluan anda." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Dasar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Mencegah komunikasi sesama Pelanggan" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Teruskan" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Proses" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protokol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTS-Ambang" - -# Ein / Aus, eingehend / ausgehend? -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "Baca /etc/ethers untuk mengkonfigurasikan DHCP-Server" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Reboot" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Reboot sistem operasi peranti anda" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Menerima" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Antena Penerima" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Rujukan" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Menghapuskan" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Ulangi scan" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Tukar entri" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Reset" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Reset Loket" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Restart Firewall" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Mengembalikan" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Kembalikan sandaran" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Kembali" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Laluan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Laluan menentukan di mana interface dan gateway host atau rangkaian tertentu " -"yang boleh dicapai." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Simpan" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Simpan & Melaksanakan" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Scan" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Tugas Jadual" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Rujuk \"mount\" laman manual untuk detail" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Pisahkan Pelanggan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Perkhidmatan" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Isyarat" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Saiz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Skip" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Skip ke kadar" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Skip ke navigation" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Slot masa" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Sumber" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Mula" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Laluan IPv4 Statik" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Laluan IPv6 Statik" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Statische Einträge" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Laluan Statik" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Status" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Order Ketat" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Menyerahkan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Beralih" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Sistem" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Log Sistem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "" - -# same as RX -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Meja" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Sasaran" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Menamatkan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Karakter yang diizinkan adalah: A-Z, a-z, " -"0-9 dan _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "Fail peranti memori atau partisyen, (contohnya: /dev/sda)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "Failsistem yang digunakan untuk memformat memori (contohnya: ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"Fail gambar flash telah di-upload. Berikut ini adalah checksum dan saiz fail " -"yang berdaftar, membandingkannya dengan fail gambar asli untuk memastikan " -"integriti data.
    Klik butang terus di bawah untuk memulakan prosedur " -"flash." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Laman berikut telah kembali" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Peraturan berikut sedang aktif pada sistem ini." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"Sistem ini sekarang mula flash.
    JANGAN TUTUP KUASA UNTUK PERANTI!
    Tunggu beberapa minit sehingga anda cuba untuk menyambung kembali. Mungkin " -"anda perlu mengemas kini alamat komputer anda untuk mencapai peranti lagi, " -"bergantung pada tetapan anda." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"Format Fail gambar yang diupload tidak disokongkan. Pastikan anda memilih " -"fail format gambar yang generik untuk platform anda." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Tema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "Ini adalah DHCP hanya dalam rangkaian tempatan." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"Ini adalah crontab sistem di mana tugas-tugas yang dijadualkan boleh " -"ditakrifkan." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Senarai ini memberikan gambaran lebih pada proses sistem yang sedang " -"berjalan dan statusnya." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" -"Laman ini memberikan gambaran lebih dari saat ini sambungan rangkaian yang " -"aktif." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Bahagian ini belum mengandungi nilai-nilai lagi" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Zon masa" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Lalu lintas" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Pemindahan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Kelajuan Penghantaran" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Pancar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Daya Pancar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Antena Pemancar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Jenis" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Perubahan yang belum disimpan" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Uploaded Fail" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Masa Aktif" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Guna /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Diguna" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Username" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM Mod" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"WPA-Enkripsi memerlukan pemohan wpa (untuk mod pelanggan) atau hostapd " -"(untuk AP dan mod ad-hoc) yang akan dipasangkan." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Adapter Wayarles" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Rangkaian Wayarles" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Gambaran keseluruhan Wayarles" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Keselamatan WLAN" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "mencipta jambatan di antara muka tertentu" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "mematikan" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "fail dimana DHCP-sewa akan disimpan" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "jika target itu ialah rangkaian" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "Fail DNS tempatan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "Tidak dirinci -atau- buat:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Kembali" - -#~ msgid "Design" -#~ msgstr "Disain" - -#~ msgid "Download and install package" -#~ msgstr "Turun dan memasang pakej" - -#~ msgid "Filter" -#~ msgstr "Penapis" - -#~ msgid "Find package" -#~ msgstr "Cari pakej" - -#~ msgid "Install" -#~ msgstr "Memasang" - -#~ msgid "OK" -#~ msgstr "Baik" - -#~ msgid "OPKG-Configuration" -#~ msgstr "OPKG-Konfigurasi" - -#~ msgid "Package name" -#~ msgstr "Nama pakej" - -#~ msgid "Software" -#~ msgstr "Perisian" - -#~ msgid "Version" -#~ msgstr "Versi" - -#~ msgid "none" -#~ msgstr "tidak ada" - -#~ msgid "No chains in this table" -#~ msgstr "Tiada rantai dalam jadual ini" - -#~ msgid "help" -#~ msgstr "Membantu" - -#~ msgid "Apply" -#~ msgstr "Melaksanakan" - -#~ msgid "Applying changes" -#~ msgstr "Melaksanakan perubahan" - -#~ msgid "Action" -#~ msgstr "Aksi" - -#~ msgid "Buttons" -#~ msgstr "Butang" - -#~ msgid "Handler" -#~ msgstr "Kawalan" - -#, fuzzy -#~ msgid "Maximum hold time" -#~ msgstr "Memegang masa maksimum" - -#, fuzzy -#~ msgid "Minimum hold time" -#~ msgstr "Memegang masa minimum" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "Path ke eksekusi yang mengendalikan acara butang" - -#, fuzzy -#~ msgid "Specifies the button state to handle" -#~ msgstr "Menentukan state butang untuk melaku" - -#~ msgid "This page allows the configuration of custom button actions" -#~ msgstr "Laman ini membolehkan konfigurasi butang tindakan peribadi" - -#~ msgid "Leasetime" -#~ msgstr "Masa penyewaan" - -#~ msgid "automatic" -#~ msgstr "automatik" - -#~ msgid "AR Support" -#~ msgstr "AR-Penyokong" - -#~ msgid "Background Scan" -#~ msgstr "Latar Belakang Scan" - -#~ msgid "Compression" -#~ msgstr "Mampatan" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Mematikan pemasa HW-Beacon" - -#~ msgid "Do not send probe responses" -#~ msgstr "Jangan menghantar jawapan penyelidikan" - -#~ msgid "Fast Frames" -#~ msgstr "Frame Cepat" - -#~ msgid "Maximum Rate" -#~ msgstr "Rate Maksimum" - -#~ msgid "Minimum Rate" -#~ msgstr "Rate Minimum" - -#~ msgid "Multicast Rate" -#~ msgstr "Multicast Rate" - -#~ msgid "Outdoor Channels" -#~ msgstr "Saluran Outdoor" - -#~ msgid "Regulatory Domain" -#~ msgstr "Peraturan Domain" - -#~ msgid "Separate WDS" -#~ msgstr "Pisahkan WDS" - -#~ msgid "Turbo Mode" -#~ msgstr "Mod Turbo" - -#~ msgid "XR Support" -#~ msgstr "Sokongan XR" diff --git a/luci-base/po/no/base.po b/luci-base/po/no/base.po deleted file mode 100644 index fca2c9e0c..000000000 --- a/luci-base/po/no/base.po +++ /dev/null @@ -1,6625 +0,0 @@ -msgid "" -msgstr "" -"PO-Revision-Date: 2013-03-25 23:36+0200\n" -"Last-Translator: protx \n" -"Language: no\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d minutters vindu, %d sekunds intervall)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s Tilgjengelig)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(tom)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(ingen grensesnitt tilknyttet)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Tilleggs Felt --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Vennligst velg --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- egendefinert --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "1 minutts belastning:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "15 minutters belastning:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "5 minutters belastning:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS spørre port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS server port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"DNS servere skal følge rekkefølgen " -"i oppslagsfilen ved spørringer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-Nettmaske" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-Adresse eller " -"Nettverk (CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED Konfigurasjon" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED Navn" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Maksimalt antall DHCP leier" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Maks. EDNS0 pakke størrelse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Maks. samtidige spørringer" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "APR terskel for nytt forsøk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM Broer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" -"ATM Virtuell kanal " -"identifikator (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" -"ATM Virtuell plasserings " -"identifikator (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"ATM broer viser innkapslede ethernet i AAL5 forbindelser som virtuelle Linux-" -"nettverk grensesnitt, dette kan brukes sammen med DHCP eller PPP for å koble " -"seg mot en leverandørs nettverk." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "ATM enhetsnummer" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Tilgangskonsentrator" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Aksesspunkt" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Handlinger" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Aktive IPv4-Ruter" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Aktive IPv6-Ruter" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Aktive Tilkoblinger" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Aktive DHCP Leier" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Aktive DHCPv6 Leier" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc (Uavhengig)" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Legg til" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "Legg det lokale domenesuffikset til navn utgitt fra vertsfiler" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Legg til grensesnitt..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Tilleggs vertsfiler" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Adresse" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Adresse for tilgang til lokal relébro" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administrasjon" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Avanserte Innstillinger" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Varsle" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "Tillat SSH passord godkjenning" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Tillat alle unntatt oppførte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Tillat kun oppførte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Tillat lokalvert" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "Tillat eksterne verter å koble til lokale SSH videresendt porter" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Tillat root pålogginger med passord" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Tillat bruker root å logge inn med passord" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "Tillat oppstrøms svar i 127.0.0.0/8 nettet, f.eks for RBL tjenester" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antenne 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antenne 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Antennekonfigurasjon" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Alle soner" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Tilknytt grensesnitt..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Tilkoblede Klienter" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Godkjenning" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autoritativ" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Autorisasjon er nødvendig" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Automatisk oppdatering" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Tilgjengelig" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Gjennomsnitt:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Tilbake" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Tilbake til oversikt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Tilbake til konfigurasjon" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Tilbake til oversikt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Tilbake til skanne resultat" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Sikkerhetskopi" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Sikkerhetskopiering/Firmware oppgradering" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Sikkerhetskopier filliste" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Ugyldig adresse oppgitt!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Nedenfor er listen med filer som blir sikkerthetskopiert. Listen består av " -"konfigurasjonsfiler som er merket av opkg, essensielle enhets filer og andre " -"filer valgt av bruker." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Bitrate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Overstyr falske NX Domener" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Bro" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Sammenkoble grensesnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Bro enhetsnummer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Slå på ved oppstart" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Broadcom 802.11%s Trådløs Kontroller" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom BCM%04x 802.11 Trådløs Kontroller" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Bufret" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU forbruk (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Avbryt" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Lenke" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Endringer" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Endringer utført." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Endrer administrator passordet for tilgang til enheten" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Kanal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Kontroller" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Kontrollsum" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Velg brannmur sonen du ønsker å knytte til dette grensesnittet. Velg " -"uspesifisert for å fjerne grensesnittet fra den tilknyttede sonen. " -"Eller fyll ut Opprett feltet for å definere en ny sone og tilknytte " -"grensesnittet til det." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Velg det eller de nettverk du vil legge til dette trådløse grensesnittet, " -"eller fyll ut Opprett feltet for å definere et nytt nettverk." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Krypteringsmetode" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Klikk \"Opprett arkiv\" for å laste ned et tar arkiv av de gjeldende " -"konfigurasjons filer." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Klient" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "Klient ID som sendes ved DHCP spørring" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Lukk inaktiver tilkoblinger etter angitt antall sekunder, bruk 0 for en " -"kontinuerlig tilkobling" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Lukk liste..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Henter data..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Kommando" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Vanlige Innstillinger" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Konfigurasjon" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Bekreftelse" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Koble til" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Tilkoblet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Tilkoblingsgrense (antall)" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Tilkoblinger" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Land" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Landskode" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Gjelder det følgende grensesnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Gjelder de følgende grensesnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Opprett/Tildel brannmur sone" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Opprett Grensesnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Opprett en bro over flere grensesnitt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Kritisk" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Cron logg nivå" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Egendefinerte Grensesnitt" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Tilpasser oppførselen til enhetens LEDs om mulig." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP Server" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP og DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP klient" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP-Alternativer" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "DNS videresendinger" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Feilsøking" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Standard %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Standard gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Standard tilstand" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Definer et navn for dette nettverket." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Definer flere DHCP valg, f.eks \"192.168.2.1,192.168.2.2\" som " -"annonserer forskjellige DNS servere til klientene." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Fjern" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Fjern dette nettverket" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Beskrivelse" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Destinasjon" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Enhet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Enhet Konfigurasjon" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Nettverksdiagnostikk" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Katalog" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Deaktiver" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Deaktiver DHCP " -"for dette nettverket." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Deaktivert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Forkast oppstrøms RFC1918 svar" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Avstand Optimalisering" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Avstand i meter til det medlem av nettverket som er lengst unna." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Antennevariasjon" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq er en kombinert DHCP-Server og DNS-" -"Fremsender for NAT " -"brannmurer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "Ikke cache negative svar, f.eks for ikke eksisterende domener" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Ikke videresend forespørsler som ikke kan besvares med offentlige " -"navneservere" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "Ikke videresend reverserte oppslag for lokale nettverk" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Domene kreves" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Domene hviteliste" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Ikke videresend DNS-Forespørsler " -"uten DNS-Navn" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Last ned sikkerhetskopi" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Dropbear Instans" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear tilbyr SSH-nettverks shell " -"tilgang og en integrert SCP server" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"Dynamisk DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Dynamisk tunnel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Dynamisk tildeling av DHCP adresser til klienter. Om deaktivert, kan en kun " -"bruke klienter med statisk leie." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP-metode" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Endre" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Endre dette grensesnittet" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Endre dette nettverket" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Krisesituasjon" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Aktiver" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Aktiver STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Aktiver HE,net dynamisk endepunkt oppdatering" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Aktiver IPv6 på PPP lenke" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Aktiver Jumbo Frames gjennomgang" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Aktiver NTP klient" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Aktiver TFTP server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Aktiver VLAN funksjonalitet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Aktiver 'læring' og 'aldring'" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Aktiver dette monteringspunktet" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Aktiver denne swapenhet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Aktiver/Deaktiver" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Aktivert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Aktiverer Spanning Tree Protocol på denne broen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Innkapsling modus" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Kryptering" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Sletter..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Feil" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Ethernet Tilslutning" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Ethernet Svitsj" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Utvid vertsliste" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Utgår" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "Utløpstid på leide adresser, minimum er 2 minutter (2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Ekstern systemlogg server" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Ekstern systemlogg server port" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Fil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Filnavn fra boot image annonsert til klienter" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Filsystem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtrer private" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtrer ubrukelige" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Finn og koble til nettverk" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Fullfør" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Brannmur" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Brannmur Innstillinger" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Brannmur Status" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Firmware Versjon" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Fast kilde port for utgående DNS-spørringer" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Firmware Oppradering" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Flash firmware..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Flash nytt firmware image" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Flash operasjoner" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Flasher..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Bruk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Bruk CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" -"Bruk DHCP i dette nettverket, selv om en annen DHCP server er oppdaget." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Bruk TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Bruk TKIP og CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Videresend DHCP trafikk" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Videresend kringkastingstrafikk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Videresending modus" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Fragmenterings Terskel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Frame Bursting" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Ledig" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Kun GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Gateway" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Gateway porter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Generelle Innstillinger" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Generelt Oppsett" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Opprett arkiv" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Generell 802.11%s Trådløs Kontroller" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "Det oppgitte passordet var ikke korrekt, passord ble ikke endret!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Gå til passord konfigurasjon..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Gå til relevant konfigurasjonen side" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "HE.net passord" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Slå av" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Her kan du konfigurere grunnleggende aspekter av enheten som f.eks. dens " -"vertsnavn eller tidssone." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Skjul ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Vertsoppføringer" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Verts utløpstid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" -"Verts-IP eller Nettverk" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Vertsnavn" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Vertsnavn som sendes ved DHCP forespørsel" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Vertsnavn" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP adresse" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4 Brannmur" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4 adresse" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "IPv4 kringkasting" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "IPv4 gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "IPv4 nettmaske" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "IPv4 prefikslengde" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-Adresse" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6 Brannmur" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "IPv6 adresse" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "IPv6 gateway" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "IPv6 prefiks" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "IPv6 prefikslengde" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-Adresse" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-i-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-over-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-over-IPv4 (6til4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identitet" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "Hvis oppgitt vil denne enhet monteres ut fra dens UUID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "Hvis oppgitt vil denne enheten bli montert utfra dens Volumnavn" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Dersom ikke avmerket blir ingen standard rute konfigurert" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "Dersom ikke avmerket blir de annonserte DNS server adresser ignorert" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Om ruterens fysiske minne er utilstrekkelig, ubrukte data kan midlertidig " -"gjøres om til en swap-enhet som gir deg mere tilgjengelig RAM. Vær oppmerksom på at bruk av swap er " -"mye langsommere en RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignorer grensesnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignorer oppslagsfil" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Firmware" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "i" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Tidsavbrudd etter innaktivitet" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Innkommende:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Informasjon" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Oppstartskript" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Oppstartsskript" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Installer pakken %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Installer protokoll utvidelser..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Grensesnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Grensesnitt Konfigurasjon" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Grensesnitt Oversikt" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Grensesnittet kobler til igjen..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Grensesnittet er ikke tilgjengelig eller er ikke tilknyttet." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Grensesnitt" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Intern server feil" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Ugyldig" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "Ugyldig VLAN ID gitt! Bare IDer mellom %d og %d er tillatt." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "Ugyldig VLAN ID gitt! Bare unike ID'er er tillatt" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Ugyldig brukernavn og/eller passord! Vennligst prøv igjen." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Det virker som du prøver å flashe med en firmware som ikke passer inn i " -"flash-minnet, vennligst kontroller firmware filen!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "JavaScript kreves!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Koble til nettverket" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Koble til nettverk: Trådløs Skanning" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Behold innstillinger" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Kjerne Logg" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Kjerne Versjon" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Nøkkel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Nøkkel #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Drep" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "L2TP Server" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "LCP ekko feil terskel" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "LCP ekko intervall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Volumnavn" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Språk" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Språk og Utseende" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Leie-fil" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Gjenværende leietid" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "La stå tomt for automatisk oppdagelse" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "La stå tomt for å bruke gjeldene WAN adresse" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Forklaring:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Grense" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Forbindelse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Liste med DNS servere som " -"forespørsler blir videresendt til" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Liste over domener hvor en tillater RFC1918 svar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "Liste over verter som returneren falske NX domene resultater" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Lytt kun på det angitte grensesnitt, om ingen er angitt lyttes det på alle" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Lytte-port for innkommende DNS-spørring" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Belastning" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Belastning Gjennomsnitt" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Laster" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Lokal IPv4 adresse" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Lokal IPv6 adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Lokal Oppstart" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Lokal tid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Lokalt domene" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Lokalt domene spesifikasjon. Navn som passer dette domenet blir aldri " -"videresendt, de blir kun løst av DHCP eller vertsfiler" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "Lokalt domenesuffiks lagt til DHCP navn og vertsfil oppføringer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Lokal server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Lokaliser vertsnavn avhengig av subnett hvis flere IP-adresser er " -"tilgjengelig" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Lokalisere søk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Logg nivå" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Logg spørringer" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Logging" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Logg inn" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Logg ut" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "Laveste leide adresse, forskjøvet fra nettverks adressen." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-Adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "MAC-Addresse Filter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-Filter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "MAC-Liste" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Maksimalt antall aktive DHCP leieavtaler" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Maksimalt antall samtidige DNS spørringer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Maksimal tillatt størrelse på EDNS.0 UDP-pakker" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Maksimalt antall sekunder å vente på at modemet skal bli klart" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Maksimalt antall utleide adresser." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Minne" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Minne forbruk (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metrisk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Mangler protokoll utvidelse for proto %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Modus" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Modem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Modem initiering tidsavbrudd" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Monterings Enhet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Monterings Punkt" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Monterings Punkter" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Monterings Punkter - Monterings Enhet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Monterings Punkter - Swap Enhet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Monterings punkter definerer hvor lagrings enheter blir tilsluttet " -"filsystemet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Monterings alternativer" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Monterings punkt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Monterte Filsystemer" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Flytt ned" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Flytt opp" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "NTP server kandidater" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Navn" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Navnet til det nye grensesnittet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Navnet til det nye nettverket" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigasjon" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Nettmaske" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Nettverk" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Nettverks Verktøy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Nettverks boot image" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Nettverk uten grensesnitt." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Neste »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Ingen DHCP server er konfigurert for dette grensesnittet" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Ingen filer funnet" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Ingen informasjon tilgjengelig" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Ingen negative cache" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Ingen nettverk er konfigurert på denne enheten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Ingen nettverksnavn spesifisert" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Ruteren er ikke passordbeskyttet!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Ingen regler i denne tabellen" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Ingen sone tilknyttet" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Støy" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Støy:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Ingen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normal" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Ikke funnet" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Ikke tilknyttet" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Ikke tilkoblet" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Merk" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Forsinkelse ved tilstand Av" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"På denne siden kan du konfigurere nettverks grensesnittet. Du kan " -"sammenkoble flere grensesnitt ved å hake av \"Sammekoble grensesnitt\" " -"feltet og skrive inn navn på grensesnittene atskilt med mellomrom. Du kan " -"også bruke VLAN betegnelse " -"INTERFACE.VLANNR (f.eks: " -"eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Forsinkelse ved tilstand -På-" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Enten Vertsnavn eller Mac-adresse må oppgis!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Ett eller flere felt inneholder ugyldige verdier!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Ett eller flere obligatoriske felter har ingen verdi!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Åpne liste..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Innstilling endret" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Innstilling fjernet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Alternativer" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Andre:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Ut" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Ugående:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "Overstyr MAC adresse" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "Overstyr MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Overstyr gatewayen mottatt av DHCP respons" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Overstyr nettmaske sendt til klienter. Normalt er nettmasken beregnet ut fra " -"subnettet som blir tildelt." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "Overstyr tabellen som brukes for interne ruter" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Oversikt" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Eier" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "PAP/CHAP passord" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "PAP/CHAP brukernavn" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "PPPoA Innkapsling" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Pakken libiwinfo er nødvendig!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Pakker" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "En del av sone %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Passord" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Passord godkjenning" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Passord for privatnøkkel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Sti til CA-sertifikat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Sti til klient-sertifikat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Sti til privatnøkkel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Maksimalt:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Omstart nå" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Foreta nullstilling" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Phy Hastighet:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Fysiske Innstillinger" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pakker." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Skriv inn ditt brukernavn og passord." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Policy" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Port status:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"Annta at peer er uten forbindelse om angitt LCP ekko feiler, bruk verdi 0 " -"for å overse feil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Hindrer klient-til-klient kommunikasjon" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Fortsett" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Prosesser" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protokoll" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Protokoll til det nye grensesnittet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Protokoll støtte er ikke installert" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Funger som NTP Server" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Lag nytt nettverk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Kvalitet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTS Terskel" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "RX Rate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Radius-Accounting-Port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Radius-Accounting-Secret" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Radius-Accounting-Server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Radius-Authentication-Port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Radius-Authentication-Secret" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Radius-Authentication-Server" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Benytt /etc/ethers for å konfigurere DHCP-Server" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Fjerne dette trådløse nettverket? Slettingen kan ikke omgjøres!\n" -"Du kan miste kontakten med ruteren om du er tilkoblet via dette nettverket." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Vil du nullstille alle endringer?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Vil du endre protokoll?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Tilkoblinger Sanntid" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Grafer i sanntid" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Belastning Sanntid" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Trafikk Sanntid" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Trådløst i sanntid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Binde beskyttelse" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Omstart" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Starter på nytt..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Omstarter operativsystemet på enheten" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Motta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Mottak antenne" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Koble til igjen" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Referanser" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Relay" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Relay bro" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Relay mellom nettverk" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Relay bro" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Ekstern IPv4 adresse" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Avinstaller" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Skann på nytt" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Erstatt oppføring" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Erstatt trådløs konfigurasjon" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Er nødvendig for noen nettleverandører, f.eks Charter med DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Nullstill" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Nullstill Tellere" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Nullstill til standard innstilling" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Oppslag og Vertsfiler" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Oppslagsfil" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Omstart" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Omstart Brannmur" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Gjenoppretting" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Gjenopprett sikkerhetskopi" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Vis/Skjul passord" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Tilbakestill" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Rot" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Rot katalog for filer gitt fra TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Ruter Passord" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Ruter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Ruter, angir hvilket nettverksgrensesnitt og hvilken gateway som brukes for " -"å nå et gitt nettverk eller vert." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Kjør filsystem sjekk før montering av enheten" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Kjør filsystem sjekk" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "SSH Tilgang" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH-Nøkler" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Lagre" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Lagre & Aktiver" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Skann" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Planlagte Oppgaver" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Seksjon lagt til" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Seksjon fjernet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Se \"mount\" manpage for detaljer" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"Send LCP ekko forespørsler etter angitt intervall i sekunder, dette er kun " -"gjeldene dersom feilterskelen er nådd" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Separerte Klienter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Server Innstillinger" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Tjeneste navn" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Tjeneste type" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Tjenester" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "Oppsett tidssynkronisering" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Oppsett DHCP server" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Vis gjeldende liste med sikkerhetskopifiler" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Slå av dette grensesnittet" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Signal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Signal:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Størrelse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Gå videre" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Gå til innhold" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Gå til navigasjon" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Slot tid" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Noen felt er ugyldige, kan ikke lagre verdier!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Beklager, objektet du spurte om ble ikke funnet." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Beklager, det oppstod en uventet feil på serveren." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"Beklager, men finner ikke støtte for 'sysupgrade', ny firmware må derfor " -"flashes manuelt. Viser til wiki for installering av firmare på forskjellige " -"enheter." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Kilde" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Hvor lagrings enheten blir tilsluttet filsystemet (f.eks. /mnt/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Angir den lyttende porten for denne Dropbear instansen" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Angir maksimalt antall feilede ARP forespørsler før verter ansees frakoblet" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "Angir maksimalt antall sekunder før verter ansees som frakoblet" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Angi krypteringsnøkkelen her." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Start" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Start prioritet" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Oppstart" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Statiske IPv4 Ruter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Statiske IPv6 Ruter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Statiske Leier" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Statiske Ruter" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Statisk adresse" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Statisk leieavtaler brukes til å tildele faste IP adresser og symbolske " -"vertsnavn til DHCP klienter. Dette er nødvendig om grensesnittet ikke er " -"dynamisk konfigurert og kun klienter med dhcp leieavtale får IP." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Status" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Stop" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Streng overholdelse" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Send" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Swap Enhet" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Svitsj" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Svitsj %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Svitsj %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Svitsj protokoll" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Synkroniser med nettleser" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Synkroniser..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "System" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "System Logg" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "System Egenskaper" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "System logg buffer størrelse" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "TFTP Innstillinger" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "TFTP server roten" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "TX rate" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tabell" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Mål" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Avslutte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"Enhet Konfigurasjon seksjonen omhandler innstillingene av den " -"trådløse enheten som kanaler, sende stryke eller antenne valg. Disse " -"innstillingene er delt mellom alle definerte trådløse nettverk opprettet " -"utfra denne enhet. (om den trådløse enheten støtter mulit-SSID). Nettverks " -"innstillinger som kryptering eller kanaler er gruppert i Grensesnitt " -"Konfigurasjon." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Pakken libiwinfo-lua er ikke installert. Du må installere denne " -"pakken for å kunne konfigurerer trådløse enheter!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"IPv6 prefikset tilordnet mot leverandør, ender som regel med ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Gyldige tegn er: A-Z, a-z, 0-9 og " -"_" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"Filenheten til partisjonen eller minnet (f.eks." -" /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"Filsystemet som ble brukt til å formatere partisjonen eller minnet. (f.eks. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"Firmwaren ble lastet opp. Nedenfor er kontrollsum og filstørrelse oppført, " -"sammenlign dem med den opprinnelige filen for å sikre dataintegriteten.
    Klikk \"Fortsett\" nedenfor for å starte flash prosedyren." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Følgende endringer er forkastet" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Følgende regler er aktiver på systemet." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "Det angitte nettverksnavnet er ikke unikt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"Maskinvaren er ikke multi-SSID kapabel og den ekisterende konfigurasjonen " -"vil bli erstattet om du fortsetter." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "Lengden IPv4 prefikset i bits, resten brukt i IPv6-adresser." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "Lengden på IPv6 prefikset i bits" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"Nettverks portene på ruteren kan kombineres til flere VLANs der datamaskiner kan kommunisere direkte " -"med hverandre. VLANs " -"brukes ofte for å skille ulike nettverk segmenter. Det er vanlig og ha en " -"Uplink port for tilkobling til større nettverk som internett og andre porter " -"til lokalt nettverk." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "Den valgte protokoll må ha en enhet tilknyttet" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"Systemet sletter konfigurasjonspartisjonen nå, enheten vil bli startet på " -"nytt når dette er utført." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"Systemet flashes nå.
    IKKE SLÅ AV ENHETEN!
    Vent noen minutter før " -"du prøver å koble til igjen. Det kan være nødvendig å fornye ip-adressen til " -"datamaskinen din for å nå enheten på nytt. (avhengig av innstillingene dine)" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"Den opplastede programvaren er av et format som ikke støttes. Sørg for at du " -"velger det generelle firmware-bildet for din plattform." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Tema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Det er ingen aktive leieavtaler." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Det finnes ingen endriger å reversere!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Det finnes ingen endringer!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Det er ingen enhet som er tilordnet ennå, vennligst legg til en " -"nettverksenhet i \"Fysiske Innstillinger\"" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Det er ikke satt noe passord på denne ruter. Vennligst konfigurer et " -"passord, dette beskytter webgrensesnittet og aktiverer SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "Dette IPv4 adressen til relayet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"Dette er en liste med 'shell glob patterns' for å matche filer og kataloger " -"som skal inkluderes under sysupgrade. Endrede filer i /etc/config/ og " -"enkelte andre konfigurasjoner blir automatisk bevart." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Dette er innholdet i /etc/rc.local. Her kan du legge til egne kommandoer som " -"blir startet ved slutten av boot sekvensen. (før 'exit 0')" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"Dette er den lokale endepunkt adressen som ble tildelt av tunnel 'broker', " -"adressen ender vanligvis med ...:2/64" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Dette er den eneste DHCP server i det lokale nettverket" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "Dette er systemets crontab, hvor planlagte oppgaver kan defineres." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" -"Dette er vanligvis adressen til nærmeste PoP som drives av tunell 'broker'" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "Denne listen gir en oversikt over kjørende prosesser og deres status." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" -"Denne siden gir en oversikt over gjeldende aktive nettverkstilkoblinger." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Denne seksjonen inneholder ennå ingen verdier" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Tidssynkronisering" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Tiden Synkroniseringen er ikke konfigurert ennå." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Tidssone" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"For å gjenopprette konfigurasjonsfiler, kan du her laste opp et backup arkiv " -"som ble opprettet tidligere. For å nullstille firmwaren til opprinnelig " -"tilstand, klikker du på \"Utfør nullstilling\" (kun mulig på squashfs " -"firmwarer)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Totalt Tilgjengelig" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Trafikk" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Overføring" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Overførings rate" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Sende" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Sende styrke" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Sende Antenne" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Utløser" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Utløsende Tilstand" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "Tunnel ID" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Tunnel grensesnitt" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Tx-Styrke" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Type" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Kun UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USB Enhet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Kan ikke sende" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Ukjent" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Uhåndtert" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Ulagrede Endringer" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Protokoll type er ikke støttet." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Last her opp en sysupgrade-kompatibel firmware som skal erstatte den " -"kjørende firmware. Merk av \"Behold innstillinger\" for å beholde gjeldene " -"konfigurasjon. (en kompatibel firmware er nødvendig)" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Last opp arkiv..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Opplastet Fil" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Oppetid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Bruk /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Bruk DHCP gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Bruk DNS servere annonsert av peer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Bruk ISO/IEC 3166 alpha2 landskoder." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "Bruk MTU på tunnel grensesnitt" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "Bruk TTL på tunnel grensesnitt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Bruk kringkasting flagg" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Bruk egendefinerte DNS servere" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Bruk standard gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Bruk gateway metrikk" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Bruk rutingtabellen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Bruk Legg til knappen får å legge til en leieavtale. MAC-" -"Adresse identifiserer verten, IPv4-Adresse angir hvilken " -"statisk IP adresse som skal brukes og Vertsnavn blir symbolsk " -"tilknyttet den anmodende verten." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Brukt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Brukte Nøkler" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Brukernavn" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANs på %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANs på %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "VPN server" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "Leverandør klasse som sendes ved DHCP spørring" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Bekreft" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "WEP åpent system" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "WEP delt nøkkel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "WEP passord" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM Modus" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "WPA passord" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"WPA-Kryptering krever at wpa_supplicant (for klient-modus) eller hostapd " -"(for AP og ad-hoc-modus) er installert." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Venter på at endringer utføres..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Venter på at kommando fullføres..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Advarsel" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Trådløs" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Trådløs Tilslutning" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Trådløst Nettverk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Trådløs Oversikt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Trådløs Sikkerhet" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Trådløs er deaktiver" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Trådløs er ikke tilknyttet" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Trådløst starter på nytt..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Trådløst nettverk er deaktivert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Trådløst nettverk er aktivert" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Skriv mottatte DNS forespørsler til syslog" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Her kan du aktivere eller deaktivere installerte oppstartsskript. Enheten må " -"omstartes før endringene blir tatt i bruk.
    Advarsel: Om du " -"deaktiverer nødvendige init skript som f.eks. \"nettverk\", kan enheten bli " -"utilgjengelig! " - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Du må aktivere JavaScript i nettleseren din ellers vil ikke LuCI fungere " -"skikkelig." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "enhver" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "brokoblet" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "opprett:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "Oppretter en bro mellom angitte grensesnitt" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "Deaktiver" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "utgått" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"filen der gitt DHCP-leier vil bli lagret" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "videresend" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "full-dupleks" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "halv-dupleks" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "skjult" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "Dersom målet er et nettverk" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "inndata" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "lokal DNS-fil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "nei" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "ingen forbindelse" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "av" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "på" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "åpen" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "rutet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "tagget" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "ukjent" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "ubegrenset" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "uspesifisert" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "uspesifisert --eller-- opprett:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "utagget" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "ja" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Tilbake" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Her kan du lime inn felles SSH-nøkler(en per linje), for SSH godkjenning." - -#~ msgid "Password successfully changed!" -#~ msgstr "Passordet er endret!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Ukjent feil, passordet ble ikke endret!" - -#~ msgid "Design" -#~ msgstr "Design" - -#~ msgid "Available packages" -#~ msgstr "Tilgjengelige pakker" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Viser bare pakker som inneholder" - -#~ msgid "Download and install package" -#~ msgstr "Last ned og installer pakken" - -#~ msgid "Filter" -#~ msgstr "Filter" - -#~ msgid "Find package" -#~ msgstr "Finn pakke" - -#~ msgid "Free space" -#~ msgstr "Ledig plass" - -#~ msgid "Install" -#~ msgstr "Installer" - -#~ msgid "Installed packages" -#~ msgstr "Installerte pakker" - -#~ msgid "No package lists available" -#~ msgstr "Ingen pakkelister tilgjengelig" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "OPKG-Konfigurasjon" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Pakkelistene er eldre enn 24 timer" - -#~ msgid "Package name" -#~ msgstr "Pakkenavn" - -#~ msgid "Software" -#~ msgstr "Programvare" - -#~ msgid "Update lists" -#~ msgstr "Oppdater lister" - -#~ msgid "Version" -#~ msgstr "Versjon" - -#~ msgid "none" -#~ msgstr "ingen" - -#~ msgid "Disable DNS setup" -#~ msgstr "Deaktiver DNS oppsett" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 og IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Kun IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Kun IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Gyldig leietid" - -#~ msgid "Multicast address" -#~ msgstr "Multicast adresse" - -#~ msgid "Protocol family" -#~ msgstr "Protokoll familie" - -#~ msgid "No chains in this table" -#~ msgstr "Ingen lenker i denne tabellen" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Konfigurasjonsfiler vil bli bevart." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Merk: Konfigurasjonsfiler vil bli slettet" - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Aktiver dette nettverket" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Hermes 802.11b Trådløs Kontroller" - -#~ msgid "Interface is shutting down..." -#~ msgstr "Grensesnittet slår seg av..." - -#~ msgid "Interface reconnected" -#~ msgstr "Grensesnittet er koblet til igjen" - -#~ msgid "Interface shut down" -#~ msgstr "Grensesnittet er slått av" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Prism2/2.5/3 802.11b Trådløs Kontroller" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "RaLink 802.11%s Trådløs Kontroller" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "Slå av dette grensesnittet \"%s\" ?\n" -#~ "Du kan miste kontakten med ruteren om du er tilkoblet via dette " -#~ "grensesnittet." - -#~ msgid "Reconnecting interface" -#~ msgstr "Kobler til igjen" - -#~ msgid "Shutdown this network" -#~ msgstr "Slå av dette nettverket" - -#~ msgid "Wireless restarted" -#~ msgstr "Trådløst startet på nytt" - -#~ msgid "Wireless shut down" -#~ msgstr "Trådløst er slått av" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP Leier" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "DHCPv6 Leier" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "Fjerne dette grensesnittet? Slettingen kan ikke omgjøres!\n" -#~ "Du kan miste kontakten med ruteren om du er tilkoblet via dette " -#~ "grensesnittet." - -#, fuzzy -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "Slå av dette nettverket ?\n" -#~ "Du kan miste kontakten med ruteren om du er tilkoblet via dette " -#~ "grensesnittet." - -#~ msgid "Sort" -#~ msgstr "Sortering" - -#~ msgid "help" -#~ msgstr "Hjelp" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "IPv4 WAN Status" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "IPv6 WAN Status" - -#~ msgid "Apply" -#~ msgstr "Bruk" - -#~ msgid "Applying changes" -#~ msgstr "Utfører endringer" - -#~ msgid "Configuration applied." -#~ msgstr "Konfigurasjons endring utført." - -#~ msgid "Save & Apply" -#~ msgstr "Lagre & Aktiver" - -#~ msgid "The following changes have been committed" -#~ msgstr "Følgende endringer er foretatt" - -#~ msgid "There are no pending changes to apply!" -#~ msgstr "Det finnes ingen endringer som kan utføres!" - -#~ msgid "Action" -#~ msgstr "Handling" - -#~ msgid "Buttons" -#~ msgstr "Knapper" - -#~ msgid "Handler" -#~ msgstr "Behandler" - -#~ msgid "Maximum hold time" -#~ msgstr "Maksimal holde tid" - -#~ msgid "Minimum hold time" -#~ msgstr "Minimum holde tid" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "Sti til program som håndterer handling ved bruk av knapp" - -#~ msgid "Specifies the button state to handle" -#~ msgstr "Spesifiserer knappens handlemønster" - -#~ msgid "This page allows the configuration of custom button actions" -#~ msgstr "" -#~ "Denne siden gir mulighet for å definerte egne knappers handlingsmønster" - -#~ msgid "Leasetime" -#~ msgstr "Leietid" - -#~ msgid "AR Support" -#~ msgstr "AR Støtte" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Atheros 802.11%s Trådløs Kontroller" - -#~ msgid "Background Scan" -#~ msgstr "Bakgrunns Skanning" - -#~ msgid "Compression" -#~ msgstr "Komprimering" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Deaktiver HW-Beacon timer" - -#~ msgid "Do not send probe responses" -#~ msgstr "Ikke send probe svar" - -#~ msgid "Fast Frames" -#~ msgstr "Fast Frames" - -#~ msgid "Maximum Rate" -#~ msgstr "Maksimal hastighet" - -#~ msgid "Minimum Rate" -#~ msgstr "Minimum hastighet" - -#~ msgid "Multicast Rate" -#~ msgstr "Multicast hastighet" - -#~ msgid "Outdoor Channels" -#~ msgstr "Utendørs Kanaler" - -#~ msgid "Regulatory Domain" -#~ msgstr "Regulerende Domene" - -#~ msgid "Separate WDS" -#~ msgstr "Separert WDS" - -#~ msgid "Static WDS" -#~ msgstr "Statisk WDS" - -#~ msgid "Turbo Mode" -#~ msgstr "Turbo Modus" - -#~ msgid "XR Support" -#~ msgstr "XR Støtte" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "Et nytt nettverk vil bli opprettet hvis du tar bort haken." - -#~ msgid "Join Network: Settings" -#~ msgstr "Koble til nettverk: Innstilling" - -#~ msgid "CPU" -#~ msgstr "CPU" - -#~ msgid "Port %d" -#~ msgstr "Port %d" - -#~ msgid "Port %d is untagged in multiple VLANs!" -#~ msgstr "Port %d er utagget i flere VLANs!" - -#~ msgid "VLAN Interface" -#~ msgstr "VLAN grensesnitt" diff --git a/luci-base/po/pl/base.po b/luci-base/po/pl/base.po deleted file mode 100644 index ba0350e5f..000000000 --- a/luci-base/po/pl/base.po +++ /dev/null @@ -1,6661 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: LuCI\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-04-20 09:40+0200\n" -"PO-Revision-Date: 2019-01-05 19:30+0200\n" -"Last-Translator: Rixerx \n" -"Language-Team: Polish\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: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "%d nieprawidłowe pole(pola)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "%s jest nieotagowany w wielu grupach VLAN!" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(okno %d minut, interwał %d sekund)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(dostępne %s)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(pusty)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(brak podłączonych interfejsów)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Dodatkowe pole --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Proszę wybrać --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- własne --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- dopasuj według urządzenia --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- dopasuj po etykiecie --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "-- dopasuj po uuid --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Obciążenie 1 min.:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Obciążenie 15 min.:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "464XLAT (CLAT)" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Obciążenie 5 min.:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "Identyfikator 6-oktetowy jako ciąg szesnastkowy - bez dwukropków" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "802.11w maksymalny czas oczekiwania" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "802.11w interwał ponawiania prób" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "Port wywołania DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "Port serwera DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"Nazwa DNS będzie rozwijana przez " -"kolejne serwery w porządku podanym w resolvfile" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "Adres IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "Brama IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "Maska sieci IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"Adres sieci (CIDR) IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "Brama IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "Sufiks IPv6(hex)" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "Konfiguracja diod LED" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "Nazwa diody LED" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "Adres MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Maks. dzierżaw DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Maks. rozmiar pakietu EDNS0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Maks. zapytań równoczesnych" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    Uwaga: musisz ręcznie zrestartować usługę cron, jeśli plik crontab był " -"pusty przed edycją." - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "Wymagane jest ponowne zalogowanie ponieważ sesja wygasła." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "ADSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "Próg powtórzeń ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "Mosty ATM" - -# Nie wiem czy to powinno się tłumaczyć wg. mnie lepiej zostawić po angielsku -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "Identyfikator kanału wirtualnego ATM (VCI)" - -# j.w. -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "Identyfikator ścieżki wirtualnej ATM (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Mosty ATM eksponują enkapsulowaną sieć Ethernet w połączeniach AAL5 jako " -"wirtualne interfejsy sieciowe systemu Linux, które mogą być używane w " -"połączeniu z protokołem DHCP lub PPP w celu polączenia się z siecią dostawcy." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "Numer urządzenia ATM" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "ID dostawcy systemu ATU-C" - -# co to takiego? -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Koncentrator dostępowy (ATM)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Punkt dostępowy" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Akcje" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Aktywne trasy routingu IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Aktywne trasy routingu IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Aktywne połączenia" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Aktywne dzierżawy DHCP" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Aktywne dzierżawy DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Dodaj" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "Dodaj adres IPv4…" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "Dodaj adres IPv6…" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "Dodaj klucz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "Dodaj lokalny sufiks domeny do nazw urządzeń z pliku hosts" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Dodaj nowy interfejs..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Dodatkowe pliki Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "Dodatkowe pliki serwera" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Adres" - -# Na upartego można by zrobić Adres dostępowy mostu przekaźnikowego - ale kto to zrozumie? -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Adres dostępowy do \"relay bridge\"" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Zarządzanie" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Ustawienia zaawansowane" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "Agregacja siły transmisji (ACTATP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Alarm" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "Alias Interfejsu" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "Alias \"%s\"" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "Wszystkie serwery" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" -"Przydziel sekwencyjnie adresy IP, zaczynając od najmniejszego dostępnego" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "Przydzielaj adresy IP po kolei" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "Pozwól na logowanie SSH" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "Pozwól aby tryb AP rozłączał stacje STA w oparciu o niski stan ACK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Pozwól wszystkim oprócz wymienionych" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "Zezwalaj na starsze wersje 802.11b" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Pozwól tylko wymienionym" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Pozwól tylko sobie (localhost)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Zezwalaj zdalnym hostom na łączenie się z lokalnie przekazywanymi portami SSH" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Zezwól na logowanie roota przy pomocy hasła" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Pozwól użytkownikowi root na logowanie się przy pomocy hasła" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Pozwól na ruch wychodzący (odpowiedzi) z podsieci 127.0.0.0/8, np. usługi RBL" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "Dozwolone adresy IP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "Zawsze rozgłaszaj domyślny router" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "Zawsze wyłączony (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "Zawsze włączony (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" -"Zawsze używaj kanału 40 MHz, nawet jeśli kanał dodatkowy nachodzi na inny. " -"Używanie tej opcji nie jest zgodne z IEEE 802.11n-2009!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" -"Rozgłaszaj jako domyślny router nawet jeśli publiczny prefiks nie jest " -"dostępny." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "Rozgłaszaj domeny DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "Rozgłaszaj serwery DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antena 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antena 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Ustawienia anteny" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Dowolna strefa" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "Zatwierdź mimo to" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "Żądanie zatwierdzenia nie powiodło się ze statusem %h" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "Architektura" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" -"Przypisz część danej długości każdego publicznego prefiksu IPv6 do tego " -"interfejsu" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Przypisz interfejsy..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" -"Przypisz cześć prefiksu za pomocą szesnastkowego ID subprefiksu dla tego " -"interfejsu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Połączone stacje" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "Połączeni" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Uwierzytelnianie" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autorytatywny" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Wymagana autoryzacja" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Automatyczne odświeżanie" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Dostępne" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Średnia:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Wróć" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Wróć do przeglądu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Wróć do konfiguracji" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Wróć do przeglądu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Wróć do wyników skanowania" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Kopia zapasowa" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Kopia zapasowa / aktualizacja firmware" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Kopia zapasowa listy plików" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Wprowadzono zły adres" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "Interwał Beaconu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Poniżej widoczna jest lista plików przeznaczonych do kopii zapasowej. " -"Zawiera ona zmienione pliki konfiguracyjne oznaczone przez opkg, podstawowe " -"pliki systemowe, oraz pliki oznaczone do kopiowania przez użytkownika." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Szybkość transmisji" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Podrób statystyki NXDOMAIN" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Most" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Interfejs mostu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Numer Mostu (urządzenia)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Podnieś przy stracie" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Bezprzewodowy kontroler Broadcom 802.11%s" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Bezprzewodowy kontroler Broadcom BCM%04x 802.11" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Buforowana" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Użycie CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "Połączenie nieudane" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Anuluj" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "Uwaga: Pliki konfiguracyjne zostaną usunięte" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "Uwaga: Zostanie wymuszone uaktualnienie systemu" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Łańcuch" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "Zmień hasło logowania" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Zmiany" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Zmiany zostały zastosowane." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "Zmiany zostały cofnięte." - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Zmienia hasło administratora" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "Zmieniam hasło…" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Kanał" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Sprawdź" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Suma kontrolna" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "Wybierz mtdblock" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Wybierz strefę firewalla którą chcesz przypisać do tego interfejsu. Wybierz " -"nieokreślone aby usunąć interfejs z przypisanej strefy lub wybierz " -"pole utwórz aby zdefiniować nową strefę i przypisać ją do " -"interfejsu." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Wybierz sieć/sieci które chcesz przyłączyć do tego interfejsu " -"bezprzewodowego lub wypełnij pole utwórz aby utworzyć nową sieć." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Szyfr" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Kliknij \"Twórz archiwum\" aby pobrać archiwum tar zawierające bieżące pliki " -"konfiguracyjne." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" -"Kliknij \"Zapisz mtdblock\", aby pobrać określony plik mtdblock. (UWAGA: TA " -"FUNKCJA JEST DLA PROFESJONALISTÓW! )" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Klient" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "Nazwa (ID) klienta do wysłania podczas negocjacji DHCP" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "Zamknij" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Zamknij nieaktywne połączenia po określonym czasie podanym w sekundach, " -"wpisz 0 aby uzyskać stałe połączenie." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Zamknij listę..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Zbieranie danych..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Polecenie" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "Komentarz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Konfiguracja podstawowa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" -"Komplikuje atak ponownej instalacji klucza po stronie klienta, wyłączając " -"retransmisję ramek klucza EAPOL, które są używane do instalowania kluczy. To " -"obejście może powodować problemy z interoperacyjnością i zmniejszoną " -"odporność kluczowych negocjacji, szczególnie w środowiskach o dużym " -"natężeniu ruchu." - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Konfiguracja" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "Konfiguracja nieudana" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "Pliki konfiguracyjne zostaną zachowane" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "Konfiguracja została zastosowana." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "Konfiguracja została wycofana!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Potwierdzenie" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Połącz" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Połączony" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Limit połączeń" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "Próba połączenia nieudana" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Połączenia" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Kraj" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Kod kraju" - -# Pokrywa następujące interfejsy -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Pokrywa następujący interfejs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Pokrywa następujące interfejsy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Utwórz / Przypisz strefę firewalla" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Utwórz interfejs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Utwórz most pomiędzy wieloma interfejsami" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Krytyczne" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Poziom logowania Cron`a" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Interfejs niestandardowy" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "Delegowany niestandardowy prefiks IPv6" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" -"Własne pliki (certyfikaty, skrypty) mogą pozostać w systemie. Aby zapobiec " -"temu, wykonaj najpierw reset do ustawień fabrycznych" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "Własny interwał flash (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Dostosuj zachowanie diod LED " -"urządzenia jeśli jest to możliwe." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "DAE-Klient" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "DAE-Port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Serwer DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP i DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "Klient DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Opcje DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "Klient DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "Tryb DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "Serwis DHCPv6" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Przekierowania DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "Sprawdzanie DNSSEC bez podpisu" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "DSL" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "Status DSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "Interwał DTIM" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "Szybkość przesyłania danych" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Debug" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Domyślne %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "Domyślna ścieżka routingu" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Brama domyślna" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "Domyślnie jest to stateless + stateful" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Stan domyślny" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Określ nazwę dla tej sieci." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Zdefiniuj dodatkowe opcje DHCP, np. \"6,192.168.2.1,192.168.2.2" -"\" rozgłasza domyślne serwery DNS klientom DHCP." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Usuń" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "Usuń klucz" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Usuń tą sieć" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "Interwał komunikatu o wskazaniu dostawy ruchu" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Opis" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Przeznaczenie" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Urządzenie" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Konfiguracja urządzenia" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "Urządzenie jest uruchamiane ponownie ..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "Urządzenie nieosiągalne!" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "Urządzenie nieosiągalne! Wciąż czekam na urządzenie..." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnostyka" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Katalog" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Wyłącz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Wyłącz DHCP na " -"tym interfejsie." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "Wyłącz szyfrowanie" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "Wyłącz tą sieć" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Wyłączony" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "Wyłączone (domyślnie)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "Rozłączaj przy niskim stanie ramek ACK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Odrzuć wychodzące odpowiedzi RFC1918" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "Próba rozłączenia nie powiodła się" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Optymalizacja odległości" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Odległość do najdalej oddalonego członka sieci w metrach." - -# Jak poprzednio trzymam się konwencji -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Wielorakość" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq jest kombajnem serwera DHCP połączonym z serwerem DNS. Jest to serwer przekazujący (Fowarder) dla firewalli NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "Nie cache`uj odpowiedzi negatywnych, np. nie dla bieżących domen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Nie przekazuj zapytań które nie mogą być zrealizowane przez publiczne " -"serwery nazw" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "Nie przekazuj odwrotnych lookup`ów do sieci lokalnych" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "Czy na pewno chcesz usunąć następujący klucz SSH?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Wymagana domena" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Whitelist domen (Dozwolone domeny)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Nie przekazuj zapytań DNS bez " -"nazwy DNS'a" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Pobierz kopię zapasową" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "Pobierz mtdblock" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Usługa Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear oferuje zdalny dostęp do konsoli (shell`a) poprzez swojego klienta " -"SSH oraz serwer SCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"DHCP dynamiczne" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Tunel dynamiczny" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Dynamicznie rezerwuje adresy DHCP dla klientów. Jeśli jest wyłączone tylko " -"klienci posiadający stałe dzierżawy będą obsłużeni." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Metoda EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Edycja" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Edytuj ten interfejs" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Edytuj tą sieć" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Zagrożenie" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Włącz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" -"Włącz nasłuchiwanie IGMP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Włącz STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Włącz dynamiczną aktualizację punktu końcowego sieci HE.net" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "Włącz negocjację IPv6" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Włącz negocjację IPv6 na łączu PPP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Włącz przechodzenie ramek Jumbo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Włącz klienta NTP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Włącz serwer TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Włącz funkcjonalność VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "Włącz przycisk WPS, wymaga WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "Włącz środki zaradcze dotyczące ponownej instalacji kluczy (KRACK)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Włącz uczenie się i starzenie" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Włącz ten punkt montowania" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Włącz ten swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Wlącz/Wyłącz" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Włączony" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "Włącz nasłuchiwanie IGMP na tym moście" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" -"Aktywuje szybki roaming pomiędzy punktami dostępowymi, które należą do tej " -"samej domeny" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" -"Włącz protokół STP na tym " -"moście" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Sposób enkapsulacji" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Szyfrowanie" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Usuwanie..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Błąd" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "Ilość błędów (ES)" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Karta Ethernet" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Switch Ethernet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "Wyklucz interfejsy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Rozwiń hosty" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "Oczekiwano %s" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Wygasa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"Czas wygasania dzierżawy adresu, minimum to 2 Minuty (2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Serwer zewnętrzny dla logów systemowych" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Port zewnętrznego serwera logów systemowych" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "Protokół zewnętrznego serwera logów systemowych" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "Nie udało się zatwierdzić w ciągu %ds, czekam na wycofanie…" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Plik" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Rozgłoszono nazwę pliku obrazu startowego do klientów" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "System plików" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtruj prywatne" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtruj bezużyteczne" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "Finalizacja nie powiodła się" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Znajdź i podłącz się do sieci" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Zakończ" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Ustawienia firewalla" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Stan firewalla" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "Plik firmware" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Wersja firmware" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Stały port źródłowy dla wychodzących zapytań DNS" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Aktualizuj firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Wgraj obraz..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Wgraj nowy firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Operacje aktualizacji" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Flashowanie..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Wymuś" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "Wymuś tryb 40MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Wymuś CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" -"Wymuś uruchomienie serwera DHCP w tej sieci nawet gdy wykryto inny serwer." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Wymuś TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Wymuś TKIP i CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "Wymuś połączenie" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "Wymuś uaktualnienie" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Przekazuj ruch DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "Próby korekcji błędów (FECS)" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Przekazuj broadcast`y" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Tryb przekazywania" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Próg Fragmentacji" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Dzielenie ramek" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Wolna" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Tylko GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Brama" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "Adres bramy jest nieprawidłowy" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Porty bramy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Ustawienia główne" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Ustawienia podstawowe" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "Wygeneruj konfigurację" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "Wygeneruj PMK lokalnie" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Twórz archiwum" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Ogólny bezprzewodowy kontroler 802.11%s" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" -"Hasło nie zostało zmienione, wpisane poprzednie hasło routera jest " -"niewłaściwe!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "Globalne opcje sieciowe" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Przejdź do konfiguracji hasła..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Przejdź do powiązanych ustawień" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "Gość" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Hasło HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Rozłącz" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "Błędy kodu nagłówka (HEC)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "Interwał Heartbeata (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Tutaj możesz skonfigurować podstawowe ustawienia twojego urządzenia, np. " -"nazwę hosta, strefę czasową." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "" -"Ukryj ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "Ukryj puste łańcuchy" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Wpisy PC" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Czas wygasania hosta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "IP lub sieć Hosta" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "Zawartość znacznika Host-Uniq" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Nazwa hosta" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Nazwa hosta wysyłana podczas negocjacji DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Nazwy hostów" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "Protokół IP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Adres IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "Nieprawidłowy adres IP" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "Brakuje adresu IP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "Firewall IPv4" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "Źródłowy IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Adres IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "Broadcast IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "Brama IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Maska IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Długość prefiksu IPv4" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "Adres IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "Firewall IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "Sąsiedztwo IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "Ustawienia IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "IPv6 Prefiks-ULA" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "Źródłowy IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Adres IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "Wskazówka przypisania IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "Długość przydziału IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "Brama IPv6" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "Prefiks IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Długość prefiksu IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "Sufiks IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "Adres IPv6" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-w-IPv4 (RFC4213)" - -# 6rd to nie "szóste", tylko IPv6 rapid deployment -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-przez-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-przez-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Tożsamość" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Jeśli podano, zainstaluj urządzenie poprzez jego UUID zamiast ustalonego węzła urządzenia" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Jeśli podano, zainstaluj urządzenie poprzez nazwę partycji zamiast ustalonego węzła urządzenia" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Jeśli odznaczone, nie ma zdefiniowanej domyślnej ścieżki routingu" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "Jeśli odznaczone, rozgłoszane adresy serwerów DNS są ignorowane" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Jeśli ilość twojej pamięci fizycznej jest niewystarczająca, nieużywane " -"miejsce na dysku może być tymczasowo wykorzystane na urządzenie pliku " -"wymiany. W rezultacie większa ilość pamięci RAM będzie dostępna. Uwaga - plik wymiany jest dużo " -"wolniejszy niż pamięć RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignoruj interfejs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignoruj pliki resolve" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Obraz" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "W" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Czas bezczynności" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Przychodzący:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Info" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "Błąd inicjalizacji" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Skrypt startowy" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Skrypty startowe" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" -"Zainstaluj iputils-traceroute6 w celu skorzystania z traceroute dla iPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Instaluj pakiet %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Instaluj rozszerzenia protokołów..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interfejs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Konfiguracja Interfejsu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Przegląd Interfejsów" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Ponowne łączenie interfejsu..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "Nazwa interfejsu" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Interfejs nie istnieje lub nie jest jeszcze podłączony." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfejsy" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Wewnętrzny błąd serwera" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Niewłaściwy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko ID pomiędzy %d a %d." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko unikalne ID." - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Niewłaściwy login i/lub hasło! Spróbuj ponownie." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "Izoluj klientów" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Wygląda na to, że próbujesz wgrać obraz większy niż twoja pamięć flash, " -"proszę sprawdź czy to właściwy obraz!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "JavaScript jest wymagany!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Połącz z siecią" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Przyłącz do sieci: Skanuj sieci Wi-Fi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "Przyłączanie do sieci: %q" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Zachowaj ustawienia" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Log jądra" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Wersja jądra" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Klucz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Klucz #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Zabij" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "Serwer L2TP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "Próg błędu echa LCP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "Interwał echa LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Oznaczenie" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Język" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Wygląd i język" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "Opoźnienie" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "Czas dzierżawy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Plik dzierżaw" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Pozostały czas dzierżawy" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Pozostaw puste, aby automatycznie wykryć" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Pozostaw puste, aby użyć bieżącego adresu WAN" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Legenda:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Limit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" -"Ogranicz usługi DNS do podsieci interfejsów, na których obsługujemy DNS." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "Ogranicz nasłuchiwanie do tych interfesjów, oraz loopbacku." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "Tłumienie linii (LATN)" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "Tryb linii" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "Stan linii" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "Czas działania linii" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Połączenie aktywne" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Lista serwerów DNS do których będą " -"przekazywane zapytania" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Lista domen zezwalających na odpowiedzi RFC1918" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "Lista hostów które dostarczają zafałszowane wyniki NX domain" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "Nasłuchuj interfejs" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "Nasłuchuj port" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Słuchaj tylko na podanym interfejsie, lub jeśli nie podano na wszystkich" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Port nasłuchu dla przychodzących zapytań DNS" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Obciążenie" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Średnie obciążenie" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Ładowanie" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "Ładowanie kluczy SSH…" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "Lokalny adres IP jest nieprawidłowy" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "Lokalny adres IP do przypisania" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Lokalny adres IPv4" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Lokalny adres IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "Tylko serwis lokalny" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Lokalny autostart" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Czas lokalny" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Domena lokalna" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Specyfikacja domeny lokalnej. Nazwy należące do tej domeny nie są " -"przekazywane dalej ani rozwijane przez DHCP lub tylko pliki hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Przyrostek (sufiks) domeny przyłączany do nazw DHCP i wpisów w pliku hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Serwer lokalny" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Zlokalizuj nazwę hosta w zależności od odpytującej podsieci jeśli jest " -"dostępne więcej niż jedno IP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Zapytania lokalizujące" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Poziom logowania" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Loguj zapytania" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Logowanie" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Zaloguj" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Wyloguj" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "Utrata sygnału (LOSS)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "Najniższy wydzierżawiony adres jako offset dla adresu sieci." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "MAC" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "Adres MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Filtr adresów MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Filtr adresów MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Lista MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "Reguła MAP jest nieprawidłowa" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "MD5" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" -"Upewnij się, że klonujesz główny system plików, używając czegoś podobnego do " -"poleceń poniżej:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "Max. Osiągalna przepustowość danych (ATTNDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Maksymalna dozwolona liczba aktywnych dzierżaw DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Maksymalna dozwolona liczba jednoczesnych zapytań DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Maksymalny dozwolony rozmiar pakietu EDNS.0 UDP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Maksymalny czas podany w sekundach do pełnej gotowości modemu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Maksymalna liczba dzierżawionych adresów." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Pamięć" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Użycie pamięci (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metryka" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Brakujące rozszerzenie protokołu dla protokołu %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Tryb" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "Model" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "Domyślny modem" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Urządzenie modemowe" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "Zapytanie dotyczące modemu nie powiodło się" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Limit czasu inicjacji modemu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Wpis montowania" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Punkt montowania" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Punkty montowania" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Punkty montowania - Wpis montownia" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Punkty montowania - Wpis Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Punkty montowania definiują gdzie urządzenie pamięci zostanie podłączone do " -"systemu plików" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Opcje montowania" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Punkt montownia" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Zamontowane systemy plików" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Przesuń w dół" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Przesuń w górę" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "NCM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "Proxy NDP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Lista serwerów NTP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Nazwa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Nazwa nowego interfejsu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Nazwa nowej sieci" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Nawigacja" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Maska sieci" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Sieć" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Narzędzia sieciowe" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Sieciowy obraz startowy" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "Aktywność urządzenia sieciowego (%s)" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "Urządzenie sieciowe nie jest obecne" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Sieć bez interfejsów" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Następna »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Brak skonfigurowanego serwera DHCP dla tego interfejsu" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nie znaleziono plików" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Brak dostępnych informacji" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "Brak zgodnej delegacji prefiksu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Brak odwrotnego cache`a" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Brak skonfigurowanych sieci na tym urządzeniu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Nie podano nazwy sieci" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Nie ustawiono hasła!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "Nie ma jeszcze kluczy publicznych." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Brak zasad w tym łańcuchu." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "Brak wyników skanowania..." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Brak przypisanej strefy" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Szum" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "Margines szumów (SNR)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Szum:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "Nieprzewidziane błedy CRC (CRC_P)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "Bez symboli wieloznacznych" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Brak" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normalny" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Nie znaleziono" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Nie powiązany" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Nie podłączony" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Spostrzeżenie" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" -"Liczba buforowanych wpisów DNS (max wynosi 10000, 0 oznacza brak pamięci " -"podręcznej)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "Uzyskaj adres IPv6" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Zwłoka wyłączenia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Na tej stronie można skonfigurować interfejsy urządzenia. Możesz zmostkować " -"kilka interfejsów zaznaczając pole \"mostkuj interfejsy\", a następnie " -"wpisując ich nazwy oddzielone spacjami. Można także użyć notacji VLAN`ów INTERFACE.VLANNR " -"(np.: eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Zwłoka włączenia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Nazwa hosta lub adres MAC musu być podany!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Jedno lub więcej pól zawiera nieprawidłowe wartości!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Jedno lub więcej pól nie posiada wpisanych wartości!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Otwórz listę..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "Częstotliwość" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Wartość zmieniona" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Usunięto wartość" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "Opcjonalny" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" -"Opcjonalne. Dopuszczalne wartości: 'eui64', 'random', stałe wartości takie " -"jak '::1' lub '::1:2'. Kiedy prefiks IPv6 (taki jak 'a:b:c:d::') jest " -"odbierany z serwera delegującego, użyj sufiksa (takiego jak '::1') aby " -"utworzyć adres IPv6 ('a:b:c:d::1') dla tego interfejsu." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "Opcjonalny. Opis peera." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Opcje" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Inne:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Wychodzące" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Wychodzący:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "Nadpisz adres MAC" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "Nadpisz MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "Nadpisz TOS" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "Nadpisz TTL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "Nadpisz domyślną nazwę interfejsu" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Nadpisz adres bramy w odpowiedziach DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Nadpisz maskę sieci wysyłaną do klientów. Zazwyczaj jest ona wyliczana z " -"podsieci która jest rozsyłana." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "Nadpisz tablicę routingu używaną dla wewnętrznych tras routowania" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Przegląd" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Właściciel" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "Hasło PAP/CHAP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "Nazwa użytkownika PAP/CHAP" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "Kod PIN został odrzucony" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "PMK R1 Push" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Enkapsulacja PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "PPPoSSH" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Wymagany pakiet libiwinfo!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Pakiety" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Część strefy %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Hasło" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Uwierzytelnianie hasłem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Hasło lub klucz prywatny" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "Wewnętrzne hasło klucza prywatnego" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "Wklej lub przeciągnij plik klucza SSH…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Ścieżka do certyfikatu CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Ścieżka do certyfikatu klienta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Ścieżka do Klucza Prywatnego" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "Ścieżka do wewnętrznego certyfikatu CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "Ścieżka do wewnętrznego certyfikatu Klienta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "Ścieżka do wewnętrznego klucza prywatnego " - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Szczyt:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "Brakuje adresu Peera" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Wykonaj restart" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Wykonaj reset" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Szybkość Phy:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Ustawienia sprzętowe" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pktw." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Proszę wprowadź swój login i hasło." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Zasada" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Status portu:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "Tryb zarządzania energią" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "Przewidziane błedy CRC (CRCP_P)" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "Preferuj LTE" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "Preferuj UMTS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"Przypuszczaj że klient może być martwy po zadanej ilości błedów echa LCP, " -"wpisz 0 aby zignorować te błędy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "Zapobiegaj nasłuchiwaniu na tych interfejsach." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Zapobiega komunikacji między klientem a klientem" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "Klucz prywatny" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Wykonaj" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Procesy" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "Profil" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protokół" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Protokół nowego interfejsu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Wsparcie dla protokołu nie jest zainstalowane" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Włącz serwer NTP" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Utwórz nową sieć" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "Klucz publiczny" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" -"Klucze publiczne pozwalają na logowanie bez haseł SSH z wyższymi " -"zabezpieczeniami w porównaniu do użycia zwykłych haseł. Aby przesłać nowy " -"klucz do urządzenia, wklej klucz publiczny zgodny z OpenSSH lub przeciągnij " -"plik .pub do pola wejściowego." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "Komórkowy QMI" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Jakość" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" -"Zapytaj o wszystkie dostępne serwery DNS " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Próg RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "Szybkość RX" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Port Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Sekret Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Serwer Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Port Radius-Authentication" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Sekret Radius-Authentication" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Serwer Radius-Authentication" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" -"Surowe bajty kodowane szesnastkowo. Pozostaw puste, chyba że wymaga tego " -"dostawca internetowy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Przejrzyj plik /etc/ethers aby skonfigurować serwer DHCP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Naprawdę usunąć tę sieć bezprzewodową? Usunięcie nie może zostać cofnięte!\n" -"Możesz stracić dostęp do tego urządzenia, jeśli jesteś połączony przez tę " -"sieć!" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Naprawdę usunąć wszelkie zmiany?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Naprawdę zmienić protokół?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Połączenia w czasie rzeczywistym" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Wykresy w czasie rzeczywistym" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Obciążenie w czasie rzeczywistym" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Ruch w czasie rzeczywistym" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Wi-Fi w czasie rzeczywistym" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "Termin reasocjacji" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Przypisz ochronę" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Restart" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Ponowne uruchamianie..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Uruchamia ponownie system na twoim urządzeniu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Odebrane" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Antena odbiorcza" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Połącz ponownie ten interfejs" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Referencje" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Przekaźnik" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Most przekaźnikowy" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Przekaźnik pomiędzy sieciami" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Most przekaźnikowy" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Zdalny adres IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "Zdalny adres IPv4 lub FQDN" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Usuń" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Powtórz skanowanie" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Zamień wpis" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Zamień konfigurację WiFi" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "Zażądaj adresu IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "Zażądaj długość prefiksu IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "Wymagany" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Wymagany dla niektórych dostawców internetu, np. Charter z DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" -"Wymagane jest wsparcie dla DNSSEC; sprawdzanie, czy niepodpisane odpowiedzi " -"w domenie rzeczywiście pochodzą z domen bez znaku" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Resetuj" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Wyczyść liczniki" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Resetuj do domyślnych" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Pliki Resolv i Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Plik Resolve" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Uruchom ponownie" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Uruchom ponownie Firewalla" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "Uruchom ponownie interfejs radiowy" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Przywróć" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Przywróć kopię zapasową" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Odsłoń/Ukryj hasło" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Przywróć" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "Przywróć zmiany" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "Żądanie powrotu nie powiodło się ze statusem %h" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "Przywracanie konfiguracji…" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Root" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Katalog Root`a dla plików udostępnianych przez TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "Typ trasy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "Serwis rozgłoszeniowy routera" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Hasło routera" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Ścieżki routingu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Ścieżki routingu pokazują routerowi przez który interfejs oraz którą bramę " -"może skomunikować się z daną siecią lub komputerem." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "Reguła" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" -"Sprawdź czy system plików nie zawiera błędów przed zamontowaniem urządzenia" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Sprawdź czy system plików nie zawiera błędów" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "SNR" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Dostęp SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "Adres serwera SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "Port serwera SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "Klucze SSH" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "SWAP" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Zapisz" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Zapisz i zastosuj" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "Zapisz mtdblock" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "Zapisz zawartość mtdblock" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Skanuj" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "Próba skanowania nie powiodła się" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Zaplanowane Zadania" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Dodano sekcję" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Usunięto sekcję" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Aby poznać szczegóły przeczytaj stronę instrukcji \"mount\"" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" -"Wybierz 'Wymuś uaktualnienie', aby wgrać obraz nawet jeśli sprawdzenie " -"formatu obrazu nie powiedzie się. Używaj tylko wtedy, gdy masz pewność że " -"oprogramowanie jest poprawne i jest przeznaczone dla Twojego urządzenia!" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"Wysyłaj żądania echa LCP w określonym przedziale czasowym, efektywne tylko " -"wtedy gdy jest ustawiony próg błedu LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Rozdziel klientów" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Ustawienia serwera" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Nazwa serwisu" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Typ serwisu" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Serwisy" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "Sesja wygasła" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" -"Ustaw właściwości interfejsu, niezależnie od operatora łącza (nie wpływa na " -"programy operatora które ustanawiają połączenie)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "Ustawienia synchronizacji czasu" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "Ustawienie PLMN nie powiodło się" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "Ustawienie trybu nie powiodło się" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Ustawienia serwera DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "Ilość poważnych błedów (SES)" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "Krótki Wstęp" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Pokaż aktualną listę plików do backupu" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "Pokaż puste łańcuchy" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Wyłącz ten interfejs" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Sygnał" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "Tłumienie sygnału (SATN)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Sygnał:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Rozmiar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "Rozmiar pamięci podręcznej zapytań DNS" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Pomiń" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Pomiń do zawartości" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Pomiń do nawigacji" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Szczelina czasowa" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "Programowy VLAN" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Wartości pewnych pól są niewłaściwe, nie mogę ich zachować!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Przepraszamy, ale żądany obiekt nie został znaleziony." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Przepraszamy, ale serwer napotkał nieoczekiwany błąd." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"Przepraszamy, ale nie ma wsparcia dla trybu sysupgrade. Nowy firmware musi " -"być wgrany ręcznie. Sprawdź stronę wiki, aby uzyskać instrukcję dla danego " -"urządzenia." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Źródło" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Podaje katalog do którego jest podłączone urządzenie" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Określa port nasłuchu dla tej instancji Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Określa maksymalną ilość błędów dla zapytania ARP przed założeniem, że host " -"jest martwy" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" -"Określa maksymalny czas w sekundach przed założeniem, że host jest martwy" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Określ tajny klucz szyfrowania." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Uruchomienie" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Priorytet uruchomienia" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "Zatwierdzanie konfiguracji…" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "Rozpoczynanie skanowania..." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Autostart" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Statyczne ścieżki routingu IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Statyczne ścieżki routingu IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Dzierżawy statyczne" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Statyczne ścieżki routingu" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Stały adres" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Statyczne dzierżawy są używane do przypisania stałych adresów IP i " -"symbolicznych nazw klientom DHCP. Są one również wymagane dla " -"niedynamicznych konfiguracji interfejsu, gdzie obsługiwane są tylko hosty z " -"odpowiednim dzierżawami." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "Station inactivity limit" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Status" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Stop" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Zachowaj kolejność" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Wyślij" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "Pomiń rejestrowanie" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "Pomiń rejestrowanie rutynowych operacji dla tych protokołów" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Zamień wpis" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Przełącznik" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Przełącznik %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Przełącznik %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Protokół przełącznika" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "Przejdź do notacji listy CIDR" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "Aktywność Switchportu (%s)" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Synchronizuj z przeglądarką" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Synchronizacja..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "System" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Log systemowy" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Właściwości systemu" - -# Wszędzie używane jest "loga" z małej litery. -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Rozmiar bufora loga systemu" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Ustawienia TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Root serwera TFTP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "Szybkość TX" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tablica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Cel" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Zakończ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"Sekcja Konfiguracja Urządzenia zawiera sprzętowe ustawienia toru " -"transmisji radiowej takie jak kanał, moc sygnału, czy wybór anteny, które to " -"są wspólne dla wszystkich zdefiniowanych sieci bezprzewodowych (jeśli tor " -"transmisji jest kompatybilny z transmisją multi-SSID). Ustawienia sieci " -"takie jak szyfrowanie lub tryb operacji są zebrane w sekcji Konfiguracja " -"Interfejsu." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Pakiet libiwinfo-lua nie jest zainstalowany. Musisz go zainstalować " -"aby WiFi prawidłowo zadziałało!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"Prefiks IPv6 przypisany do dostawcy, zazwyczaj kończy się ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Dozwolone znaki to: A-Z, a-z, 0-9 " -"oraz _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "Archiwum kopii zapasowej nie wygląda na prawidłowe." - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" -"Nie można uzyskać dostępu do urządzenia w ciągu %d sekund po zastosowaniu " -"oczekujących zmian, które spowodowały wycofanie konfiguracji ze względów " -"bezpieczeństwa. Jeśli jednak uważasz, że zmiany konfiguracji są poprawne, " -"kontynuuj, stosując je mimo to. Możesz też odrzucić to ostrzeżenie i " -"edytować zmiany przed ponownym zastosowaniem lub odrzucić wszystkie " -"oczekujące zmiany, aby zachować aktualnie działający stan konfiguracji." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"Plik urządzenia - pamięci lub partycji (np. /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"System plików, który został użyty do sformatowania nośnika (np. ext3)" - -# Przycisk nazywa się "Wykonaj", więc taki sam opis ma być w podpowiedzi. -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"Obraz flash został przesłany. Poniżej znajduje się suma kontrolna i rozmiar " -"pliku, porównaj je z orginałem aby zapewnić integralność danych.
    " -"Wciśnij \"Wykonaj\" aby kontynuować aktualizację." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Następujące zmiany zostały odrzucone" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Następujące zasady są obecnie aktywne w tym systemie." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "Podany klucz publiczny SSH został już dodany." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" -"Podany klucz publiczny SSH jest nieprawidłowy. Podaj odpowiedni publiczny " -"RSA lub klucze ECDSA." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "Podana sieć nie jest unikalna" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"Sprzęt nie jest urządzeniem typu multi-SSID, więc bieżąca konfiguracja " -"zostanie nadpisana nową jeśli będziesz kontynuować." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"Długość prefiksu IPv4 w bitach, pozostała część jest używana w adresach IPv6." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "Długość prefiksu IPv6 w bitach" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "Lokalny adres IPv4, na którym tworzony jest tunel (opcjonalnie)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"Porty sieciowe na tym urządzeniu mogą być łączone w kilka sieci VLAN, w których komputery mogą " -"komunikować się ze sobą bezpośrednio. Sieci VLAN są często stosowane w celu oddzielenia różnych " -"segmentów sieci. Często domyślnie jeden port typu Uplink jest wykorzystywany " -"do połączenia z większą siecią, taką jak Internet, a inne porty dla sieci " -"lokalnej." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "Wybrany protokół potrzebuje przypisanego urządzenia" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "The submitted security token is invalid or already expired!" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"System usuwa teraz partycję konfiguracji i zrestartuje się po zakończeniu." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"System wykonuje flashowanie.
    NIE WYŁĄCZAĆ URZĄDZENIA!
    Poczekaj " -"kilka minut, zanim spróbujesz połączyć się ponownie. W zależności od " -"ustawień może być konieczne odnowienie adresu Twojego komputera, aby dostać " -"się do urządzenia." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "Hasło systemowe zostało pomyślnie zmienione." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"Przesłany plik obrazu nie zawiera obsługiwanego formatu. Upewnij się, że " -"wybrałeś odpowiedni format obrazu dla danej platformy." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Motyw" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Brak aktywnych dzierżaw." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "Brak zmian do zastosowania." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Brak oczekujących zmian do przywrócenia!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Brak oczekujących zmian!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Żadne urządzenie nie jest jeszcze przypisane. Proszę dołączyć urządzenie " -"sieciowe na karcie \"Ustawienia sprzętowe\"" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Hasło nie zostało ustawione. Proszę skonfigurować hasło roota, aby " -"zabezpieczyć interfejs WWW i włączyć SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "Ten adres IPv4 przekaźnika" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" -"Ten plik może zawierać linie takie jak 'server=/domain/1.2.3.4' lub " -"'server=1.2.3.4' dla specyficznych dla domeny lub pełnych serwerów DNS" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"Jest to lista globalnych wzorców dopasowywania plików i katalogów " -"uwzględnianych podczas przeprowadzania aktualizacji z użyciem \"sysupgrade" -"\". Zmodyfikowane pliki w /etc/config/ i w niektórych innych ustawieniach są " -"automatycznie zachowywane." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"To jest zawartość pliku /etc/rc.local. Wstaw tutaj własne komendy (przed " -"'exit 0'), aby zostały wykonane pod koniec procesu rozruchu." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"To jest lokalny adres końcowy przypisany przez tunnel broker'a, zwykle " -"kończący się z ...:2/64" - -# w tłumaczeniu pojawiła się spacja po DHCP
    co powoduje niepoprawne wyświetlanie się strony z lang PL -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"To jest jedyny serwer DHCP w sieci lokalnej" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"To jest system crontab, w którym mogą być zdefiniowane zaplanowane zadania." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" -"Zwykle jest to adres najbliższego PoP prowadzonego przez tunnel broker'a" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Poniższa lista przedstawia aktualnie uruchomione procesy systemowe i ich " -"status." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "Poniższa strona przedstawia aktualnie aktywne połączenia sieciowe." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Ta sekcja nie zawiera jeszcze żadnych wartości" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Synchronizacja czasu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Synchronizacja czasu nie jest jeszcze skonfigurowana." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Strefa czasowa" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "Zaloguj się…" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Aby przywrócić pliki konfiguracyjne, możesz przesłać tutaj wcześniej " -"utworzoną kopię zapasową. Aby przywrócić ustawienia domyślne wciśnij " -"\"Wykonaj reset\" (możliwe tylko w przypadku obrazu squashfs)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "Ton" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Całkowicie dostępna" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Trasa routowania" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Ruch" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Transfer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Prędkość transmisji" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Nadawanie" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Siła nadawania" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Antena nadajnika" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Trigger" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Rodzaj Triggeru" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "Numer identyfikacyjny tunelu" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Interfejs tunelu" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Moc nadawania" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Typ" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Tylko UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "Urządzenie USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "Porty USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "Nie można ustalić nazwy urządzenia" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "Nie można ustalić zewnętrznego adresu IP" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "Nie można określić interfejsu źródłowego" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Nie można wysłać" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "Nie można uzyskać ID klienta" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "Nie można rozpoznać nazwy AFTR hosta" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "Nie można rozpoznać nazwy peera" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "Czas niedostępnośći (UAS)" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Nieznany" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "Nieznany błąd (%s)" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Niezarządzalny" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "Odmontuj" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "Klucz beznazwy" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Niezapisane zmiany" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "Nieobsługiwany typ MAP" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "Nieobsługiwany modem" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Nieobsługiwany typ protokołu." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Prześlij tutaj obraz zgodny z funkcją sysupgrade, aby zastąpić aktualnie " -"działające opragramowanie. Zaznacz opcję \"Zachowaj ustawienia\", aby " -"zachować bieżącą konfigurację (wymagany obraz zgodny z bieżącym " -"opragramowaniem)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Załaduj archiwum..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Załaduj plik" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Czas pracy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Użyj /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Użyj bramy DHCP" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Użyj serwerów DNS rozgłaszanych przez peera" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Użyj kodów kraju ISO/IEC 3166 alpha2" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "Użyj MTU na interfejsie tunelu" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "Użyj TTL na interfejsie tunelu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "Użyj jako systemu plików root (/)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Użyj flagi rozgłaszania" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "Skorzystaj z wbudowanego zarządzania protokołem IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Użyj własne serwery DNS" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Użyj domyślnej bramy" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Użyj metryki bramy" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Użyj tabeli routingu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Użyj przycisku Dodaj, aby dodać nowy wpis dzierżawy. Adres MAC identyfikuje hosta, Adres IPv4 określa, którego stałego adresu " -"użyć, natomiast Nazwa hosta jest przypisana jako symboliczna nazwa " -"do określonego hosta." - -# Przy liście zamontowanych systemów plików -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Użyte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Użyte gniazdo klucza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "Certyfikat użytkownika (kodowany PEM)" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "Klucz użytkownika (kodowany PEM)" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Nazwa użytkownika" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "VDSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "Sieci VLAN na %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "Sieci VLAN na %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "Serwer VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "Port serwera VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "Producent" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "Klasa producenta do wysłania podczas żądania DHCP" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Zweryfikuj" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "Wirtualny interfejs dynamiczny" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Otwarty system WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Współdzielony klucz WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "Hasło WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Tryb WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "Hasło WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"Kodowanie WPA wymaga zainstalowanych modułów wpa_supplicant (tryb klienta) " -"lub hostapd (tryb AP lub ad-hoc)" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Trwa wprowadzenie zmian..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Trwa wykonanie polecenia..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "Oczekiwanie na zastosowanie konfiguracji… %ds" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "Oczekiwanie na urządzenie..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Ostrzeżenie" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" -"Ostrzeżenie: Istnieją niezapisane zmiany, które zostaną utracone po ponownym " -"uruchomieniu urządzenia!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "Aktywność Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "Powiązanie klienta Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "Odbiór danych Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "Transmisja danych Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "Wi-Fi włączone (%s)" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "Szerokość" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "WireGuard VPN" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Sieć bezprzewodowa" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Adapter bezprzewodowy" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Sieć bezprzewodowa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Przegląd sieci bezprzewodowych" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Zabezpieczenia sieci bezprzewodowych" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Sieć bezprzewodowa jest wyłączona" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Sieć bezprzewodowa jest niepołączona" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Restart sieci bezprzewodowej..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Sieć bezprzewodowa jest wyłączona" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Sieć bezprzewodowa jest włączona" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Zapisz otrzymane żądania DNS do syslog'a" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "Zapisz log systemowy do pliku" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Tutaj można włączyć lub wyłączyć zainstalowane skrypty. Zmiany zostaną " -"zastosowane po ponownym uruchomieniu urządzenia.
    Ostrzeżenie: " -"Jeśli wyłączysz podstawowe skrypty typu \"network\", urządzenie może stać " -"się nieosiągalne!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Musisz włączyć obsługę JavaScript w swojej przeglądarce, inaczej LuCI nie " -"będzie działać poprawnie." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "Alogrytm kompresji ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "Strumienie kompresji ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "Ustawienia ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "Rozmiar ZRam" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "dowolny" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "zmostkowany" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "utwórz:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "utwórz most na określonych interfejsach" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "wyłącz" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "wyłączony" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "wygasły" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"plik, w którym podano żądania DHCP, zostanie zachowany" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "przekaż" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "pełny-duplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "pół-duplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "ukryty" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "tryb hybrydowy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "jeżeli celem jest sieć" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "wejście" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "klucz od 8 do 63 znaków" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "klucz z 5 lub 13 znakami" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "lokalny plik DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "minuty" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "mieszany WPA/WPA2" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "nie" - -# skorzystałem z niemieckiego tłumaczenia -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "niepowiązane" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "nieobecny" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "wyłączone" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "włączone" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "otwarte" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "losowy" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "routowane" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "tryb serwera" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "otagowane" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "jednostki czasu (TUs / 1.024 ms) [1000-65535]" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "nieznane" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "nielimitowane" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "nieokreślone" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "nieokreślone -lub- utwórz:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "nieotagowane" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "tak" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Wróć" - -#~ msgid "Flashmemory write access (%s)" -#~ msgstr "Dostęp do zapisu flashmemory (%s)" - -#~ msgid "" -#~ "Your Internet Explorer is too old to display this page correctly. Please " -#~ "upgrade it to at least version 7 or use another browser like Firefox, " -#~ "Opera or Safari." -#~ msgstr "" -#~ "Twój Internet Explorer jest za stary, aby poprawnie wyświetlić tę stronę " -#~ "zaktualizuj go do wersji co najmniej 7 lub użyj innej przeglądarki, " -#~ "takiej jak Firefox, Opera czy Safari." - -#~ msgid "kB" -#~ msgstr "kB" - -# nie ma słowa "autentykacji". Uwierzytelnianie! -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Tutaj wklej swoje klucze publiczne SSH (po jednym w linii), dla " -#~ "uwierzytelniania SSH" - -#~ msgid "Password successfully changed!" -#~ msgstr "Pomyślnie zmieniono hasło!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Nieznany błąd, hasło nie zostało zmienione!" - -#~ msgid "Design" -#~ msgstr "Motyw" - -#~ msgid "Available packages" -#~ msgstr "Dostępne pakiety" - -#~ msgid "Bind only to specific interfaces rather than wildcard address." -#~ msgstr "" -#~ "Powiąż tylko ze specyficznymi interfejsami, a nie z adresami " -#~ "wieloznacznymi." - -#~ msgid "" -#~ "Build/distribution specific feed definitions. This file will NOT be " -#~ "preserved in any sysupgrade." -#~ msgstr "" -#~ "Kompiluj/rozpowszechniaj określone definicje źródeł. Ten plik NIE " -#~ "zostanie zachowany w procesie sysupgrade" - -#~ msgid "" -#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " -#~ "in a sysupgrade." -#~ msgstr "" -#~ "Niestandardowe definicje plików danych, np. prywatne źródła. Ten plik " -#~ "może być zachowany podczas sysupgrade. " - -#~ msgid "Custom feeds" -#~ msgstr "Niestandardowe źródła" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Pokazuję tylko paczki zawierające" - -#~ msgid "Distribution feeds" -#~ msgstr "Dystrybucja źródeł" - -#~ msgid "Download and install package" -#~ msgstr "Pobierz i zainstaluj pakiet" - -#~ msgid "Filter" -#~ msgstr "Filtr" - -#~ msgid "Find package" -#~ msgstr "Znajdź pakiet" - -#~ msgid "Free space" -#~ msgstr "Wolna przestrzeń" - -#~ msgid "General options for opkg" -#~ msgstr "Ogólne opcje dla opkg" - -#~ msgid "Install" -#~ msgstr "Instaluj" - -#~ msgid "Installed packages" -#~ msgstr "Zainstalowane pakiety" - -#~ msgid "No package lists available" -#~ msgstr "Lista pakietów nie jest dostępna" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Konfiguracja OPKG" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Lista pakietów jest starsza niż 24 godziny" - -#~ msgid "Package name" -#~ msgstr "Nazwa pakietu" - -#~ msgid "Size (.ipk)" -#~ msgstr "Rozmiar (.ipk)" - -#~ msgid "Software" -#~ msgstr "Oprogramowanie" - -#~ msgid "Update lists" -#~ msgstr "Aktualizuj listy" - -#~ msgid "Version" -#~ msgstr "Wersja" - -#~ msgid "none" -#~ msgstr "żaden" - -#~ msgid "Disable DNS setup" -#~ msgstr "Wyłącz konfigurację DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 oraz IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Tylko IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Tylko IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Czas ważności dzierżawy" - -#~ msgid "Multicast address" -#~ msgstr "Adres Multicast`u" - -#~ msgid "Protocol family" -#~ msgstr "Rodzina protokołów" - -#~ msgid "No chains in this table" -#~ msgstr "Brak łańcuchów w tej tablicy" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Pliki konfiguracyjne zostaną zachowane." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Uwaga: Pliki konfiguracyjne zostaną usunięte." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Aktywuj tą sieć" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Kontroler bezprzewodowy Hermes 802.11b" - -#~ msgid "Interface is shutting down..." -#~ msgstr "Interfejs jest wyłączany..." - -#~ msgid "Interface reconnected" -#~ msgstr "Połączono ponownie interfejs" - -#~ msgid "Interface shut down" -#~ msgstr "Wyłączono interfejs" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Kontroler bezprzewodowy Prism2/2.5/3 802.11b" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "Kontroler bezprzewodowy RaLink 802.11%s" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "Naprawdę wyłączyć interfejs \"%s\"?\n" -#~ "Możesz stracić dostęp do tego urządzenia jeśli jesteś połączony przez ten " -#~ "interfejs!" - -#~ msgid "Reconnecting interface" -#~ msgstr "Łączę ponownie interfejs" - -#~ msgid "Shutdown this network" -#~ msgstr "Wyłącz tą sieć" - -#~ msgid "Wireless restarted" -#~ msgstr "Zrestartowano sieć bezprzewodową" - -#~ msgid "Wireless shut down" -#~ msgstr "Wyłączanie sieci bezprzewodowej" - -#~ msgid "DHCP Leases" -#~ msgstr "Dzierżawy DHCP" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "Dzierżawy DHCPv6" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "Naprawdę usunąć ten interfejs? Usunięcie nie może zostać cofnięte!\n" -#~ "Możesz stracić dostęp do tego urządzenia, jeśli jesteś połączony przez " -#~ "ten interfejs!" - -#, fuzzy -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "Naprawdę wyłączyć tę sieć?\n" -#~ "Możesz stracić dostęp do tego urządzenia jeśli jesteś połączony przez ten " -#~ "interfejs!" - -#~ msgid "Sort" -#~ msgstr "Posortuj" - -#~ msgid "help" -#~ msgstr "pomoc" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "Status IPv4 WAN" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "Status WAN IPv6" diff --git a/luci-base/po/pt-br/base.po b/luci-base/po/pt-br/base.po deleted file mode 100644 index c47595a88..000000000 --- a/luci-base/po/pt-br/base.po +++ /dev/null @@ -1,6807 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2018-09-20 21:19-0300\n" -"Last-Translator: Luiz Angelo Daros de Luca \n" -"Language-Team: \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: Poedit 2.1.1\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "%.1f dB" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "%s está sem etiqueta em múltiplas VLANs!" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(janela de %d minutos, intervalo de %d segundos)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s disponível)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(vazio)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(nenhuma interface conectada)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Campo Adicional --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Por favor, escolha --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- personalizado --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- casar por dispositivo --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- casar por rótulo --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" -"-- casar por UUID --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "-- por favor, selecione --" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Carga 1 Minuto:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Carga 15 Minutos:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "Identificador hexadecimal de 4 caracteres" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "464XLAT (CLAT)" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Carga 5 Minutos:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" -"Identificador de 6 octetos como uma cadeia hexadecimal - sem dois pontos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "802.11r Fast Transition" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "Tempo de expiração máximo da consulta da Associação SA do 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" -"Tempo de expiração de tentativa de consulta da Associação SA do 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "Proteção do Quadro de Gerenciamento do 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "Estouro de tempo máximo do 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "Estouro de tempo da nova tentativa do 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "" -"BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "" -"Porta de consulta DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "" -"Porta do servidor DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"O servidor DNS irá " -"consultar na ordem do arquivo resolvfile" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" -"ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "Endereço IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "Roteador IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "" -"Máscara de rede IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"Endereço do IPv6 " -"Endereço ou rede (CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "Roteador IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" -"IPv6-Suffix (hex)" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "Configuração do LED" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "Nome do LED" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "Endereço MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Numero máximo de alocações DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Tamanho máximo do pacote do EDNS0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Número máximo de consultas concorrentes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    Nota: você precisa reiniciar manualmente o serviço da cron se o arquivo " -"crontab estava vazio antes da edição." - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "A43C + J43 + A43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "A43C + J43 + A43 + V43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" -"ADSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "ANSI T1.413" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "" -"Limite de retentativas do ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "ATM (Asynchronous Transfer Mode)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "Ponte ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" -"Identificador de Canal Virtual ATM (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" -"Identificador de Caminho Virtual ATM (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Pontes ATM expõem ethernet encapsuladas em conexões AAL5 como interfaces de " -"rede virutais no Linux. Estas podem ser usadas em conjunto com o DHCP ou PPP " -"para discar em um provedor de rede." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "Número do dispositivo ATM" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "Identificador de" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Concentrador de Acesso" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Ponto de Acceso (AP)" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Ações" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Rotas IPv4 ativas" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Rotas IPv6 ativas" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Conexões Ativas" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Alocações DHCP ativas" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Alocações DHCPv6 ativas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Adicionar" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "Adiciona um sufixo de domínio local para equipamentos conhecidos" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Adiciona uma nova interface..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Arquivos adicionais de equipamentos conhecidos (hosts)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "Arquivo de servidores adicionais" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Endereço" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Endereço para acessar a ponte por retransmissão local" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administração" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Opções Avançadas" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" -"Potência de Transmissão Agregada (ACTATP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Alerta" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "Interface Adicional" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "Interface adicional de \"%s\"" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "Todos os Servidores" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" -"Alocar endereços IP sequencialmente, iniciando a partir do endereço mais " -"baixo disponível" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "Alocar endereços IP sequencialmente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Permitir autenticação SSH por senha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" -"Permitir, em modo AP, a desconexão de estações baseada na baixa qualidade " -"das confirmações (ACK)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Permitir todos, exceto os listados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "Permitir taxas legadas do 802.11b" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Permitir somente os listados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Permitir computador local" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Permitir que equipamentos remotos conectem à portas locais encaminhadas por " -"SSH" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Permite autenticação do root com senha" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Permite que o usuário root se autentique utilizando senha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Permite respostas que apontem para 127.0.0.0/8 de servidores externos, por " -"exemplo, para os serviços RBL" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "Endereços IP autorizados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "Sempre anuncie o roteador padrão" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" -"Permitir o uso de canais 40Mhz mesmo se o canal secundário estiver " -"sobreposto. Esta opção não está de acordo com IEEE 802.11n-2009!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "Anexo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "Anexos A + L + M (todo)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "Anexo A G.992.1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "Anexo A G.992.2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "Anexo A G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "Anexo A G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "Anexo B (todo)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "Anexo B G.992.1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "Anexo B G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "Anexo B G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "Anexo J (todo)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "Anexo L G.992.3 POTS 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "Anexo M (todo)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "Anexo M G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "Anexo M G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" -"Anuncie-se como rotador padrão mesmo se não existir um prefixo público." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "Domínios DNS anunciados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "Servidores DNS anunciados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "Identidade Anônima" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "Montagem Anônima" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "Espaço de Troca (swap) Anônimo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antena 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antena 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Configuração da antena" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Qualquer zona" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "Aplicar sem verificação" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "Pedido para aplicar falhou com o estado %h" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "Arquitetura" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" -"Atribua uma parte do comprimento de cada prefixo IPv6 público para esta " -"interface" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Atribuir as interfaces..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" -"Atribua partes do prefixo usando este identificador hexadecimal do " -"subprefixo para esta interface." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Estações associadas" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "Associações" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "Grupo de Autenticação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Autenticação" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "Tipo de Autenticação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autoritário" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Autorização Necessária" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Atualização Automática" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "Automático" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" -"Rede Doméstica Automática (HNCP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" -"Execute automaticamente a verificação do sistema de arquivos antes da " -"montagem do dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "Monte automaticamente o espaço de troca (swap) ao conectar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "Monte automaticamente o espaço de troca (swap) ao conectar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "Montagem Automática de Sistema de Arquivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "Montagem Automática do Espaço de Troca (swap)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Disponível" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Média:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "B43 + B43C" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "B43 + B43C + V43" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "BR / DMR / AFTR" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Voltar" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Voltar para Visão Geral" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Voltar para configuração" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Voltar para visão geral" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Voltar para os resultados da busca" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Cópia de Segurança" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Cópia de Segurança / Gravar Firmware" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Lista de arquivos para a cópia de segurança" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Endereço especificado está incorreto!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "Banda" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "Intervalo do quadro de monitoramento (Beacon)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Abaixo estão os arquivos para a cópia de segurança. Ela consiste de arquivos " -"de configuração alterados marcados pelo opkg, arquivos base essenciais e " -"padrões para a cópia de segurança definidos pelo usuário." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "Interface Vinculada" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "Vincule o túnel a esta interface (opcional)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Taxa de bits" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Substituir Domínio NX Falsos" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Ponte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Juntar interfaces em uma ponte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Número da ponte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Levantar na iniciação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Controlador Wireless Broadcom 802.11%s" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom BCM%04x 802.11 Wireless Controlador" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Buffered" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" -"Certificado da AC; se em branco, será salvo depois da primeira conexão." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Uso da CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "A chamada falhou" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Cancelar" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "Categoria" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "Cuidado: As configurações serão apagadas" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "Cuidado: A atualização do sistema será forçada" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Cadeia" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Alterações" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Alterações aplicadas." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "As mudanças foram revertidas." - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Muda a senha do administrador para acessar este dispositivo" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Canal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" -"O canal %d não está disponível no domínio regulatório '%s' e foi ajustado " -"automaticamente para %d." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Verificar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" -"Execute a verificação do sistema de arquivos antes da montagem do dispositivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "Marque esta opção para remover as redes existentes neste rádio." - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Soma de verificação" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "Escolha o bloco mtd" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Escolha a zona do firewall que você quer definir para esta interface. " -"Selecione não especificado -ou- criar para remover a interface da " -"zona associada ou preencha o campo para criar uma nova zona associada a esta " -"interface." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Escolha a rede (s) que deseja anexar a este interface wireless ou preencha o " -" criar campo para definir uma nova rede." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Cifra" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "Encapsulamento UDP da Cisco" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Clique em \"Gerar arquivo\" para baixar um arquivo tar com os arquivos de " -"configuração atuais." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" -"Clique em \"Salvar o bloco mtd\" para baixar o arquivo do bloco mtd " -"especificado. (NOTA: ESTE RECURSO É PARA PROFISSIONAIS!)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Cliente" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "" -"Identificador do cliente enviando quando a requisição do DHCP é realizada" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Feche as conexões inativas após uma dada quantidade de segundos. Use 0 para " -"manter as conexões" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Fechar a lista..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Coletando dados..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Comando" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Configuração Comum" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" -"Dificulta o ataque de reinstalação de chaves no lado do cliente ao " -"desabilitar a retransmissão de quadros EAPOL-Key que são usados para " -"instalar chaves. Esta solução de contorno pode causar problemas de " -"compatibilidade e reduzir a robustez da negociação de chaves, especialmente " -"em ambientes com muito tráfego." - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Configuração" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "A configuração falhou" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "Arquivos de configuração que serão mantidos" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "A configuração foi aplicada." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "A configuração foi revertida!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Confirmação" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Conectar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Conectado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Limite de conexão" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "A tentativa de conexão falhou" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Conexões" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" -"Não foi possível reestabelecer o acesso ao dispositivo depois de aplicar as " -"mudanças na configuração. Pode ser necessário reconectar se você modificou " -"configurações relacionadas a rede, como endereços IP ou credenciais de " -"segurança da rede sem fio." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "País" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Código do País" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Utilizando a seguinte interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Utilizando as seguintes interfaces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Criar / Atribuir a uma zona de firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Criar Interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Criar uma ponte juntando múltiplas interfaces" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Crítico" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Nível de Registro da Cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Interface Personalizada" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "Prefixo IPv6 delegado personalizado" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" -"Arquivos personalizados (certificados, scripts) podem permanecer no sistema. " -"Para evitar isso, restaure antes as configurações inicias." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Se possível, personaliza o comportamento dos LEDs." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Servidor DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP e DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "Cliente DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Opções de DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "Cliente DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "Modo DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "Serviço DHCPv6" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Encaminhamentos DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "Rótulo DNS / FQDN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "DNSSEC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "Verificar DNSSEC sem assinatura" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "Tempo de expiração para ociosidade do DPD" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "Endereço DS-Lite AFTR" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "DSL" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "Estado da DSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "Modo de linha DSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" -"Intervalo DTIM" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "Taxa de Dados" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Depurar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Padrão %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Roteador Padrão" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "O padrão é sem estado + com estado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Estado padrão" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Define um nome para esta rede." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Define opções adicionais do DHCP. Por exemplo " -"\"6,192.168.2.1,192.168.2.2\" que anuncia diferentes servidores " -"DNS para os clientes." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Apagar" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Apagar esta rede" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "Intervalo da Mensagem Indicativa de Envio de Tráfego" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Descrição" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Destino" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Dispositivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Configuração do Dispositivo" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "O dispositivo está reiniciando..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "Dispositivo não alcançável!" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" -"O dispositivo está fora de alcance! Ainda aguardando pelo dispositivo..." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnóstico" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "Número de discagem" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Diretório" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Desabilitar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Desabilita DHCP " -"para esta interface." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "Desabilitar Cifragem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "Desabilitar esta rede" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Desabilitado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "Desabilitado (padrão)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "Desassociar quando tiver baixa confirmação de recebimento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" -"Descartar respostas de servidores externos para redes privadas (RFC1918)" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "A tentativa de desconexão falhou" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "Dispensar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Otimização de Distância" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Distância para o computador mais distante da rede (em metros)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diversidade" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq é um servidor combinado de DHCP e DNS para firewalls NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" -"Não mantenha em cache para respostas negativas como, por exemplo, para os " -"domínios inexistentes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Não encaminhe requisições que não podem ser respondidas por servidores de " -"nomes públicos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "Não encaminhe buscas por endereço reverso das redes local" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Requerer domínio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Lista branca de domínios" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "Não Fragmentar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Não encaminhar consultas DNS sem o nome completo do DNS" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "Abaixo" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Baixar a cópia de segurança" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "Baixar o bloco mtd" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" -"Deslocamento SNR do sinal recebido" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear oferece um acesso shell seguro à rede (SSH) e um servidor SCP " -"integrado" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "Duas Pilhas Leve (RFC6333)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"DHCP " -"Dinâmico" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Túnel dinâmico" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Aloca dinamicamente os endereços do DHCP para os clientes. Se desabilitado, " -"somente os clientes com atribuições estáticas serão servidos." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "Comprimento dos bits EA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Método EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Editar" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" -"Edite os dados de configuração brutos abaixo para arrumar qualquer erro e " -"clique em \"Salvar\" para recarregar a página." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Editar esta interface" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Editar esta rede" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Emergência" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Ativar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" -"Habilitar o monitoramento do IGMP " -"(Snooping)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Ativar STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Ativar a atualização de ponto final dinâmico HE.net" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "Ativar a negociação de IPv6" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Ativar a negociação de IPv6 no enlace PPP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Ativar o encaminhamento de quadros jumbos (Jumbo Frames)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Ativar o cliente NTP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "Habilitar DES Simples" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Ativar servidor TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Ativar funcionalidade de VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "Habilite o botão WPS. requer WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" -"Habilitar contramedidas contra o ataque de reinstalação de chave (KRACK)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Ativar o aprendizado e obsolescência" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "Habilitar espelhamento dos pacotes entrantes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "Habilitar espelhamento dos pacotes saintes" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "Habilita o campo DF (Não Fragmentar) dos pacotes encapsulados." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Ativar esta montagem" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "Habilitar esta rede" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Ativar este espaço de troca (swap)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Ativar/Desativar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Ativado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" -"Habilitar o monitoramento do IGMP " -"(Snooping) nesta ponte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" -"Ativa a troca rápida entre pontos de acesso que pertencem ao mesmo Domínio " -"de Mobilidade" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Ativa o protocolo STP nesta ponte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Modo de encapsulamento" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Cifragem" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "Equipamento do ponto final" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "Porta do ponto final" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "Entre com valor personalizado" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "Entre com valores personalizados" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Apagando..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Erro" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "Segundos com erro (ES)" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Adaptador Ethernet" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Switch Ethernet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "Excluir interfaces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Expandir arquivos de equipamentos conhecidos (hosts)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Expira" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"Tempo de expiração dos endereços atribuídos. Mínimo é 2 minutos (2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "Externo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "Lista dos Detentor de Chave R0 Externa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "Lista dos Detentor de Chave R1 Externa" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Servidor externo de registros do sistema (syslog)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Porta do servidor externo de registro do sistema (syslog)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "Protocolo do servidor externo de registro do sistema (syslog)" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "Opções adicionais do comando SSH" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" -"FT sobre DS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "FT pelo ar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" -"Protocolo de FT" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" -"A confirmação das mudanças na configuração não foram confirmadas em %d " -"segundos. Aguardando a reversão da configuração..." - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Arquivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Nome do arquivo da imagem de boot anunciada para os clientes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Sistema de Arquivos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtrar endereços privados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtrar consultas inúteis" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "A finalização falhou" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" -"Encontre todos os sistemas de arquivos e espaços de troca (swap) atualmente " -"conectados e substitua a configuração com valores padrão baseados no que foi " -"detectado" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Procurar e conectar à rede" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Terminar" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "Marca do Firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Configurações do Firewall" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Estado do Firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "Arquivo da Firmware" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Versão do Firmware" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Porta de origem fixa para saída de consultas DNS" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Gravar Firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Gravar imagem..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Gravar nova imagem do firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Operações na memória flash" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Gravando na flash..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Forçar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "Force o modo 40MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Forçar CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Forçar o DHCP nesta rede mesmo se outro servidor for detectado." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Forçar TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forçar TKIP e CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "Forçar o enlace" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "Forçar a atualização" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "Force o uso do NAT-T" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "Chave eletrônica do formulário não casa" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Encaminhar tráfego DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" -"Segundos a frente de correção de erros ( FECS)" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Encaminhar tráfego broadcast" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "Encaminhar o tráfego do parceiro da malha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Modo de encaminhamento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Limiar de Fragmentação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Explosão de Quadros (Frame Bursting)" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Livre" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" -"Mais informações sobre interfaces e parceiros WireGuard em wireguard.com." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Somente GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Roteador" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "O endereço do roteador padrão é inválido" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Acesso remoto a portas encaminhadas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Configurações Gerais" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Configurações Gerais" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "Gerar Configuração" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" -"Gerar a PMK localmente" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Gerar arquivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Generico 802.11%s Wireless Controlador" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "A senha de confirmação informada não casa. Senha não alterada!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "Configurações Globais" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "Opções de rede globais" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Ir para a configuração de senha..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Ir para a página de configuração pertinente" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "Senha do Grupo" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "Convidado" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Senha HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "Usuário do HE.net" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" -"Modo HT " -"(802.11n)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Suspender" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" -"Erros de Código de Erro de Cabeçalho (HEC)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Aqui você pode configurar os aspectos básicos do seu equipamento, como o " -"nome do equipamento ou o fuso horário." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "" -"Ocultar ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "Equipamento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Entradas de Equipamentos" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Tempo limite de expiração de equipamento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" -"IP do Equipamento " -"ou Rede" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "Conteúdo da etiqueta única do equipamento" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Nome do equipamento" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Nome do equipamento enviado quando requisitar DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Nome dos equipamentos" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "Híbrido" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" -"Grupo DH do IKE" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "Endereços IP" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "Protocolo IP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Endereço IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "O endereço IP é inválido" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "O endereço IP está ausente" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "Firewall para IPv4" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "Enlace IPv4 Superior" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Endereço IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "Tamanho da atribuição IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "Broadcast IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "Roteador padrão IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Máscara de rede IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "Prefixo IPv4" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Tamanho do prefixo IPv4" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "IPv4+IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "Endereço IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "IPv4-in-IPv4 (RFC2003)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "Firewall para IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "Vizinhos IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "Configurações IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" -"Prefixo ULA " -"IPv6" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "Enlace IPv6 Superior" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Endereço IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "Sugestão de atribuição IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "Tamanho da atribuição IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "Roteador padrão do IPv6" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "Prefixo IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Tamanho Prefixo IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "Prefixo roteável IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "Sufixo IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "Endereço IPv6" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "IPv6-PD" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-in-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-sobre-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-sobre-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identidade PEAP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "Se marcado, a cifragem 1DES será habilitada" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "Se marcado, a cifragem estará desabilitada" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Se especificado, monta o dispositivo pelo seu UUID ao invés de um nó de " -"dispositivo fixo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Se especificado, monta o dispositivo pela etiqueta da partiçãoo ao invés de " -"um nó de dispositivo fixo" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Se desmarcado, nenhuma rota padrão será configurada" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" -"Se desmarcado, os endereços dos servidores DNS anunciados serão ignorados" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Se a sua memória física for insuficiente, os dados não utilizados poderão " -"ser armazenados temporariamente em um dispositivo swap, resultando em uma " -"maior quantidade de memória RAM utilizável. Esteja ciente de que a troca de dados (swap) é um processo " -"muito lento, uma vez que o dispositivo swap não pode ser acessado com taxas " -"de transferência tão altas com a memória RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ignorar /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignorar interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignorar arquivo de resolução de nomes (resolv.conf)" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Imagem" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Entrada" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" -"Para prevenir acesso não autorizado neste sistema, sua requisição foi " -"bloqueada. Clique abaixo em \"Continuar »\" para retornar à página anterior." - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Tempo limite de inatividade" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Entrando:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Informação" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "Falha na iniciação" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Script de iniciação" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Scripts de iniciação" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "Instale iputils-traceroute6 para rastrear rotas IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Instalar pacote %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Instalar extensões de protocolo..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "Dispositivo da interface %q foi migrada automaticamente de %q para &q." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Configuração da Interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Visão Geral da Interface" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "A interface está reconectando..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "Nome da Interface" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "A interface não está presente ou não está conectada ainda." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfaces" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "Interno" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Erro Interno no Servidor" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Valor inválido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" -"O valor informado do ID da VLAN é inválido! Somente valores entre %d e %d " -"são permitidos." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" -"O valor informado do ID da VLAN é inválido! Somente valores únicos são " -"permitidos" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Usuário e/ou senha inválida! Por favor, tente novamente." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "Isolar Clientes" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"A imagem que está a tentar carregar aparenta nao caber na flash do " -"equipamento. Por favor verifique o arquivo da imagem!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "É necessário JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Conectar à Rede" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Conectar à Rede: Busca por Rede Sem Fio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "Juntando-se à rede %q" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Manter configurações" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Registro do Kernel" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Versão do Kernel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Chave" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Chave #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Matar" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "Servidor L2TP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "Limite de falha no eco do LCP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "Intervalo do eco do LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Etiqueta" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Idioma" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Idioma e Estilo" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "Latência" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "Folha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "Tempo de concessão" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Arquivo de atribuições" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Tempo restante da atribuição" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Deixe vazio para detectar automaticamente" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Deixe vazio para usar o endereço WAN atual" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Legenda:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Limite" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" -"Limite o serviço DNS para subredes das interfaces nas quais estamos servindo " -"DNS." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "Escute somente nestas interfaces e na interface local (loopback)." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "Atenuação de Linha (LATN)" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "Modo da Linha" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "Estado da Linha" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "Tempo de Atividade da Linha" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Enlace Ativo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Lista dos servidores DNS para " -"encaminhar as requisições" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" -"Lista dos R0KHs no mesmo Domínio de Mobilidade.
    Formato: Endereço " -"MAC, Identificador NAS, chave de 128 bits como cadeia hexadecimal.
    " -"Esta lista é usada para mapear o Identificador R0KH (Identificador NAS) para " -"um endereço MAC de destino ao solicitar a chave PMK-R1 a partir do R0KH que " -"o STA usado durante a Associação de Domínio de Mobilidade Inicial." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" -"Lista dos R1KHs no mesmo Domínio de Mobilidade.
    Formato: Endereço " -"MAC, R1KH-ID como 6 octetos com dois pontos, chave de 128 bits como cadeia " -"hexadecimal.
    Esta lista é usada para mapear o identificador R1KH para " -"um endereço MAC de destino ao enviar a chave PMK-R1 a partir do R0KH. Esta é " -"também a lista de R1KHs autorizados no MD que podem solicitar chaves PMK-R1." - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "Lista de arquivos de chaves SSH para autenticação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" -"Lista dos domínios para os quais será permitido respostas apontando para " -"redes privadas (RFC1918)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" -"Lista de servidores DNS que " -"fornecem resultados errados para consultas a domínios inexistentes (NX)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "Interfaces de Escuta" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "Porta de Escuta" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Escuta apenas na interface especificada. Se não especificado, escuta em todas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Porta de escuta para a entrada das consultas DNS" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Carga" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Carga Média" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Carregando" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "O endereço IP local é inválido" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "Endereço IP local para atribuir" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Endereço IPv4 local" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Endereço IPv6 local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "Somente Serviço Local" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Iniciação Local" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Hora Local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Domínio Local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Especificação do domínio local. Nomes que casam com este domínio nunca serão " -"encaminhados e são resolvidos somente pelo DHCP ou pelo arquivos de " -"equipamentos conhecidos (hosts)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Sufixo do domínio local adicionado aos nomes no DHCP e nas entradas dos " -"arquivo de equipamentos conhecidos (hosts)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Servidor local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Localizar o nome do equipamento dependendo da subrede requisitante se " -"mútliplos endereços IPs estiverem disponíveis" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Localizar consultas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "Travado no canal %s usado por: %s" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Nível de detalhamento de saída dos registros" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Registar as consultas" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Registrando os eventos" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Entrar" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Sair" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" -"Segundos de Perda de Sinal (LOSS)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "O endereço mais baixo concedido como deslocamento do endereço da rede." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "MAC" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "Endereço MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Filtro de Endereço MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Filtro de MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Lista de MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "MAP / LW4over6" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "A regra MAC é inválida" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "MD5" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" -"MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" -"Certifique-se que clonou o sistema de arquivos raiz com algo como o comando " -"abaixo:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "Manual" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" -"Taxa de Dados Atingível Máxima (ATTNDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Número máximo permitido de alocações DHCP ativas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Número máximo permitido de consultas DNS concorrentes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Tamanho máximo permitido dos pacotes UDP EDNS.0" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Tempo máximo, em segundos, para esperar que o modem fique pronto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" -"Comprimento máximo do nome é de 15 caracteres, incluindo o prefixo " -"automático do protocolo/ponte (br-, 6in4- pppoe-, etc.)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Número máximo de endereços atribuídos." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Memória" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Uso da memória (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "Identificador da Malha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Métrica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "Porta de monitoramento do espelho" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "Porta de origem do espelho" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Extensão para o protocolo %q está ausente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "Domínio da Mobilidade" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Modo" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "Modelo" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "Padrão do modem" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Dispositivo do Modem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "A consulta das informações do modem falhou" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Estouro de tempo da iniciação do modem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Entrada de Montagem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Ponto de Montagem" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Pontos de Montagem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Pontos de Montagem - Entrada de Montagem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Pontos de Montagem - Entrada da Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Pontos de montagem definem em que ponto um dispositivo de armazenamento será " -"anexado ao sistema de arquivos" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "Monte sistemas de arquivos não especificamente configurados" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Opções de montagem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Ponto de montagem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "Montar espalho de troca (swap) não especificamente configurado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Sistemas de arquivos montados" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Mover para baixo" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Mover para cima" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "Modo NAT-T" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "Prefixo NAT64" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "NCM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "Proxy NDP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "Domínio NT" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Candidatos a servidor NTP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Nome" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Nome da nova interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Nome da nova rede" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navegação" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Máscara de rede" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Rede" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Utilitários de Rede" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Imagem de boot pela rede" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "O dispositivo de rede não está presente" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Rede sem interfaces." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Próximo »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Nenhum Servidor DHCP configurado para esta interface" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "Sem NAT-T" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nenhum arquivo encontrado" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Nenhuma informação disponível" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "Não casou com nenhum prefixo delegado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Nenhum cache negativo" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Nenhuma rede configurada neste dispositivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Nenhum nome de rede foi especificado" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Nenhuma senha definida!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Sem regras nesta cadeia" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "Ainda não existem resultados do escaneamento..." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Nenhuma zona definida" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Ruído" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" -"Margem de Ruído (SNR)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Ruído:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" -"Erros CRC Não PreemptivosCRC_P" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "Sem caracter curinga" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Nenhum" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normal" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Não Encontrado" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Não conectado" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Não conectado" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "Aviso: tamanho do nome da interface" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Aviso" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "Número de entradas DNS em cache (máximo é 10000, 0 desabilita o cache)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "Senha Ofuscada do Grupo" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "Senha Ofuscada" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "Obter Endereço IPv6" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Atraso no estado de desligado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Nesta página pode configurar as interfaces de rede. Esta interface pode " -"formar uma ponte juntando várias interfaces. Para isto, marque o campo " -"\"Juntar interfaces em uma ponte\" e informar as várias interfaces de rede. " -"Pode também usar a notação para VLAN INTERFACE.VLANNR (ex.: " -"eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Atraso no estado de conexões" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" -"É necessário especificar ao menos um nome de equipamento ou endereço MAC!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Um ou mais campos contém valores inválidos!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "Um ou mais valores inválidos/obrigatórios na aba" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Um ou mais campos obrigatórios não tem valor!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Abrir lista..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "OpenConnect (CISCO AnyConnect)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "Frequência de Operação" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Opção alterada" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Opção removida" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "Opcional" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" -"Opcional. Marca 32 bits dos pacotes cifrados que estão saindo. Entre valores " -"em hexadecimal, começando com 0x." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" -"Opcional. Valores permitidos: 'eui64', 'aleatório', ou valores fixos como " -"'::1' ou '::1:2'. Quando o prefixo IPv6 (como 'a:b:c:d::') for recebido de " -"um servidor, use este sufixo (como '::1') para formar o endereço IPv6 ('a:b:" -"c:d::1') para esta interface." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" -"Opcional. Adiciona uma camada extra de cifragem simétrica para resistência " -"pós quântica." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "Opcional. Cria rotas para endereços IP Autorizados para este parceiro." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "Opcional. Descrição do parceiro." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" -"Opcional. Equipamento do parceiro. Nomes serão resolvido antes de levantar a " -"interface." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "Opcional. Unidade Máxima de Transmissão da interface do túnel." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "Opcional. Porta do parceiro." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" -"Opcional. Segundos entre mensagens para manutenção da conexão. O padrão é 0 " -"(desabilitado). O valor recomendado caso este dispositivo esteja atrás de " -"uma NAT é 25." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "Opcional. Porta UDP usada para pacotes saintes ou entrantes." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Opções" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Outro:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Saída" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Saindo:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "Interface de Saída" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "Sobrescrever o endereço MAC" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" -"Sobrescrever o MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "Sobrescrever o TOS" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "Sobrescrever o TTL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "Sobrescrever o nome da nova interface" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Sobrescrever o roteador padrão nas respostas do DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Sobrescrever a máscara de rede enviada aos clientes. Normalmente, ela é " -"calculada a partir da máscara da subrede de onde o cliente solicitou o " -"endereço." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "Sobrescrever a tabela usada para as rotas internas" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Visão geral" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Dono" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "Senha do PAP/CHAP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "Usuário do PAP/CHAP" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "Código PIN rejeitado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "PMK R1 Push" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Encapsulamento PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "PPPoSSH" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "Deslocamento PSID" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "Comprimento dos bits PSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "PTM/EFM (Modo de Transferência de Pacotes)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "O pacote libiwinfo é necessário!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Pacotes" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Parte da zona %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Senha" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Autenticação por senha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Senha da Chave Privada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "Senha da Chave Privada interna" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "Senha2" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Caminho para o Certificado da AC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Caminho para o Certificado do Cliente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Caminho para a Chave Privada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "Caminho para o certificado AC interno" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "Caminho para o Certificado do Cliente interno" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "Caminho para a Chave Privada interna" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Pico:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "Endereço IP do parceiro para atribuir" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "O endereço do parceiro está ausente" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "Parceiros" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "Sigilo Encaminhado Perfeito" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Reiniciar o sistema" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Restaurar as configuração iniciais" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "Manutenção da Conexão Persistente" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Taxa física:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Configurações Físicas" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pcts." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Entre com o seu usuário e senha." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Política" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Porta" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Status da porta:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "Modo de Gerenciamento de Energia" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" -"Erros CRC PreemptivosCRCP_P" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "Preferir LTE" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "Preferir UMTS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "Prefixo Delegado" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "Chave Compartilhada" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"Assumir que o parceiro está morto depois de uma data quantidade de falhas de " -"echo do LCP. Use 0 para ignorar as falhas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "Evite escutar nestas Interfaces." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Impede a comunicação de cliente para cliente" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "Chave Privada" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Proceder" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Processos" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "Perfil" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Protocolo" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protocolo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Protocolo para a nova interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "O suporte ao protocolo não está instalado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Fornecer serviço NTP" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Prover nova rede" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Ad-Hoc falso (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "Chave Pública" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" -"Prefixo público roteado para este dispositivo para distribuição a seus " -"clientes." - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "Celular QMI" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Qualidade" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" -"Consulte todos os servidores DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "Validade da Chave R0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "Detentor da Chave R1" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "Modo NAT-T (RFC3947)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Limiar RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "Taxa de RX" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Porta de contabilidade do RADIUS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Segredo da contabilidade do RADIUS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Servidor da contabilidade do RADIUS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Porta de autenticação do RADIUS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Segredo da autenticação do RADIUS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Servidor da autenticação do RADIUS" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" -"Bytes brutos codificados em hexadecimal. Deixe vazio a não ser que seu " -"provedor requeira isso" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Ler /etc/ethers para configurar o Servidor-DHCP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" -"Você realmente quer apagar esta interface? Esta operação não pode ser " -"desfeita! Você pode perder acesso a este dispositivo se você estiver " -"conectado por meio desta interface" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Realmente excluir esta interface Wireless? A exclusão não pode ser " -"desfeita!\n" -"Você poderá perder o acesso a este dispositivo se você estiver conectado " -"através desta interface." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Realmente limpar todas as mudanças?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Realmente trocar o protocolo?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Conexões em Tempo Real" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Gráficos em Tempo Real" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Carga em Tempo Real" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Tráfego em Tempo Real" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Rede sem fio em Tempo Real" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "Limite para Reassociação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Proteção contra \"Rebind\"" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Reiniciar" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Reiniciando..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Reinicia o sistema operacional do seu dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Receber" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Antena de Recepção" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "Recomendado. Endereços IP da interface do WireGuard." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Reconectar esta interface" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Referências" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Retransmissor" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Ponte por Retransmissão" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Encaminha o tráfego entre as redes" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Ponte por retransmissão" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Endereço IPv4 remoto" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "Endereço IPv4 remoto ou FQDN" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Remover" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Repetir busca" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Substituir entrada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Substituir a configuração da rede sem fio" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "Solicita endereço IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "Solicita prefixo IPv6 de tamanho" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "Necessário" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" -"Obrigatório para alguns provedores de internet, ex. Charter com DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "Obrigatório. Chave privada codificada em Base64 para esta interface." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "Necessário. Chave Pública do parceiro codificada como Base64." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" -"Obrigatório. Endereços IP e prefixos que este parceiro está autorizado a " -"usar dentro do túnel. Normalmente é o endereço IP do parceiro no túnel e as " -"redes que o parceiro roteia através do túnel." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" -"Exige o suporte DNSSEC do servidor superior; verifica se as respostas não " -"assinadas realmente vêm de domínios não assinados" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Limpar" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Reiniciar contadores" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Redefinir para os valores padrão" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Arquivos de Resolv e Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Arquivo Resolv" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Reiniciar" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Reiniciar o firewall" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "Reinicie a interface do rádio" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Restauração" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Restaurar cópia de segurança" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Relevar/esconder senha" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Reverter" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "Reverter as mudanças" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" -"O pedido para reverter as configurações falhou com o estado %h" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "Revertendo configurações..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Raiz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Diretório raiz para arquivos disponibilizados pelo TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "Prepação da raiz (/)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "Roteie Andereços IP Autorizados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "Tipo de rota" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "Serviço de Anúncio de Roteador" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Senha do Roteador" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Rotas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"As rotas especificam através de qual interface e roteador um certo destino " -"podem ser alcançado." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" -"Execute a verificação do sistema de arquivos antes da montagem do dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Execute a verificação do sistema de arquivos" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "SHA256" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "SNR" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Acesso SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "Endereço do servidor SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "Porta do servidor SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "Usuário do SSH" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "Chaves SSH" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Salvar" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Salvar & Aplicar" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "Salvar o bloco mtd" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "Salvar o conteúdo do bloco mtd" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Procurar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "O pedido de escaneamento falhou" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Tarefas Agendadas" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Seção adicionada" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Seção removida" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Veja o manual (man) do comando \"mount\" para detalhes" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" -"Selecione 'Forçar a atualização' para gravar a imagem mesmo se a verificação " -"do formato da imagem falhar. Use somente se você estiver confiante que a " -"firmware está correta e é destinada para seu dispositivo!" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"Enviar requisições de eco do LCP no dado intervalo em segundos. Somente " -"efetivo em conjunto com o limite de falhas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Isolar Clientes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Configurações do Servidor" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Nome do Serviço" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Tipo do Serviço" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Serviços" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" -"Definir as propriedades da interface independentemente da portadora do " -"enlace (Se definido, eventos de detecção da portadora não irão gerar eventos " -"do hotplug)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "Configurar a Sincronização do Horário" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" -"A configuração da PLNM " -"falhou" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "A configuração do modo de operação falhou" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Configurar Servidor DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" -"Segundos com erro severos (SES)" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "Intervalo de guarda curto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "Preâmbulo curto" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Mostra a lista atual de arquivos para a cópia de segurança" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Desligar esta interface" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Sinal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "Atenuação do Sinal (SATN)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Sinal:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Tamanho" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "Tamanho do cache de consultas DNS" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Pular" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Pular para o conteúdo" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Pular para a navegação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Intervalo de tempo" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "VLAN em Software" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Alguns campos estão inválidos e os valores não podem ser salvos!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Desculpe o objeto solicitado não foi encontrado." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Desculpe, o servidor encontrou um erro inesperado." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"Sinto muito, não existe suporte para o sysupgrade. Uma nova imagem de " -"firmware deve ser gravada manualmente. Por favor, consulte a wiki para " -"instruções específicas da instalação deste dispositivo." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Origem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Especifica o diretório que o dispositivo está conectado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Especifica a porta de escuta deste Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Especifica a quantidade máxima de requisições ARP falhadas antes de " -"considerar que um equipamento está morto" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" -"Especifica a quantidade máxima de segundos antes de considerar que um " -"equipamento está morto" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "Especifique um Tipo de Serviço (TOS)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" -"Especifica o tempo de vida (TTL) para os " -"pacotes encapsulados ao invés do padrão (64)." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" -"Especifica a unidade máxima de transmissão (MTU) ao invés do valor padrão (1280 bytes)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Especifique a chave de cifragem secreta aqui." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Iniciar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Prioridade de iniciação" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "Iniciando a aplicação da configuração..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "Iniciando o escaneamento da rede sem fio..." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Iniciação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Rotas Estáticas IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Rotas Estáticas IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Alocações Estáticas" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Rotas Estáticas" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Endereço Estático" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Alocações estáticas são usadas para definir um endereço IP fixo e nome " -"simbólico para os clientes do DHCP. Elas também são necessárias para " -"configurações não dinâmicas onde um computador com a alocação correspondente " -"é provido." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Estado" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Parar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Ordem Exata" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Enviar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "Suprimir registros (log)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "Suprimir registros (log) de operações rotineiras destes protocolos" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "Espaço de Troca (swap)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Entrada do espaço de troca (Swap)" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Switch %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Switch %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" -"O Switch %q tem uma topologia desconhecida - as configurações de VLAN podem " -"não ser precisas." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "Máscara da porta do Switch" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "Switch VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Trocar o protocolo" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Sincronizar com o navegador" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Sincronizando..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Sistema" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Registro do Sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Propriedades do Sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Tamanho do buffer de registro do sistema" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Configurações do TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Raiz do servidor TFTP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "Taxa de TX" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tabela" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Destino" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "Rede de destino" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Terminar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"A seção da Configuração do Dispositivo engloba as configurações " -"físicas do rádio como canal, potência de transmissão ou seleção da antena. " -"Estas configurações são compartilhadas entre todas as redes sem fio (se o " -"hardware for capaz de utilizar múltiplas SSID). As configurações específicas " -"de cada rede, como cifragem ou modo de operação estão agrupadas na " -"Configuração da Interface." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"O pacote libiwinfo-lua não está instalado. Você precisa instalar " -"este componente para ter uma configuração da rede sem fio funcional!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" -"A configuração da atualização de pontas HE.net mudou. Você deve agora usar o " -"nome do usuário ao invés do identificador do usuário!" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "O endereço IPv4 ou o nome completo (FQDN) da ponta remota do túnel." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"O prefixo IPv6 atribuído pelo provedor, geralmente termina com::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Os caracteres permitidos são: A-Z, a-z, 0-9 e _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" -"O arquivo de recuperação não parece ser um arquivo válido no formato GZIP." - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" -"O arquivo de configuração não pode ser carregado devido ao seguinte erro:" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" -"O dispositivo não foi alcançado em %d segundos depois de aplicar as " -"configurações pendentes. Por questões de segurança, as configurações foram " -"revertidas. Se você acredita que as mudanças de configuração estão realmente " -"corretas, aplique as configurações sem verificação. Alternativamente, você " -"pode dispensar este aviso e editar as configurações antes de tentar aplicá-" -"las novamente, ou reverter todas as configurações pendentes e manter o " -"estado atual em uso." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"O arquivo do dispositivo de armazenamento ou da partição (ex: /dev/" -"sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"O sistema de arquivos que foi usado para formatar a unidade de armazenamento " -"(ex. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"A imagem do firmware foi enviada. Abaixo estão a soma de verificação " -"(checksum) e o tamanho dom arquivo. Compare-os com o arquivo original para " -"garantir a integridade dos dados.
    Clique em \"Proceder\" para iniciar " -"o procedimetno de gravação." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "As seguintes alterações foram revertidas" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "As seguintes regras estão atualmente ativas neste sistema." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "O nome de rede informado não é único" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"Este equipamento não é capaz de utilizar SSID múltiplos e as configurações " -"existentes serão substituídas se você proceder." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"O comprimento do prefixo IPv4 em bits, o restante é usado nos endereços IPv6." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "O comprimento do prefixo IPv6 em bits" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "O endereço IPv4 local sobre o qual o túnel será criado (opcional)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"As portas de rede neste dispositivo podem ser configuradas em diversas VLANs nas quais computadores em uma " -"mesma VLAN podem se comunicar " -"diretamente. VLANs são muitas " -"vezes utilizadas para separar diferentes segmentos de rede. Em geral, existe " -"uma porta para o enlace superior (uplink) e as demais portas são utilizadas " -"para a rede local." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "O protocolo selecionado necessita estar associado a um dispositivo" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "A chave eletrônica enviada é inválida ou já expirou!" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"O sistema está apagando agora a partição da configuração e irá reiniciar " -"quando terminado." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"O sistema está gravando o firmware para a flash.
    NÃO DESLIGUE O " -"EQUIPAMENTO!
    Espere alguns minutos até tentar reconectar. Dependendo " -"da sua configuração, pode ser necessário renovar o endereço do seu " -"computador para poder conectar novamente ao roteador." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"A imagem carregada não contém um formato suportado. Confirme que você " -"escolheu uma imagem para a sua plataforma." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Tema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Não existem alocações ativas." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "Não existem mudanças para aplicar." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Não existem modificações pendentes para reverter!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Não existem modificações pendentes!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Ainda não existe um dispositivo associado. Por favor, associe um dispositivo " -"de rede na aba \"Configurações Físicas\"" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Não existem uma senha definida para este roteador. Por favor, configure uma " -"senha para o root para proteger a interface WEB e habilitar o SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "Este endereço IPv4 do repassar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" -"Este arquivo deve conter linhas como 'server=/domain/1.2.3.4' ou " -"'server=1.2.3.4' para servidores DNS por domínio ou completos." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"Esta é a lista dos padrões de expressão shell para casar com os arquivos e " -"diretórios incluídos durante a atualização do sistema. Arquivos modificados " -"em /etc/config/ e alguns outros arquivos de configuração são automaticamente " -"preservados." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" -"Isto é a \"Update Key\" configurada para o túnel ou a senha da cpnta se não " -"tem uma \"Update Keu\" configurada" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Este é o conteúdo do /etc/rc.local. Insira seus próprios comandos aqui " -"(antes de 'exit 0') para executá-los no final do processo de boot." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"Este é o endereço da ponta local designado pelo agente de túnel. normalmente " -"ele termina com ...:2/64" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Este é o único DHCP na rede local" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "Este é o nome do usuário em para se autenticar na sua conta" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" -"Este é o prefixo roteado pelo agente do tunel para você usar com seus " -"clientes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "Este é o sistema de agendamento de tarefas." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" -"Este é normalmente o endereço do PoP mais próximo operado pelo agente de túnel" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Esta lista fornece uma visão geral sobre os processos em execução no sistema." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "Esta página fornece informações sobre as conexões de rede ativas." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Esta seção ainda não contêm valores" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Sincronização de horário" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "A sincronização do horário ainda não está configurada." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Fuso Horário" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Para recuperar os arquivos de configuração, você pode enviar aqui uma cópia " -"de segurança anterior. Para retornar o roteador para o seu estado inicial, " -"clique em \"Restaurar as configurações iniciais\" (somente possível para " -"imagens do tipo squashfs)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "Tom" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Total Disponível" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Tráfego" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Transferências" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Taxa de Transmissão" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Transmitir" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Potência de Transmissão" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Antena de Transmissão" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Disparo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Modo de disparo" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "Identificador do Túnel" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Interface de Tunelamento" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "Enlace do túnel" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Potência de transmissão" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Tipo" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "UMTS somente" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "Dispositivo USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "Portas USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "Não foi possível determinar o nome do dispositivo" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "Não foi possível determinar o endereço IP externo" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "Não foi possível determinar a interface com a rede externa" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Não é possível a expedição" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "Não foi possível obter o identificador do cliente" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "Não foi possível resolver o nome do AFTR" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "Não foi possível resolver o nome do parceiro" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" -"Segundos de indisponibilidade (UAS)" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Desconhecido" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "Erro desconhecido (%s)" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Não gerenciado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "Desmontar" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Alterações Não Salvas" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" -"Tipo de MAP não suportado" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "Modem não suportado" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Tipo de protocolo não suportado." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "Acima" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Envia uma imagem compatível do sistema para substituir o firmware em " -"execução. Marque \"Manter configurações\" para manter as configurações " -"atuais (requer uma imagem compatível)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Enviar arquivo..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Arquivo Carregado" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Tempo de atividade" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Usar /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Use o roteador do DHCP" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Use os servidores DNS anunciados pelo parceiro" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Usar códigos de países ISO/IEC 3166 alpha2." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" -"Use o MTU na interface do túnel" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "Use TTL na interface do túnel" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "Use como uma sobreposição externa (/overlay)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "Usar como o sistema de arquivos raiz (/)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Use a marcação de broadcast" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "Use o gerenciamento do IPv6 embarcado" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Use servidores DNS personalizados" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Use o roteador padrão" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Use a métrica do roteador" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Use a tabela de roteamento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Use o botão Adicionar para adicionar uma nova entrada de " -"atribuição. O endereço MAC-Address identifica o equipamento, o " -"endereço IPv4 especifica o endereço fixo para usar e o nome do " -"equipamento é designado como nome simbólico (DNS) para o equipamento " -"requisitante." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Usado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Posição da Chave Usada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" -"Usado para dois diferentes propósitos: identificador do RADIUS NAS e do " -"802.11r R0KH. Não necessário com o WPA(2)-PSK normal." - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "Certificado do usuário (codificado em formato PEM)" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "Chave do usuário (codificada em formato PEM)" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Usuário" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "VDSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANs em %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANs em %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "Endereço Local da VPN" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "Porta Local da VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "Servidor VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "Porta do Servidor VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "Resumo digital SHA1 do certificado do servidor VPN" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "VPNC (VPN do CISCO 3000 (e outros))" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "Fabricante" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "Classe do fabricante para enviar quando requisitar o DHCP" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Verificar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "Interface virtual dinâmica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "WEP Sistema Aberto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "WEP Chave Compartilhada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "WEP Senha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Modo WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "WPA Senha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"A cifragem WPA requer a instalação do wpa_supplicant (para modo cliente) ou " -"do hostapd (para modo AP ou ad-hoc)." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Esperando a aplicação das mudanças..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Esperando o término do comando..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "Esperando que a configuração seja aplicada...%ds" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "Esperando pelo dispositivo..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Atenção" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "Atenção: Existem mudanças não salvas que serão perdidas ao reiniciar!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "Largura" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "VPN WireGuard" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Rede sem fio" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Dispositivo de Rede sem Fio" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Rede sem Fio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Visão Geral da Rede sem Fio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Segurança da Rede sem Fio" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Rede sem fio está desabilitada" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Rede sem fio está não conectada" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "A rede sem fio está reiniciando..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "A rede sem fio está desabilitada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "A rede sem fio está habilitada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Escreva as requisições DNS para o servidor de registro (syslog)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "Escrever registro do sistema (log) no arquivo" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Neste local, você pode ativar ou desativar os scripts de iniciação " -"instalados. As mudanças serão aplicadas após a reiniciação do equipamento." -"
    Aviso: Se você desativar algum script de iniciação essencial " -"como por exemplo \"rede/network\", o dispositivo poderá tornar-se " -"inacessível!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Você precisa habilitar o JavaScript no seu navegador ou o LuCI não irá " -"funcionar corretamente." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "qualquer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "automático" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "em ponte" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "criar" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "criar:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "cria uma ponte sobre determinada(s) interface(s)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "desativar" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "desabilitado" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "expirado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"arquivo onde as alocações DHCP são armazenadas" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "encaminhar" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "full-duplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "half-duplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "ocultar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "modo híbrido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "se o destino for uma rede" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "entrada" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "" -"arquivo local de DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "minutos" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "WPA/WPA2 em modo misto" - -# Is this yes/no or no like in no one? -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "não" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "sem link" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "não presente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "desligado" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "ligado" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "aberto" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "saída" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "sobreposição" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "aleatório" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "modo retransmissor" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "roteado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "modo servidor" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "somente com estado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "sem estado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "sem estado + com estado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "etiquetado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "unidades de tempo (TUs / 1.024 ms) [1000-65535]" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "desconhecido" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "ilimitado" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "não especificado" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "não especificado -ou- criar:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "não etiquetado" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "sim" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Voltar" - -#~ msgid "" -#~ "Your Internet Explorer is too old to display this page correctly. Please " -#~ "upgrade it to at least version 7 or use another browser like Firefox, " -#~ "Opera or Safari." -#~ msgstr "" -#~ "Seu Internet Explorer é muito velho para mostrar esta página " -#~ "corretamente. Por favor, atualiza para, ao menos, a versão 7 ou use outro " -#~ "navegador como o Firefox, Opera ou Safari." - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "When using a PSK, the PMK can be generated locally without inter AP " -#~ "communications" -#~ msgstr "" -#~ "Quando o PSK é usado, a PMK pode ser gerada localmente sem " -#~ "comunicação entre os pontos de acesso" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Aqui você pode colar as chaves públicas do SSH (uma por linha) para a " -#~ "autenticação por chaves do SSH." - -#~ msgid "Password successfully changed!" -#~ msgstr "A senha foi alterada com sucesso!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Erro Desconhecido, a senha não foi alterada!" - -#~ msgid "Design" -#~ msgstr "Tema" - -#~ msgid "Available packages" -#~ msgstr "Pacotes disponíveis" - -#~ msgid "Bind only to specific interfaces rather than wildcard address." -#~ msgstr "" -#~ "Vincule somente para as explicitamenteinterfaces ao invés do endereço " -#~ "coringa." - -#~ msgid "" -#~ "Build/distribution specific feed definitions. This file will NOT be " -#~ "preserved in any sysupgrade." -#~ msgstr "" -#~ "Fonte de pacotes específico da compilação/distribuição. Esta NÃO será " -#~ "preservada em qualquer atualização do sistema." - -#~ msgid "" -#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " -#~ "in a sysupgrade." -#~ msgstr "" -#~ "Definições de fonte de pacotes personalizadas, ex: fontes privadas. Este " -#~ "arquivo será preservado em uma atualização do sistema." - -#~ msgid "Custom feeds" -#~ msgstr "Fontes de pacotes customizadas" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Mostre somente os pacotes contendo" - -#~ msgid "Distribution feeds" -#~ msgstr "Fontes de pacotes da distribuição" - -#~ msgid "Download and install package" -#~ msgstr "Baixe e instale o pacote" - -#~ msgid "Filter" -#~ msgstr "Filtro" - -#~ msgid "Find package" -#~ msgstr "Procurar pacote" - -#~ msgid "Free space" -#~ msgstr "Espaço livre" - -#~ msgid "General options for opkg" -#~ msgstr "Opções gerais para o opkg" - -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgid "Installed packages" -#~ msgstr "Pacotes instalados" - -#~ msgid "No package lists available" -#~ msgstr "Nenhuma lista de pacotes disponível" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Configuração-OPKG" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "As listas de pacotes são mais antigas do que 24 horas" - -#~ msgid "Package name" -#~ msgstr "Nome do Pacote" - -#~ msgid "Size (.ipk)" -#~ msgstr "Tamanho (.ipk)" - -#~ msgid "Software" -#~ msgstr "Software" - -#~ msgid "Update lists" -#~ msgstr "Atualizar listas" - -#~ msgid "Version" -#~ msgstr "Versão" - -#~ msgid "none" -#~ msgstr "nenhum" - -#~ msgid "Disable DNS setup" -#~ msgstr "Desabilita a configuração do DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 e IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Somente IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Somente IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Tempo de validade da atribuição" - -#~ msgid "Multicast address" -#~ msgstr "Endereço de Multicast" - -#~ msgid "Protocol family" -#~ msgstr "Família do protocolo" - -#~ msgid "No chains in this table" -#~ msgstr "Nenhuma cadeira nesta tabela" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Os arquivos de configuração serão mantidos." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Nota: Os arquivos de configuração serão apagados." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Ativar esta rede" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Hermes 802.11b Wireless Controlador" - -#~ msgid "Interface is shutting down..." -#~ msgstr "A interface está desligando..." - -#~ msgid "Interface reconnected" -#~ msgstr "Interface reconectada" - -#~ msgid "Interface shut down" -#~ msgstr "Interface desligada" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Prism2/2.5/3 802.11b Wireless Controlador" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "RaLink 802.11%s Wireless Controlador" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "Realmente desligar esta interface\"%s\" ?\n" -#~ "Você poderá perder o acesso a este dispositivo se você estiver conectado " -#~ "através desta interface." - -#~ msgid "Reconnecting interface" -#~ msgstr "Reconectando interface" - -#~ msgid "Shutdown this network" -#~ msgstr "Desligar esta rede" - -#~ msgid "Wireless restarted" -#~ msgstr "A rede sem fio reiniciou" - -#~ msgid "Wireless shut down" -#~ msgstr "Rede sem fio desligada" - -#~ msgid "DHCP Leases" -#~ msgstr "Alocações do DHCP" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "Alocações DHCPv6" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "Realmente excluir esta interface? A exclusão não pode ser desfeita!\n" -#~ " Você poderá perder o acesso a este dispositivo se você estiver conectado " -#~ "através desta interface." - -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "Realmente desligar esta rede\"%s\" ?\n" -#~ "Você poderá perder o acesso a este dispositivo se você estiver conectado " -#~ "através desta interface." - -#~ msgid "Sort" -#~ msgstr "Ordenar" - -#~ msgid "help" -#~ msgstr "ajuda" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "Estado IPv4 da WAN" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "Estado IPv6 da WAN" diff --git a/luci-base/po/pt/base.po b/luci-base/po/pt/base.po deleted file mode 100644 index 1544bb23e..000000000 --- a/luci-base/po/pt/base.po +++ /dev/null @@ -1,6618 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-05-26 19:03+0200\n" -"PO-Revision-Date: 2013-09-22 18:50+0200\n" -"Last-Translator: Low \n" -"Language-Team: LANGUAGE \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: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(janela de %d minutos, intervalo de %d segundos)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s disponível)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(vazio)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(não existem interfaces ligadas)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Campo Adicional --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Por favor escolha --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- personalizado --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Carga de 1 Minuto:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Carga de 15 minutos:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Carga 5 Minutos:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "" -"BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "" -"Porta de consulta de DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "" -"Porta do servidorDNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"Os servidores de DNS " -"serão consultados pela ordem no ficheiro resolv" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" -"ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "Endereço IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "Gateway IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "" -"Máscara de rede IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-Endereço ou Rede " -"(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "Gateway IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "Configuração do LED" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "Nome da LED" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "Endereço MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Max. de concessõesDHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Tamanho Max. do pacote EDNS0 " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Max. consultas concorrentes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "Limiar de tentativas ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "Bridges ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "Identificador Canais Virtuais ATM (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "Identificador de Caminho Virtual ATM (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"As bridges ATM expõem o encapsulamento ethernet em ligações AAL5 como uma " -"interface de Rede Virtual Linux que pode ser usada em conjugação com o DHCP " -"ou PPP para marcar para a rede ISP." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "Número de Dispositivo ATM" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Concentrador de Acesso" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Access Point (AP)" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Acções" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Rotas-IPv4 ativas" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Rotas-IPv6 ativas" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Ligações Ativas" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Concessões DHCP Ativas" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Concessões DHCPv6 Ativas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Adicionar" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"Adicionar um sufixo de domínio local aos nomes servidos dos ficheiros de " -"hosts" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Adicionar uma nova interface..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Ficheiro Adicional de Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Endereço" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administração" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Definições Avançadas" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Alerta" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Permitir autenticação SSH por senha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Permitir todos, excepto os listados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Permitir somente os listados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Permitir localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Permitir que hosts remotos se conectem às portas encaminhadas do SSH local" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Permitir o login como root só com password" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Permitir que o utilizador root faça login só com password" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Permitir respostas a montante na gama 127.0.0.1/8, p.e. para serviços RBL" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antena 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antena 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Configuração das Antenas" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Qualquer zona" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Atribuir interfaces..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Estações Associadas" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Autenticação" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autoritário" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Autorização Requerida" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Actualização Automática" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Disponível" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Média:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Voltar" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Voltar à Visão Global" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Voltar à configuração" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Voltar à vista global" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Voltar aos resultados do scan" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Backup" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Backup / Flashar Firmware" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Lista de ficheiros para backup" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Endereço mal especificado!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Abaixo está a lista de ficheiros para backup. Este consiste nos ficheiros de " -"configuração alterados e marcados pelo opkg, ficheiros base essenciais e " -"padrões de backup definidos pelo utilizador." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Taxa de bits" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Bridge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Ativar brigde nas interfaces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Número de unidade da bridge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Levantar no arranque" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Controlador Wireless Broadcom 802.11%s" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Controlador Wireless Broadcom BCM%04x 802.11" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Uso da CPU (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Cancelar" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Cadeia" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Alterações" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Alterações aplicadas." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Altera a password de administrador para acesso ao dispositivo" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Canal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Verificar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Checksum" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Escolha a zona de firewall que pretende associar a esta interface. Escolha " -"não especificado para remover a interface da zona associada ou " -"coloque em branco o campo criar para definir a nova zona e ligar-" -"lhe a interface." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Escolha a rede(s) à(s) qual(is) deseja ligar esta interface wireless ou " -"preencha o campo criar para definir a nova rede." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Cifra" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Clique em \"Gerar arquivo\" para descarregar o ficheiro tar com os actuais " -"ficheiros de configuração." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Cliente" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "ID de cliente a enviar para pedidos de DHCP" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Fechar ligação inativa após um dado tempo em segundos, usando 0 a ligação é " -"persistente" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Fechar lista..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "A obter dados..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Comando" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Configuração comum" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Configuração" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Confirmação" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Ligar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Ligado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Limite de Ligações" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Ligações" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "País" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Código do País" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Abranger a seguinte interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Abranger as seguintes interfaces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Criar / Atribuir a uma zona de firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Criar interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Criar uma bridge entre múltiplas interfaces " - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Critico" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Nível de Log do Cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Interface Personalizada" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Customiza o comportamento dos LEDs, se possível." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Servidor DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP e DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "Cliente DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Opções DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Encaminhamentos DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Depurar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Gateway predefinido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Estado predefinido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Definir um nome para esta rede." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Definir opções adicionais de DHCP, por exemplo " -"\"6,192.168.2.1,192.168.2.2\" informa os clientes de diferentes " -"servidores DNS." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Apagar" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Apagar esta rede" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Descrição" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Destino" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Dispositivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Configuração do Dispositivo" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnósticos" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Directório" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Desativar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Desativar DHCP para esta interface." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Desativado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Descartar respostas RFC1918 a montante" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Optimização de Distância" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Distância para o último host da rede em metros." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diversidade" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq é um servidor combinado de DHCP e DNS para firewalls NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" -"Não colocar em cache as respostas negativas, p.e. para dominios inexistentes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Não encaminhar pedidos que não possam ser respondidos por servidor públicos " -"de nomes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "Não encaminhar lookups reversos para as redes locais" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Requerer domínio" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Lista Branca do Dominio" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Não encaminhar consultas DNS sem o nome do DNS" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Descarregar backup" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Instância do Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear oferece um acesso shell seguro à rede SSH e um servidor SCP integrado" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"DHCP " -"Dinâmico" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Túnel dinâmico" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Alocar dinamicamente endereços DHCP para clientes. Se desativado, só os " -"clientes com reservas estáticas serão servidos." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Metodo-EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Editar" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Editar esta interface" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Editar esta rede" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Emergência" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Ativar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Ativar STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Ativar a atualização dinâmica de ponto final HE.net" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Ativar a negociação IPv6 no link PPP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Ativar a passagem de Jumbo Frames" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Ativar o cliente NTP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Ativar o servidor TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Ativar a funcionalidade VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Ativar aprendizagem e envelhecimento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Ativar este mount" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Ativar esta swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Ativar/Desativar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Ativado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Ativa o Spanning Tree nesta bridge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Modo de encapsulamento" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Encriptação" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "A apagar..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Erro" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Adaptador Ethernet" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Switch Ethernet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Expandir hosts" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Expira" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"O tempo de caducidade dos endereços concessionados, minimo de 2 minutos " -"(2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Servidor externo de logs de sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Porta do Servidor externo de logs de sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Ficheiro" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Nome de ficheiro da imagem de boot a anunciar aos clientes" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Sistema de ficheiros" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtrar endereços privados" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtro inútil" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Procurar e ligar rede" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Terminar" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Definições da Firewall" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Estado da Firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Versão do Firmware" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Porta fixa de origem para saída das consultas DNS" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Gravar Firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Flashar imagem..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Flashar nova imagem do firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "A programar...." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Forçar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Forçar CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Forçar DHCP nesta rede mesmo se outro servidor for detectado." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Forçar TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forçar TKIP e CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Encaminhar tráfego DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Encaminhar trafego de broadcast" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Modo de encaminhamento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Margem de Fragmentação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Frame Bursting" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Livre" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Só GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Gateway" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Portas de gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Definições Gerais" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Configuração Geral" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Gerar arquivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Controlador Wireless Genérico 802.11%s" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" -"A confirmação de password não corresponde, a password não foi alterada!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Ir para a configuração da password" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Ir para a página respectiva de configuração" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Password HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Suspender" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Aqui pode configurar os aspectos básicos do seu equipamento, como o nome do " -"host ou o fuso horário." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "" -"Ocultar ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Entradas de hosts" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" -"IP do host ou rede" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Hostname" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Hostname a enviar quando houver solicitação por DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Hostnames" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Endereço IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "Firewall IPv4" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Endereço IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "Broadcast IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "Gateway IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Máscara IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Comprimento do prefixo IPv4" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "Endereço-IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "Firewall IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Endereço IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "Gateway IPv6" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "Prefixo IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Comprimento do prefixo IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "Endereço-IPv6" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-em-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-sobre-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-sobre-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identidade" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Se desmarcado, não é configurada uma rota pré-definida" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "Se desmarcado, os endereços servidor DNS anunciados são ignorados " - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Se a memória física for insuficiente, os dados poderão ser trocados " -"temporariamente para um dispositivo swap, resultando em uma maior quantidade " -"de memória utilizável RAM. Esteja ciente de que a troca de dados (swap) é um processo muito " -"lento pois o dispositivo swap não pode ser acedido com um nível elevado de " -"memória RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ignorar /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignorar interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignorar ficheiro resolv.conf" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Imagem" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Entrada" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Tempo de inatividade" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Entrada:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Info" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Script de inicialização" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Scripts de Inicialização" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Instalar pacote %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Instalar extensões do protocolo..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Configuração da Interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Visão Geral da Interface" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "A interface está a religar..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Interface não presente ou ainda não ligada." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfaces" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Erro Interno do Servidor" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Valor inválido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" -"O ID de VLAN fornecido é inválido! Só os IDs entre %d e %d são permitidos." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "O ID de VLAN fornecido é inválido! Só os IDs únicos são permitidos." - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Username inválido e/ou a password! Por favor, tente novamente." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"A imagem que está a tentar carregar aparenta não caber na flash do " -"equipamento. Por favor verifique o ficheiro de imagem." - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "É necessário JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Associar Rede" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Associar Rede: Procurar Redes Wireless" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Manter definições" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Registo do Kernel" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Versão do Kernel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Chave" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Chave #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Matar" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "Servidor L2TP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "Intervalo de echo LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Etiqueta" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Idioma" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Língua e Tema" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Ficheiro de concessões" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Tempo de atribuição restante" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Deixar em branco para auto-detecção" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Deixar em branco para usar o endereço WAN actual" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Legenda:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Limite" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Link Ativo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Lista de servidores DNS para " -"onde encaminhar os pedidos" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Lista de dominios que permitem respostas RFC1918 para" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Escutar apenas na interface fornecida ou, se não especificada, em todas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Porta de escuta para entrada de consultas DNS" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Carga" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Carga Média" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "A carregar" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Endereço IPv4 Local" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Endereço IPv6 Local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Arranque Local" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Hora Local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Domínio local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Especificação de dominio local. Os nomes que correspondam a este dominio " -"nunca são encaminhados e resolvidos do DHCP ou do ficheiro de hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Sufixos de dominio local a juntar aos nomes DHCP e às entradas do ficheiro " -"de hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Servidor local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Localizar consultas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Nível de output do log" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Registo das consultas" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Login" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Logout" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "Endereço-MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Filtro de Endereço-MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Filtro-MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Lista-MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Número máximo permitido de concessões DHCP ativas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Número máximo permitido de consultas DNS permitidas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Número máximo de segundos a esperar pelo modem para ficar pronto" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Número máximo de endereços concessionados." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Memória" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Uso de memória (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Métrica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Falta a extensão de protocolo para o protocolo %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Modo" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Dispositivo do modem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Montar Entrada" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Ponto de Montagem" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Pontos de Montagem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Pontos de montagem definem em que ponto um dispositivo de memória será " -"anexado ao sistema de arquivos" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Ponto de montagem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Sistemas de arquivos montados" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Subir" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Descer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Candidatos a servidor NTP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Nome" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Nome da nova interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Nome da nova rede" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navegação" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Mascara de rede" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Rede" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Ferramentas de Rede" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Imagem de arranque via rede" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Rede sem interfaces." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Seguinte »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Sem Servidor DHCP configurado nesta interface" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Não foram encontrados ficheiros" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Sem informação disponível" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Sem cache negativa" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Nenhuma rede configurada no dispositivo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Nome de rede não especificado" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Sem password definida!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Sem regras nesta cadeia" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Sem zona atribuída" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Ruído" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Ruído:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Nenhum" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normal" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Não encontrado" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Não associado" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Não ligado" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Reparo" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Atraso do Off-State" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Nesta página pode configurar as interfaces de rede. Pode ter várias " -"interfaces do tipo bridge, assinalando o campo \"interfaces bridge\" e " -"inserir os nomes de várias interfaces de rede separadas por espaços. Pode " -"também usar a notação para VLAN " -"INTERFACE.VLANNR (ex.: " -"eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Atraso do On-State" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Um nome de host ou endereço MAC deve ser especificado!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Um ou mais campos contêm valores inválidos!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Um ou mais campos obrigatórios não têm valores!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Abrir lista..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Opção alterada" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Opção removida" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Opções" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Outro:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Saída" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Saída:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Visão Geral" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Dono" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "Password PAP/CHAP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "Utilizador PAP/CHAP" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Encapsulamento PPPoA " - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtp" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "O pacote libiwinfo é necessário!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Pacotes" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Parte da zona %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Senha" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Autenticação por senha" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Senha da Chave Privada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Directorio do Certificado CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Caminho para o Certificado de Cliente" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Caminho da Chave Privada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Pico:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Executar reinicialização" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Executar reset" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Definições Físicas" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pkts." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Insira o seu username e password." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Política" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Porta" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Estado da porta:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Impede a comunicação cliente-a-cliente" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Proceder" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Processos" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Protocolo" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protocolo" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Protocolo da nova interface" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "O protocolo suportado não está instalado" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Qualidade" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTS Threshold" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "Taxa RX" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Porta-Conta-Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Segredo-Conta-Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Servidor-Conta-Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Porta-Autenticação-Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Segredo-Autenticação-Radius" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Servidor-Autenticação-Radius" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Ler /etc/ethers para configurar o Servidor-DHCP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Deseja mesmo apagar esta rede? A eliminação não poder desfeita!\n" -"Pode perde a ligação ao dispositivo, caso esta ligado através desta rede." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Deseja mesmo limpar todas as alterações?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Deseja mesmo trocar o protocolo?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Ligações em Tempo Real" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Gráficos em Tempo Real" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Carga em Tempo Real" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Tráfego em Tempo Real" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Wireless em Tempo Real" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Religar protecção" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Reiniciar" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "A reiniciar..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Reinicia o seu dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Receber" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Antena de Recepção" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Reconetar esta interface" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Referências" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Endereço IPv4 remoto" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Remover" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Repetir scan" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Substituir entrada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Substituir configuração wireless" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Necessário para certos ISPs, p.ex. Charter with DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Reset" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Limpar contadores" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Ficheiros Resolv e Hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Reiniciar" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Reiniciar Firewall" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Restauração" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Restaurar backup" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Revelar/esconder password" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Reverter" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Password do Router" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Rotas" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"As rotas especificam através de que interfaces ou gateways podem ser " -"alcançados determinadas redes ou hosts." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" -"Correr uma verificação do sistema de ficheiros antes de montar um dispositivo" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Correr uma verificação do sistema de ficheiros" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Acesso SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "Chaves-SSH" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Salvar" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Salvar & Aplicar" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Procurar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Tarefas Agendadas" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Secção adicionada" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Secção removida" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Isolar Clientes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Nome do Serviço" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Tipo de Serviço" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Serviços" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "Configurar Sincronização Horária" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Configurar Servidor DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Mostrar lista ficheiros para backup" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Desligar esta interface" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Sinal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Sinal:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Tamanho" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Saltar" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Ir para o conteúdo" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Ir para a navegação" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Alguns campos são inválidos, não é possível gravar valores!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Lamento, o objecto que pediu não foi encontrado." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Lamento, o servidor encontrou um erro inesperado." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Origem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Especifica as portas de escuta desta instância Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Iniciar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Prioridade de inicialização" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Rotas Estáticas IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Rotas Estáticas IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Atribuições Estáticas" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Rotas Estáticas" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Endereço estático" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Status" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Parar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Ordem exacta" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Enviar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Switch" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Sincronizar com o browser" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "A sincronizar..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Sistema" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Registo do Sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Propriedades do Sistema" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Definições TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Raíz do servidor TFTP" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tabela" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Destino" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Terminar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"O pacote libiwinfo-lua não está instalado. Precisa de instalar este " -"pacote para que a configuração wireless funcione!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"O prefixo IPv6 atribuído ao provider, habitualmente termina com ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Os caracteres permitidos são: A-Z, a-z, 0-9 e _" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"O arquivo do dispositivo de memória ou da partição (ex. /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"O sistema que foi usado para formatar a memória (ex. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"A imagem foi carregada. Abaixo está o checksum e o tamanho dos ficheiros, " -"compare com o ficheiro original para assegurar a integração de dados.
    " -"Click em \"Proceder\" para iniciar o procedimento." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Foram recuperadas as seguintes alterações " - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "As seguintes regras estão actualmente acivas neste sistema." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "O nome dado não é único" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"O hardware não é comporta multi-SSIDs a configuração será substituída se " -"prosseguir." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"O tamanho do perfico IPv4 em bits, o restante é usado em endereços IPv6." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "O comprimento do prefixo IPv6 em bits" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"As portas de rede neste dispositivo podem ser combinadas com várias VLANs onde os computadores podem " -"comunicar directamente entre eles. VLANs são muito utilizadas para separar dois segmentos de rede " -"diferentes. Muitas vezes existe por defeito uma porta de Uplink para uma " -"ligação para a rede acima como a internet ou outras portas de uma rede local." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "O protocolo escolhido precisa de um dispositivo atribuído." - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"O sistema está agora a limpar a partição de configuração e irá reiniciar-se " -"quando terminar." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"O sistema está a carregar o firmware para a flash.
    NÃO DESLIGUE O " -"EQUIPAMENTO!
    Espere alguns minutos até tentar uma ligação. Dependendo " -"da sua configuração, ode ser necessário renovar o endereço do seu computador " -"para poder ligar novamente ao router." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"A imagem carregada não contém um formato suportado. Confirme que escolhe uma " -"imagem genérica para a sua plataforma." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Tema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Não há concessões ativas." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Não há alterações pendentes para reverter!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Não há alterações pendentes!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Ainda não há um dispositivo atribuído, por favor ligue um dispositivo de " -"rede nas \"Definições Físicas\"" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Não há uma password definida neste router. Por favor defina uma senha de " -"root para proteger a interface web e ativar o SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Este é o conteúdo de /etc/rc.local. Insira os seus próprios comandos aqui " -"(antes de 'exit 0') para executá-los no final do processo de arranque." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Este é o único DHCP na rede local" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "Este é o sistema de agendamento de tarefas." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"Esta lista fornece uma visão geral sobre os processos em execução no sistema." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "Esta página fornece informações sobre as ligações de rede ativas." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Esta secção ainda não contêm valores" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Sincronização Horária" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "A sincronização horária ainda não está configurada." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Fuso Horário" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Para restaurar os ficheiros de configuração, pode carregar aqui um ficheiro " -"de backup gerado anteriormente. Para voltar as definições originais do " -"firmware, clique \" Fazer reset\" (só possível com imagens squashfs)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Total Disponível" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Tráfego" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Transferências" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Taxa de Transmissão" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Transmitir" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Potência de Transmissão" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Antena de Transmissão" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Trigger" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Modo de Trigger" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "ID do Túnel" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Interface de Túnel" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Potência de Tx" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Tipo" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Só UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "Dispositivo USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Desconhecido" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Não gerido" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Alterações não Guardadas" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Tipo de protocolo não suportado." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Carregar arquivo..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Ficheiro carregado" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Uptime" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Usar /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Usar a gateway do DHCP" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Usar os servidores DNS fornecidos pelo parceiro" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Usar servidores DNS personalizados" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Usar gateway pre-definida" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Usar tabela de roteamento" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Usado" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Utilizador" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANs em %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANs em %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "Servidor VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Verificar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Sistema Aberto WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Chave partilhada WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "Palavra-Passe WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Modo WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "Palavra-Passe WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"A encriptação-WPA necessita do wpa_supplicant (para modo cliente) ou do " -"hostapd (para modo AP ou ah-hoc) esteja instalado." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "A aguardar que as mudanças sejam aplicadas..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "A aguardar que o comando termine..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Aviso" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Rede Wireless" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Adaptador Wireless" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Rede Wireless" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Vista Global Wireless" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Segurança Wireless" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Wireless desativada" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Wireless não associada" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "A Wireless está a reiniciar..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Wireless está desativado." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "A rede wireless está ativada" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Escrever os pedidos de DNS para o syslog" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Você pode ativar ou desativar os scripts de inicialização instalados aqui. " -"As mudanças serão aplicadas após a reinicialização do equipamento.
    Aviso: Se você desativar algum script de inicialização essencial " -"como por exemplo \"rede/network\", o dispositivo poderá tornar-se " -"inacessível!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Tem de activar o JavaScript no seu browser ou a LuCI não funcionará " -"corretamente." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "qualquer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "automático" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "criar:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "cria uma bridge sobre determinada(s) interface(s)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "desativar" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "expirou" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"Ficheiro onde as atribuições DHCP são armazenadas" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "full-duplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "half-duplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "escondido" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "se o destino for uma rede" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "entrada" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "" -"Ficheiro local de DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "não" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "sem link" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "desligado" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "ligado" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "abrir" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "desconhecido" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "ilimitado" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "não especificado" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "sim" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Voltar" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "" -#~ "Aqui pode colar as chaves SSH (uma por linha) para a autenticação SSH por " -#~ "chave pública." - -#~ msgid "Password successfully changed!" -#~ msgstr "Password alterada com sucesso!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Erro Desconhecido, a password não foi alterada!" - -#~ msgid "Design" -#~ msgstr "Tema" - -#~ msgid "Available packages" -#~ msgstr "Pacotes disponíveis" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Mostrar somente pacotes contendo" - -#~ msgid "Download and install package" -#~ msgstr "Descarregar e instalar pacote" - -#~ msgid "Filter" -#~ msgstr "Filtro" - -#~ msgid "Find package" -#~ msgstr "Procurar pacote" - -#~ msgid "Free space" -#~ msgstr "Espaço livre" - -#~ msgid "Install" -#~ msgstr "Instalar" - -#~ msgid "Installed packages" -#~ msgstr "Instalar pacotes" - -#~ msgid "No package lists available" -#~ msgstr "Não há listas de pacotes disponiveis" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Configuração-OPKG" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "As listas de pacotes têm mais de 24 horas" - -#~ msgid "Package name" -#~ msgstr "Nome do pacote" - -#~ msgid "Software" -#~ msgstr "Software" - -#~ msgid "Update lists" -#~ msgstr "Actualizar listas" - -#~ msgid "Version" -#~ msgstr "Versão" - -#~ msgid "none" -#~ msgstr "nenhum" - -#~ msgid "Disable DNS setup" -#~ msgstr "Desativar configuração de DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 e IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Só IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Só IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Tempo de validade da concessão" - -#~ msgid "Multicast address" -#~ msgstr "Endereço de multicast" - -#~ msgid "Protocol family" -#~ msgstr "Família do protocolo" - -#~ msgid "No chains in this table" -#~ msgstr "Tabela sem chains" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Os ficheiros de configuração serão mantidos." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Nota: Os ficheiros de configuração serão apagados." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Ativar esta rede" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Controlador Wireless Hermes 802.11b" - -#~ msgid "Interface is shutting down..." -#~ msgstr "A interface está a desligar..." - -#~ msgid "Interface reconnected" -#~ msgstr "Interface religada" - -#~ msgid "Interface shut down" -#~ msgstr "Desligar interface" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Controlador Wireless Prism2/2.5/3 802.11b" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "Controlador Wireless RaLink 802.11%s" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "Deseja mesmo desligar a interface \"%s\" ?\n" -#~ "Pode perder o acesso ao dispositivo se estiver ligado através desta " -#~ "interface." - -#~ msgid "Reconnecting interface" -#~ msgstr "A reconectar interface" - -#~ msgid "Shutdown this network" -#~ msgstr "Desligar esta rede" - -#~ msgid "Wireless restarted" -#~ msgstr "Rede wireless reiniciada" - -#~ msgid "Wireless shut down" -#~ msgstr "Desligar wireless" - -#~ msgid "DHCP Leases" -#~ msgstr "Concessões DHCP" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "Concessões DHCPv6" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "Deseja mesmo apagar esta interface? A eliminação não poder desfeita!\n" -#~ "Pode perde a ligação ao dispositivo, caso esta ligado através desta " -#~ "interface." - -#, fuzzy -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "Deseja mesmo desligar esta rede?\n" -#~ "Pode perder o acesso ao dispositivo se estiver ligado através desta rede." - -#~ msgid "Sort" -#~ msgstr "Ordenar" - -#~ msgid "help" -#~ msgstr "ajuda" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "Estado WAN IPv4" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "Estado WAN IPv6" - -#~ msgid "Apply" -#~ msgstr "Aplicar" - -#~ msgid "Applying changes" -#~ msgstr "A aplicar as alterações" - -#~ msgid "Configuration applied." -#~ msgstr "Configuração aplicada." - -#~ msgid "Save & Apply" -#~ msgstr "Salvar & Aplicar" - -#~ msgid "The following changes have been committed" -#~ msgstr "As seguintes alterações foram escritas" - -#~ msgid "There are no pending changes to apply!" -#~ msgstr "Não há alterações pendentes para aplicar!" - -#~ msgid "Action" -#~ msgstr "Acção" - -#~ msgid "Buttons" -#~ msgstr "Botões" - -#~ msgid "Handler" -#~ msgstr "Handler" - -#~ msgid "Maximum hold time" -#~ msgstr "Tempo máximo de espera" - -#~ msgid "Minimum hold time" -#~ msgstr "Tempo de retenção mínimo" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "Caminho do executável que lida com o botão de eventos" - -#~ msgid "This page allows the configuration of custom button actions" -#~ msgstr "" -#~ "Esta página permite a configuração de botões para acções personalizadas." - -#~ msgid "Leasetime" -#~ msgstr "Tempo de concessão" - -#, fuzzy -#~ msgid "automatic" -#~ msgstr "estático" - -#~ msgid "AR Support" -#~ msgstr "Suporte AR" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Controlador Wireless Atheros 802.11%s" - -#~ msgid "Background Scan" -#~ msgstr "Procurar em Segundo Plano" - -#~ msgid "Compression" -#~ msgstr "Compressão" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Desativar temporizador de HW-Beacon" - -#~ msgid "Do not send probe responses" -#~ msgstr "Não enviar respostas a sondas" - -#~ msgid "Fast Frames" -#~ msgstr "Frames Rápidas" - -#~ msgid "Maximum Rate" -#~ msgstr "Taxa Máxima" - -#~ msgid "Minimum Rate" -#~ msgstr "Taxa Mínima" - -#~ msgid "Multicast Rate" -#~ msgstr "Taxa de Multicast" - -#~ msgid "Outdoor Channels" -#~ msgstr "Canais de Outdoor" - -#~ msgid "Regulatory Domain" -#~ msgstr "Domínio Regulatório" - -#~ msgid "Separate WDS" -#~ msgstr "Separar WDS" - -#~ msgid "Static WDS" -#~ msgstr "WDS Estático" - -#~ msgid "Turbo Mode" -#~ msgstr "Modo Turbo" - -#~ msgid "XR Support" -#~ msgstr "Suporte XR" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "Uma rede adicional será criada se deixar isto desmarcado." - -#~ msgid "Join Network: Settings" -#~ msgstr "Associar Rede: Definições" - -#~ msgid "CPU" -#~ msgstr "CPU" - -#~ msgid "Port %d" -#~ msgstr "Porta %d" - -#~ msgid "VLAN Interface" -#~ msgstr "Interface VLAN" diff --git a/luci-base/po/ro/base.po b/luci-base/po/ro/base.po deleted file mode 100644 index 3cf2a745a..000000000 --- a/luci-base/po/ro/base.po +++ /dev/null @@ -1,6368 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-04-01 23:12+0200\n" -"Last-Translator: xcentric \n" -"Language-Team: none\n" -"Language: ro\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " -"20)) ? 1 : 2);;\n" -"X-Generator: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d fereastra minute, %d interval secunde)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s disponibil)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(gol)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(nici o interfata atasata)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Camp suplimentar --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Te rog sa alegi --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- particularizat --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Incarcarea in ultimul minut" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Incarcarea in ultimele 15 minute" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Incarcarea in ultimele 5 minute" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNSport de apelare" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS port server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"DNS serverul va interoga in " -"vederea procesarii fisierului" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "Adresa IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-Poarta Acces " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "Masca de retea IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-Addresa retea (CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-Poarta Acces" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED Configurare" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED Nume" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-Addresa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Max. EDNS0 marime pachet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Max. interogari simultane" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "ARP prag reincercare" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "Punti ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM Indentificator Canal Virtual (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM Indentificator Cale Virtual(VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Puntile ATM expune reteaua intergrata în conexiunile AAL5 ca interfețe " -"virtuale de rețea Linux care pot fi utilizate în asociere cu DHCP sau PPP " -"pentru a forma în rețeaua furnizorului." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "ATM numar echipament" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Concentrator de Access " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Punct de Acces" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Actiune" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Rute active IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Rute active IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Conexiuni active" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Adauga" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "Adauga un sufix local numelor servite din fisierele de tip hosts" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Adauga interfata noua.." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Fisiere de tip hosts aditionale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Adresa" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Adresa de acces punte locala repetor" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administrare" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Setari avansate" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Alerta" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Permite autentificarea prin parola a SSH " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Permite toate cu exceptia celor listate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Permite doar cele listate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Permite localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "Permite statiilor externe sa se conecteze la porturile SSH locale" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Permite autentificarea contului root cu parola" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Permite contului root sa se autentifice cu parola" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Permite raspuns upstream in plaja 127.0.0.0/8, e.g. pentru serviciile RBL" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antena 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antena 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Configurarea Antenei" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Orice Zona" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Inregistreaza interfetele" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Statiile asociate" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Autentificare" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Autoritare" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Necesita Autorizare" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Reimprospatare automata" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Disponibil" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Medie:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Inapoi" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Inapoi la sumar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Inapoi la Configurare" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Inapoi la vedere generala" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Inapoi la rezultatele scanarii" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Salveaza" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Salveaza / Scrie Firmware" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Salveaza lista fisiere" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Adresa specificata gresit !" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Bitrate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Bogus NX Domain Override" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Punte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Leaga interfetele" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Numarul unitatii in punte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Activeaza la pornire" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Broadcom 802.11%s Controller Fara Fir" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom BCM%04x 802.11 Controller Fara Fir" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Incarcat" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Utilizarea procesorului (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Anuleaza" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Lant" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Modificari" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Modificari aplicate." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Schimba parola administratorului pentru accesarea dispozitivului" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Canal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Verificare" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Suma de verificare" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Alege zona paravanului care doresti sa o aloci acestei interfete. Selecteaza " -"nespecificat pentru a sterge interfata sau golire creaza " -"camp ce defineste o zona noua asociata interfetei." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Colectez datele.." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Comanda" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Configurarea obisnuita" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Configurare" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Confirmare" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Conectare" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Conectat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Limita de conexiune" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Conexiuni" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Tara" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Codul de tara" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Creaza interfata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Critic" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Server DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP si DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Optiuni DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Stare implicita" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Definiti un nume pentru aceasta retea." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Sterge" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Sterge aceasta retea" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Descriere" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Destinatie" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Dispozitiv" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Configurarea dispozitivului" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Diagnosticuri" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Director" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Dezactiveaza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Dezactiveaza DHCP " -"pentru aceasta interfata." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Dezactivat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Optimizarea distantei" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Distanta catre cel mai departat membru din retea in metri." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Diversitate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Domeniul necesar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Descarca backup" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Instanta dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Editeaza" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Editeaza aceasta interfata" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Editeaza aceasta retea" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Urgenta" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Activeaza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Activeaza STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Activeaza serverul TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Activeaza VLAN-urile" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Activeaza/Dezactiveaza" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Activat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Modul de incapsulare" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Criptare" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Stergere..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Eroare" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Adaptor de retea ethernet" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Switch-ul ethernet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Expira" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Server de log-uri extern" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Portul serverului de log-uri extern" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Fisier" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Sistem de fisiere" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtreaza privatele" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtreaza nefolositele" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Gaseste si alatura in retea" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Termina" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Setarile firewall-ului" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Status la firewall" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Versiunea de firmware" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Portul sursa pentru intrebarile DNS catre exterior" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Rescrie firmware" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Forteaza" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Forteaza CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" -"Forteaza facilitatea DHCP in aceasta retea chiar daca alt server DHCP exista." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Forteaza TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Forteaza TKIP si CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Liber" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Doar GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Gateway" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Porturile gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Setari principale" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Configurare generala" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "Confirmarea parolei nu se potriveste cu prima, parola neschimbata !" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Aici poti configura aspectele de baza ale dispozitivului cum ar fi numele " -"sau fusul orar." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Ascunde ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Intrari de tip host" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Numele de host" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Nume de host" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Adresa IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "Firewall IPv4" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Adresa IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "Adresa IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "Firewall IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Adresa IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identitate" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Imagine" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Intrare:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Informatii" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Script de initializare" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Scripturi de initializare" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Instalati pachetul %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Interfata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Configurarea interfetei" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Prezentare interfata" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Interfata se reconecteaza.." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Interfata nu e prezenta sau nu este conectata inca." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Interfete" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Eroare interna de server" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Invalid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Utilizator si/sau parola invalide! Incearcati din nou." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Se pare ca ai incercat sa rescrii o imagine care nu are loc in memoria " -"flash, verifica fisierul din nou!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "Ai nevoie de JavaScript !" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Pastrati setarile" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Log-ul kernelului" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Versiunea de kernel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Opreste" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Eticheta" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Limba" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Limba si stilul interfetei" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Legenda:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Limita" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Incarcarea" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Incarcarea medie" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Incarcare" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Adresa IPv4 locala" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Adresa IPv6 locala" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Ora locala" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Domeniu local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Server local" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Autentificare" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Iesire" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Numarul maxim de intrebari DNS simultane" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Memorie" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Utilizarea memoriei (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metrica" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Mod" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Nume" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Numele interfetei noi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Numele interfetei noi" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigare" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Netmask" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Retea" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Utilitare de retea" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Mai departe »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Nici un server DHCP configurat pentru aceasta interfata" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nici un fisier gasit" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Nici o informatie disponibila" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Nici o retea configurata pe acest dispozitiv" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Nici o parola setata !" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Zgomot" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Zgomot:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normal" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Nu a fost gasit" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Nu este asociat." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Nu este conectat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Notificare" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Unul sau mai multe campuri contin valori invalide !" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Unul sau mai multe campuri nu contin valori !" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Optiunea schimbata" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Optiunea eliminata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Optiuni" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Altele:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Iesire" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Prezentare generala" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Proprietar" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Incapsulare PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Pachetul libiwinfo este necesar !" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Pachete" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Parola" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Autentificarea cu parola" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Parola cheii private" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Calea catre certificatul CA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Calea catre cheia privata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Maxim:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Restarteaza" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Reseteaza" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Rata phy:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Setarile fizice" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Packete." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Introdu utilizatorul si parola." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Stare port:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Continua" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Procese" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protocol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Calitate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Citeste fisierul /etc/ethers pentru configurarea serverului " -"DHCP-" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Conexiuni in timp real" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Grafice in timp real" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Incarcarea in timp real" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Traficul in timp real" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Rebooteaza" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Rebooteaza sistemul de operare al dispozitivului tau" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Antena receptorului" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Reconecteaza aceasta interfata" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Referinte" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Elimina" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Repeta scanarea" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Inlocuieste intrarea" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Inlocuieste configuratia wireless" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Reset" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Reseteaza counterii" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Fisierele de rezolvare si hosturi DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Fisierul de rezolvare" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Restart" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Restarteaza firewallul" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Restaureaza" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Reface backup-ul" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Arata / ascunde parola" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Parola routerului" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Rute" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Acces SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "Cheile SSH" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Salveaza" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Salveaza si aplica" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Scan" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Operatiuni programate" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Sectiune adaugata" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Sectiune eliminata" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Setarile serverului" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Nume serviciu" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Tip de serviciu" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Servicii" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "Configurare sincronizare timp" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Seteaza serverul DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Opreste aceasta interfata" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Semnal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Semnal:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Marime" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Sursa" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Start" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Pornire" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Rute statice IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Rute statice IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Rute statice" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Status" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Stop" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Trimite" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Sistem" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Log de sistem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Proprietati sistem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Setarile TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tabel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Tinta" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Termina" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Nu exista modificari in asteptare de anulat !" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Nu exista modificari in asteptare !" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Nu exista o parola pe acest router. Configureaza o parola la contul root " -"pentru a proteja interfata web si porni SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Fusul orar" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Total disponibil" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Trafic" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Transfer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Rata de transmitere" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Puterea de transmitere" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Antena de transmitere" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Interfata de tunel" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Puterea TX" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Tip" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Doar UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "Dispozitiv USB" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Necunoscut" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Neadministrate" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Modificari nesalvate" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Tipul de protocol neacceptat." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Fisier incarcat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Uptime" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Foloseste /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Foloseste codurile de tara ISO/IEC 3166 alpha2." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Folosit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Slot de cheie folosit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Utilizator" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANuri pe %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Sistem deschis WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Sistem de cheie impartasita WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "Parola WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Mod WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "Parola WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"Criptarea WPA necesita wpa_supplicant (pentru modul client) sau hostapd " -"(pentru modul AP sau ad-hoc) instalate." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Avertizare" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Wireless" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Adaptorul wireless" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Retea wireless" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Sumarul wireless" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Securitate wireless" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Wireless-ul este dezactivat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Wireless-ul este ne-asociat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Wireless-ul se restarteaza.." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Reteaua wireless este dezactivata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Reteaua wireless este activata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Scrie cererile DNS primite in syslog" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "oricare" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "dezactiveaza" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "expirat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "ascuns" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "daca tinta este o retea" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "nu" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "rutat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "etichetat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "necunoscut" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "nelimitat" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "nespecificat" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "neetichetat" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "da" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Inapoi" - -#~ msgid "Password successfully changed!" -#~ msgstr "Parola schimbata cu succes !" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Eroare necunoscuta, parola neschimbata !" - -#~ msgid "Available packages" -#~ msgstr "Pachete disponibile" - -#~ msgid "Download and install package" -#~ msgstr "Descarca si instaleaza pachetul" - -#~ msgid "Filter" -#~ msgstr "Filtreaza" - -#~ msgid "Find package" -#~ msgstr "Gaseste pachet" - -#~ msgid "Free space" -#~ msgstr "Spatiu liber" - -#~ msgid "Install" -#~ msgstr "Instalati" - -#~ msgid "Installed packages" -#~ msgstr "Pachete instalate" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "OPKG-Configuration" -#~ msgstr "Configuratia-OPKG" - -#~ msgid "Package name" -#~ msgstr "Numele pachetului" - -#~ msgid "Software" -#~ msgstr "Software" - -#~ msgid "Version" -#~ msgstr "Versiune" - -#~ msgid "Disable DNS setup" -#~ msgstr "Dezactiveaza configuratia DNS" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 si IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Doar IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Doar IPv6" - -#~ msgid "Protocol family" -#~ msgstr "Familia de protocol" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Fisierele de configurare vor fi pastrate." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Nota: fisierele de configurare vor fi sterse." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Activeaza aceasta retea" - -#~ msgid "Interface is shutting down..." -#~ msgstr "Interfata se opreste.." - -#~ msgid "Interface reconnected" -#~ msgstr "Interfata reconectata" - -#~ msgid "Interface shut down" -#~ msgstr "Interfata oprita" - -#~ msgid "Reconnecting interface" -#~ msgstr "Interfata se reconecteaza chiar acum" - -#~ msgid "Shutdown this network" -#~ msgstr "Opreste aceasta retea" - -#~ msgid "Wireless restarted" -#~ msgstr "Wireless-ul restartat" - -#~ msgid "Wireless shut down" -#~ msgstr "Wireless-ul oprit" - -#~ msgid "DHCP Leases" -#~ msgstr "Conexiuni DHCP" - -#~ msgid "help" -#~ msgstr "ajutor" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "Statusul IPv4 pe WAN" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "Statusul IPv6 pe WAN" - -#~ msgid "Apply" -#~ msgstr "Aplica" - -#~ msgid "Applying changes" -#~ msgstr "Se aplica modificarile" - -#~ msgid "Configuration applied." -#~ msgstr "Configurarea aplicata." - -#~ msgid "Save & Apply" -#~ msgstr "Salveaza & Aplica" - -#~ msgid "There are no pending changes to apply!" -#~ msgstr "Nu exista modificari in asteptare de aplicat !" - -#~ msgid "Action" -#~ msgstr "Actiune" - -#~ msgid "Buttons" -#~ msgstr "Butoane" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "Calea catre executabilul care se ocupa de evenimentul butonului" - -#~ msgid "AR Support" -#~ msgstr "Suport AR" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Atheros 802.11%s Controler Fara Fir" - -#~ msgid "Background Scan" -#~ msgstr "Scanare in fundal" - -#~ msgid "Compression" -#~ msgstr "Comprimare" - -#~ msgid "Maximum Rate" -#~ msgstr "Rata maxima" - -#~ msgid "Minimum Rate" -#~ msgstr "Rata minima" - -#~ msgid "Multicast Rate" -#~ msgstr "Rata de multicast" - -#~ msgid "Regulatory Domain" -#~ msgstr "Domeniu regulatoriu" - -#~ msgid "Turbo Mode" -#~ msgstr "Mod turbo" - -#~ msgid "XR Support" -#~ msgstr "Suport XR" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "" -#~ "Daca lasati aceasta optiune neselectata va fi creata o retea aditionala" - -#~ msgid "CPU" -#~ msgstr "Procesor" - -#~ msgid "Port %d" -#~ msgstr "Port %d" - -#~ msgid "VLAN Interface" -#~ msgstr "Interfata VLAN" diff --git a/luci-base/po/ru/base.po b/luci-base/po/ru/base.po deleted file mode 100644 index e2962a592..000000000 --- a/luci-base/po/ru/base.po +++ /dev/null @@ -1,6522 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: LuCI: base\n" -"POT-Creation-Date: 2010-05-09 01:01+0300\n" -"PO-Revision-Date: 2019-06-05 21:31+0300\n" -"Last-Translator: Anton Kikin \n" -"Language-Team: http://cyber-place.ru\n" -"Language: ru\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.2\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" -"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " -"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "%.1f дБ" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "%d бит" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "%d неверных полей" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "%s не тегирован в множестве VLAN!" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d минутное окно, %d секундный интервал)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s доступно)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(пусто)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(нет связанных интерфейсов)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Дополнительно --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Сделайте выбор --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- пользовательский --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- проверка по устройству --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- проверка по метке --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "-- проверка по uuid --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "-- сделайте выбор --" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" -"0 = не использовать порог RSSI, 1 = не изменять значение по умолчанию " -"драйвера" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Загрузка за 1 минуту:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Загрузка за 15 минут:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "4-х значный шестнадцатеричный ID" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "464XLAT (CLAT)" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Загрузка за 5 минут:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "6-октетный идентификатор в виде шестнадцатеричной строки без двоеточий" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "802.11r Быстрый Роуминг" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "802.11w Association SA Query максимальное время ожидания" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "802.11w время ожидания повтора Association SA Query" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "802.11w Management Frame Protection" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "802.11w максимальное время ожидания" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "802.11w время ожидания повтора" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS порт запроса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS порт сервера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"DNS сервера будут опрошены в " -"порядке, определенном в resolvfile файле" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-адрес" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-шлюз" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-маска сети" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-адрес или сеть (CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-шлюз" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "IPv6-суффикс (hex)" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "Настройка LED индикации" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "Имя LED" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-адрес" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Макс. кол-во аренд DHCP аренды" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Макс.EDNS0 размер пакета" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "" -"Макс. кол-во одновременных запросов" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    Внимание: вы должны вручную перезапустить службу cron, если этот файл " -"был пустым перед внесением ваших изменений." - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "Время сессии истекло, требуется повторная аутентификация." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "A43C + J43 + A43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "A43C + J43 + A43 + V43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "ADSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "ANSI T1.413" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "Порог повтора ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "ATM (режим асинхронной передачи)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM мосты" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM идентификатор виртуального канала (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM идентификатор виртуального пути (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"Мосты ATM предоставляют собой инкапсулированные ethernet соединения в AAL5, " -"как виртуальные сетевые интерфейсы Linux, которые могут использоваться " -"совместно с DHCP или PPP для набора номера в сети провайдера." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "ATM номер устройства" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "ATU-C идентификатор производителя" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Концентратор доступа" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Точка доступа" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Действия" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Активные IPv4-маршруты" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Активные IPv6-маршруты" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Активные соединения" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Активные DHCP аренды" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Активные DHCPv6 аренды" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Добавить" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "Добавить IPv4 адрес..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "Добавить IPv6 адрес..." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "Добавить ключ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" -"Добавить локальный суффикс домена для имен из файла хостов (/etc/hosts)" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Добавить новый интерфейс..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Дополнительный hosts файл" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "Дополнительные файлы серверов" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Адрес" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Адрес для доступа к локальному мосту-ретранслятору" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Управление" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "Дополнительные" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Дополнительные настройки" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "Aggregate Transmit Power (ACTATP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Тревога" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "Псевдоним" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "Псевдоним интерфейса \"%s\"" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "Все серверы" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" -"Выделять IP-адреса последовательно, начинать с меньшего доступного адреса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "Выделять IP-адреса последовательно" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Разрешить SSH аутентификацию с помощью " -"пароля" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" -"Разрешить режиму AP отключение абонентов на основании низкого уровня " -"подтверждения (Acknowledge) успешности получения TCP-сегментов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Разрешить все, кроме перечисленных" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "Разрешить использование стандарта 802.11b" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Разрешить только перечисленные" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Разрешить локальный хост" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Разрешить удаленным хостам подключаться к локальным перенаправленным портам " -"SSH" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Root входит по паролю" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" -"Разрешить пользователю root входить в систему с помощью пароля" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Разрешить ответы внешней сети в диапазоне 127.0.0.0/8, например, для RBL-" -"сервисов" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "Разрешенные IP-адреса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "Объявлять всегда, как маршрутизатор по умолчанию" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "Всегда выключен (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "Всегда включен (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" -"Всегда использовать каналы 40 МГц, даже если вторичный канал перекрывается. " -"Использование этой опции не соответствует стандарту IEEE 802.11n-2009!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "Annex" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "Annex A + L + M (all)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "Annex A G.992.1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "Annex A G.992.2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "Annex A G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "Annex A G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "Annex B (all)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "Annex B G.992.1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "Annex B G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "Annex B G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "Annex J (all)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "Annex L G.992.3 POTS 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "Annex M (all)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "Annex M G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "Annex M G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" -"Объявить маршрутизатором по умолчанию, даже если общедоступный префикс " -"недоступен." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "Объявить DNS домены" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "Объявить DNS сервера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "Анонимная идентификация" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "Неизвестный раздел" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "Неизвестный swap" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Антенна 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Антенна 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Настройка антенн" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Любая зона" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "Применить без проверки" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "Ошибка %h запроса на применение" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "Архитектура" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" -"Задайте часть данной длины, каждому публичному IPv6-префиксу этого интерфейса" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Назначить интерфейсы..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" -"Назначьте префикс части, используя этот шестнадцатеричный ID вложенного " -"исправления для этого интерфейса." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Подключенные клиенты" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "Ассоциации" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "Группа аутентификации" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Аутентификация" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "Тип аутентификации" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Основной" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Выполните аутентификацию" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Автообновление" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "Автоматически" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "Автоматическая Homenet (HNCP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" -"Автоматическая проверка файловой системы раздела на ошибки, перед " -"монтированием" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" -"Автоматическое монтирование раздела, при подключении к системе во время её " -"работы, без выключения питания и остановки системы (hotplug)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" -"Автоматическое монтирование раздела подкачки при подключении к системе во " -"время её работы без выключения питания и остановки системы (hotplug)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "Hotplug раздела" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "Hotplug раздела подкачки" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Доступно" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Средняя:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "B43 + B43C" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "B43 + B43C + V43" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "BR / DMR / AFTR" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Назад" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Назад к обзору" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Назад к настройкам" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Назад к обзору" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Назад к результатам поиска" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Резервное копирование" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Резервное копирование / Перепрошивка" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Список файлов для резервного копирования" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Указан неправильный адрес!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "Диапазон" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "Интервал рассылки пакетов Beacon" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Ниже приводится определённый список файлов для резервного копирования. Он " -"состоит из измененных config файлов, отмеченных opkg, необходимых базовых " -"файлов, а также шаблонов резервного копирования, определенных пользователем." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" -"Привязывать динамически к интерфейсам, а не по шаблону адреса (рекомендуется " -"по умолчанию для Linux)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "Открытый интерфейс" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "Открытый туннель для этого интерфейса (необязательно)." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Скорость" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Переопределение поддельного NX-домена" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Мост" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Объединить в мост" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Номер моста" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Запустить при загрузке" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Беспроводной 802.11%s контроллер Broadcom" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Беспроводной 802.11 контроллер Broadcom BCM%04x" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Буферизировано" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" -"CA сертификат; если отсутствует, будет сохранен после первого соединения." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Загрузка ЦП (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "Ошибка вызова" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Отменить" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "Категория" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "Внимание: файлы конфигурации будут удалены" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "Внимание: выбрано принудительное обновление системы" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Цепочка" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "Изменить пароль" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Изменения" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Изменения приняты." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "Изменения были возвращены назад." - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Изменить пароль администратора для доступа к устройству" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "Изменение пароля..." - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Канал" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" -"Канал %d не доступен в регуляторном домене %s и был автоматически изменен на " -"%d." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Проверить" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "Проверка файловых систем перед монтированием" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" -"Проверьте эту опцию, чтобы удалить существующие сети беспроводного " -"устройства." - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Контрольная сумма" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "Выберите MTD раздел" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Укажите зону, которую вы хотите прикрепить к этому интерфейсу. Выберите " -"'не определено', чтобы удалить этот интерфейс из зоны, или " -"заполните поле 'создать', чтобы определить новую зону и прикрепить " -"к ней этот интерфейс." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Выберите интерфейс или интерфейсы, которые вы хотите прикрепить к данной " -"беспроводной сети или заполните поле создать, чтобы создать новый " -"интерфейс." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Алгоритм шифрования" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "Формирование пакетов данных Cisco UDP " - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Нажмите 'Создать архив', чтобы загрузить tar-архив текущих config файлов " -"прошивки устройства, таким образом вы сохраните его настройки." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" -"Нажмите \"Сохранить MTD раздел\" для скачивания образа указанного MTD " -"раздела (ВНИМАНИЕ: ДАННЫЙ ФУНКЦИОНАЛ ТОЛЬКО ДЛЯ ОПЫТНЫХ ПОЛЬЗОВАТЕЛЕЙ)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Клиент" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "ID клиента при DHCP-запросе" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "Закрыть" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Завершать неактивное соединение после заданного интервала (сек.), " -"используйте значение 0 для удержания неактивного соединения" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Закрыть список..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Сбор данных..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Команда" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "Комментарий" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Общие настройки" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" -"Усложняет атаки на переустановку ключа на стороне клиента, отключая " -"ретрансляцию фреймов EAPOL-Key, которые используются для установки ключей. " -"Может вызвать проблемы совместимости и снижение надежности согласования " -"нового ключа, при наличии большого трафика." - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Настройка config файла" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "Ошибка конфигурации" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "Конфигурационные файлы будут сохранены" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "Конфигурация применена" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "Конфигурация возвращена назад!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Подтверждение пароля" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Соединить" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Подключен" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Ограничение соединений" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "Ошибка попытки соединения" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Соединения" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" -"Не удалось восстановить доступ к устройству после применения конфигурации. " -"Возможно вам придется подключиться заново, если вы изменили сетевые " -"настройки, такие как IP-адрес или параметры доступа к беспроводной сети." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Страна" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Код страны" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Включить следующий интерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Включить следующие интерфейсы" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Создать / назначить зону сетевого экрана" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Создать интерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Создать мост над несколькими интерфейсами" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Критическая ситуация" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Запись событий cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Пользовательский интерфейс" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "Установленный пользователем IPv6-prefix" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" -"Пользовательские файлы (сертификаты, скрипты) могут остаться в системе. " -"Чтобы этого не произошло, выполните сначала сброс к заводским настройкам." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "Произвольный интервал мигания (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Настройка поведения светодиодной индикации LED устройства, если это возможно." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "DAE-клиент" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "DAE-порт" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "DAE-секрет" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP-сервер" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP и DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP-клиент" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP настройки" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "DHCPv6 клиент" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "DHCPv6 режим" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "DHCPv6 сервис" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Перенаправление запросов DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "DNS-Label / FQDN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "DNSSEC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "DNSSEC проверка без знака" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "DPD время простоя" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "DS-Lite AFTR-адрес" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "DSL" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "Состояние DSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "DSL линейный режим" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "Интервал DTIM" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "Скорость передачи данных" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Отладка" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "По умолчанию %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "Маршрут по умолчанию" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Шлюз по умолчанию" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "Значение по умолчанию — 'stateless + stateful'" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Начальное состояние" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Укажите имя этой сети." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Определить дополнительные опции DHCP, например, " -"\"6,192.168.2.1,192.168.2.2\", чтобы известить клиентов о DNS-" -"серверах." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Удалить" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "Удалить ключ" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Удалить эту сеть" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "Интервал сообщений, регламентирующий доставку трафика" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Описание" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Направление" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Устройство" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Настройка устройства" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "Перезагрузка..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "Устройство недоступно!" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "Устройство недоступно! Ожидание устройства..." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Диагностика" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "Dial номер" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Папка" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Отключить" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Отключить DHCP " -"для этого интерфейса." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "Отключить шифрование" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "Отключить отслеживание неактивности клиентов" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "Отключить данную сеть" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Отключено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "Отключено (по умолчанию)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "Не ассоциировать при низком подтверждении" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Отбрасывать ответы внешней сети RFC1918" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "Отключить" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "Ошибка попытки отключения" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "Отклонить" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Оптимизация расстояния" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Расстояние до самого удалённого сетевого узла в метрах." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Разновидность антенн" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq содержит в себе DHCP-сервер и DNS-" -"прокси для сетевых экранов NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "Не кешировать отрицательные ответы, в т.ч. для несуществующих доменов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Не перенаправлять запросы, которые не могут быть обработаны публичными DNS-" -"серверами" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "Не перенаправлять обратные DNS-запросы для локальных сетей" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "Вы действительно хотите удалить следующий SSH-ключ?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Требуется домен" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Белый список доменов" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "Не фрагментировать" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Не перенаправлять DNS-запросы " -"без DNS-имени" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "Вниз" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Загрузить резервную копию" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "Скачать MTD раздел" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "SNR offset внутренней сети" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Экземпляр Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear — это SSH-сервер со встроенным " -"SCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "Dual-Stack Lite (RFC6333)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"Динамический DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Динамический туннель" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Динамически выделять DHCP-адреса клиентам. Если выключено, то будут " -"обслужены только клиенты с постоянно арендованными адресами." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "EA-bits длина" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "Метод EAP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Изменить" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" -"Изменить данные конфигурации raw выше, чтобы исправить любую ошибку и " -"нажмите 'Сохранить', чтобы перезагрузить страницу." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Изменить этот интерфейс" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Редактировать эту сеть" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Чрезвычайная ситуация" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Включить" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" -"Включить IGMP " -"snooping" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Включить STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Включить динамическое обновление оконечной точки HE.net" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "Включить IPv6 negotiation" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Включить IPv6-согласование на PPP-соединении" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Пропускать Jumbo-кадры" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Включить NTP-клиент" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "Включить Single DES" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Включить TFTP-сервер" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Включить поддержку VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "Включить WPS при нажатии на кнопку, в режиме WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "Включить защиту от атаки KRACK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Включить изучение и устаревание (learning/aging)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "Включить отражение входящих пакетов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "Включить отражение исходящих пакетов" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "Включите флаг DF (не Фрагментировать) инкапсулирующих пакетов." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Включить эту точку монтирования" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "Включить данную сеть" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Включить этот раздел подкачки" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Включить/выключить" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Включено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "Включает IGMP snooping на данном мосту" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" -"Включить быстрый роуминг между точками доступа, принадлежащими к тому же " -"домену мобильности" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Включает Spanning Tree Protocol на этом мосту" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Режим инкапсуляции" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Шифрование" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "Конечная точка Хоста" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "Конечная точка Порта" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "Введите пользовательское значение" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "Введите пользовательские значения" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Стирание..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Ошибка" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "Ошибочные секунды (ES)" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Ethernet-адаптер" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Ethernet-коммутатор" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "Исключите интерфейсы" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Расширять имена узлов" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "Ожидаемое значение %s" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Истекает" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" -"Время истечения срока аренды арендованных адресов, минимум 2 минуты " -"(2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "Внешний" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "Внешний R0 Key Holder List" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "Внешний R0 Key Holder List" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Внешний сервер системного журнала" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Порт внешнего сервера системного журнала" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "Внешний протокол лог-сервера" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "Дополнительные опции команды SSH" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "FT над DS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "FT над the Air" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "FT протокол" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" -"Не удалось подтвердить применение в течении %d сек., ожидание отката..." - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Файл" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "Имя загрузочного образа, извещаемого клиентам" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Файловая система" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Фильтровать частные" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Фильтровать бесполезные" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "Ошибка финализации" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" -"Найти все разделы (включая swap) и записать в конфигурационный файл " -"информацию об обнаруженных разделах, т.е. выполнить команду 'block detect > /" -"etc/config/fstab'" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Найти и присоединиться к сети" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Завершить" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Межсетевой экран" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "Метка межсетевого экрана" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Настройки межсетевого экрана" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Состояние межсетевого экрана" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "Файл прошивки" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Версия прошивки" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Фиксированный порт для исходящих DNS-запросов" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Установить прошивку" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Установить..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Установить новый образ прошивки" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Операции с прошивкой" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Прошивка..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Назначить" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "Принудительно использовать режим 40 МГц" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Назначить CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Назначить DHCP в этой сети, даже если найден другой сервер." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Назначить TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Назначить TKIP и CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "Активировать соединение" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "Принудительная прошивка" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "Принудительно использовать NAT-T" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "Несоответствие маркеров формы" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Перенаправлять трафик DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "Секунды прямой коррекции ошибок (FECS)" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Перенаправлять широковещательный траффик" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "Перенаправлять запросы трафика Mesh" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Режим перенаправления" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Порог фрагментации" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Пакетная передача кадров" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Свободно" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" -"Дополнительная информация о интерфейсах и партнерах WireGuard приведена в wireguard.com." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "ГГц" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Только GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Шлюз" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "Неверный адрес шлюза" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Порты шлюза" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Основные настройки" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Основные настройки" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "Создать config" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "Создать PMK локально" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Создать архив" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Беспроводной 802.11%s контроллер" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "Введённые пароли не совпадают, пароль не изменён!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "Основные настройки" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "Основные настройки сети" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Перейти к настройке пароля..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Перейти к странице настройки" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "Групповой пароль" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "Гость" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Пароль HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "HE.net логин" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "HT режим (802.11n)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Перезапустить" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "Ошибки контроля ошибок заголовка (HEC)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "Интервал heartbeat (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Здесь вы можете настроить основные параметры вашего устройства, такие как " -"имя хоста или часовой пояс." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Скрыть ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "Скрыть пустые цепочки" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "Хост" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Список хостов" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Время ожидания хоста" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "IP-адрес или сеть" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "Содержимое Host-Uniq тега" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Имя хоста" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Имя хоста в DHCP-запросах" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Имена хостов" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "Гибрид" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "IKE DH Group" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "IP-адреса" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "IP-протокол" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP-адрес" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "Неверный IP-адрес" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "IP-адрес не указан" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "Межсетевой экран IPv4" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "Основной IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4-адрес" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "IPv4 assignment length" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "Широковещательный IPv4-адрес" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "IPv4-адрес шлюза" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Маска сети IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "Сеть IPv4 в формате адрес/маска подсети" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "IPv4 префикс" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Длина префикса IPv4" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-адрес" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "IPv4-в-IPv4 (RFC2003)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "Межсетевой экран IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "IPv6 соседи (neighbours)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "Настройки IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "IPv6 ULA-префикс" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "Основной IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "IPv6-адрес" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "IPv6 подсказка присвоения" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "IPv6 назначение длины" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "IPv6-адрес шлюза" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "Сеть IPv6 в формате адрес/маска подсети" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "Префикс IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Длина префикса IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "IPv6 направление префикса" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "IPv6 суффикс" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-адрес" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "IPv6-PD" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6 в IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6 через IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6 через IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Идентификация EAP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "Если выбрано, то 1DES включено" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "Если выбрано, то шифрование выключено" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Если выбрано, монтировать устройство используя его UUID, а не фиксированный " -"файл устройства" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Если выбрано, монтировать устройство используя название его раздела, а не " -"фиксированный файл устройства" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Если не выбрано, то маршрут по умолчанию не настраивается" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "Если не выбрано, то извещаемые адреса DNS серверов игнорируются" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Если физической памяти не достаточно, то неиспользуемые данные могут быть " -"временно перемещены в раздел подкачки, что в свою очередь приведет к " -"увеличению объёму свободной RAM. " -"Однако, перемещение в файл — это достаточно долгий процесс, так как " -"устройство, на котором располагается раздел подкачки, работает гораздо " -"медленнее, чем RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Игнорировать /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Игнорировать интерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Игнорировать файл resolv" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Образ" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "В" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" -"Для предотвращения несанкционированного доступа к системе ваш запрос " -"заблокирован. Нажмите кнопку 'Продолжить' ниже, чтобы вернуться на " -"предыдущую страницу." - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Промежуток времени бездействия" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Входящий:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Информация" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "Информация" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "Ошибка инициализации" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Скрипт инициализации" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Скрипты инициализации" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "Для поддержки IPv6, установите пакет iputils-traceroute6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Установить пакет %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Установить расширения протокола..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Интерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "Интерфейс %q устройство авт.перемещается из %q в %q." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Настройка сети" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Список интерфейсов" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Интерфейс переподключается..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "Имя интерфейса" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Интерфейс не существует или пока не подключен." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Интерфейсы" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "Внутренний" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Внутренняя ошибка сервера" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Неверно" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" -"Указан неверный VLAN ID! Доступны только идентификаторы в диапазоне от %d до " -"%d." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "Указан неверный VLAN ID! Доступны только уникальные ID" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Неверный логин и/или пароль! Попробуйте снова." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "Изолировать клиентов" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Оказалось, что вы пытаетесь прошить устройство прошивкой, которая по размеру " -"не помещается в чип флэш-памяти, проверьте ваш файл прошивки!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "Требуется JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Подключение к сети" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Найденные точки доступа Wi-Fi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "Подключение к сети: %q" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Сохранить настройки" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Журнал ядра" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Версия ядра" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Пароль (ключ)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Ключ №%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "КиБ" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Принудительно завершить" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "L2TP-сервер" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "Порог ошибок эхо-запросов LCP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "Интервал эхо-запросов LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Метка" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Язык" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Язык и тема" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "Задержка" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "Лист" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "Время аренды адреса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Файл аренд" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Оставшееся время аренды" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Оставьте поле пустым для автоопределения" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Оставьте пустым для использования текущего адреса WAN" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "События:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Предел" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "Ограничение сервиса DNS, для подсетей интерфейса используещего DNS." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "Ограничьте прослушивание этих интерфейсов и замыкание на себя." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "Затухание линии (LATN)" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "Режим линии" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "Состояние Линии" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "Время бесперебойной работы линии" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Подключение" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Список DNS-серверов для " -"перенаправления запросов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" -"Список R0KHs в том же мобильном домене.
    В формате: MAC-адрес,NAS-" -"идентификатор,128-битный ключ как hex строка.
    этот список используется " -"для сопоставления R0KH-ID (NAS ID) с целевым MAC-адресом при запросе ключа " -"PMK-R1 из R0KH , который использовался STA во время начальной ассоциации " -"доменов Mobility." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" -"Список R1KHs в том же домене мобильности.
    Формат: MAC-адрес,R1KH-ID " -"как 6 октетов с двоеточиями, 128-битный ключ, как шестнадцатеричная строка. " -"
    Этот список используется для сопоставления R1KH-ID с целевым MAC-" -"адресом при отправке ключа PMK-R1 из R0KH. Это также список авторизованных " -"R1KHs в MD, которые могут запросить PMK-R1 ключи." - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "Список файлов ключей SSH для авторизации" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Список доменов, для которых разрешены ответы RFC1918" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "Список хостов, поставляющих поддельные результаты домена NX" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "Интерфейс для входящих соединений" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "Порт для входящих соединений" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Принимать подключения только на указанном интерфейсе или, если интерфейс не " -"задан, на всех интерфейсах" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Порт для входящих DNS-запросов" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Загрузка" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Средняя загрузка" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Загрузка" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "Загрузка SSH ключей..." - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "Неверный локальный IP-адрес" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "Присвоение локального IP-адреса" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Локальный IPv4-адрес" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Локальный IPv6-адрес" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "Только локальный DNS" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Запуск пакетов и служб пользователя, при включении устройства" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Дата и время" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Локальный домен" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Согласно требованиям, имена соответствующие этому домену, никогда не " -"передаются. И разрешаются только из файла DHCP (/etc/config/dhcp) или файла " -"хостов (/etc/hosts)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Суффикс локального домена, который будет добавлен к DHCP-именам и записи " -"файла хостов (/etc/hosts)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Локальный сервер" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Локализировать имя хоста в зависимости от запрашиваемой подсети, если " -"доступно несколько IP-адресов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Локализовывать запросы" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "Блокировать канал %s используемый: %s" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Запись событий" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Запись запросов" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Настройка журнала" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Войти" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Выйти" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "Потеря сигнала в секундах (LOSS)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "Минимальный адрес аренды." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-адрес" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Фильтр MAC-адресов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-фильтр" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Список MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "MAP / LW4over6" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "Неверное MAP правило" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "МБ/с" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "MD5" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "МГц" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" -"Прежде чем перенести корневую файловую систему на внешний носитель, " -"используйте команды приведенные ниже:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "Вручную" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "Max. Attainable Data Rate (ATTNDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "Максимально разрешенное значение интервала прослушивания клиента" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Максимальное количество активных арендованных DHCP-адресов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Максимально допустимое количество одновременных DNS-запросов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Максимально допустимый размер UDP пакетов EDNS.0" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Максимальное время ожидания готовности модема (секунды)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" -"Максимальная длина имени составляет 15 символов, включая префикс " -"автоматического протокола/моста (br-, 6in4-, pppoe- etc.)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Максимальное количество арендованных адресов" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Мбит/с" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "Средняя" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Оперативная память (RAM)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Использование памяти (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "Mesh ID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Метрика" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "Зеркальный порт наблюдения" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "Зеркальный исходящий порт" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Отсутствует расширение протокола %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "Мобильный домен" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Режим" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "Модель" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "Настройки модема по умолчанию" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Модем" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "Ошибка запроса информации о модеме" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Время ожидания инициализации модема" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Монитор" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "Слишком мало символов" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Настройка config файла fstab (/etc/config/fstab)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Точка монтирования" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Монтирование разделов" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Точки монтирования — Настройка раздела" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Точки монтирования — Настройка раздела подкачки" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Точки монтирования определяют, куда в файловой системе будут смонтированы " -"разделы запоминающего устройства" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "Монтирование несконфигурированного раздела" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Опции монтирования" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Точка монтирования" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "Монтирование несконфигурированного раздела подкачки" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Смонтированные разделы" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Переместить вниз" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Переместить вверх" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "NAT-T режим" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "NAT64 префикс" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "NCM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "NDP-прокси" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "NT домен" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Список NTP-серверов" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Имя" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Имя нового интерфейса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Имя новой сети" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Навигация" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Маска сети" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Сеть" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Сетевые утилиты" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Образ системы для сетевой загрузки" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "Активность сетевого устройства (%s)" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "Нет сетевого устройства" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Сеть без интерфейсов." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Следующий »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "Нет" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "DHCP-сервер не настроен для этого интерфейса" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "Без NAT-T" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Файлы не найдены" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Нет доступной информации" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "Отсутствует соответствующая делегация префикса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Отключить кэш отрицательных ответов" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Не настроена сеть на устройстве" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Не задано имя сети" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Пароль не установлен!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "Нет публичных ключей" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Нет правил в данной цепочке" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "Результаты сканирования пока недоступны..." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Зона не присвоена" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Шум" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "Соотношение сигнал/шум (SNR)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Шум:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "Non Pre-emtive CRC errors (CRC_P)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "Не использовать wildcard" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Ничего" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Нормально" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Не найдено" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Не связанный" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Не подключено" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "Не запускается при загрузке" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "Внимание: длина имени интерфейса" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Заметка" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "DNS-запрос" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" -"Количество кэшированных DNS записей (максимум — 10000, 0 — отключить " -"кэширование)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "Количество параллельных потоков используемых для компрессии" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "Obfuscated Group Password" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "Obfuscated Password" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "Получение IPv6-адреса" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Задержка выключенного состояния" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"На этой странице вы можете настроить сетевые интерфейсы. Вы можете " -"объединить несколько интерфейсов в мост, выбрав опцию 'Объединить в мост' и " -"введя список интерфейсов, разделенных пробелами. Вы также можете " -"использовать VLAN-" -"обозначения вида ИНТЕРФЕЙС.НОМЕРVLAN (напр.: eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Задержка включенного состояния" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Должен быть указан либо MAC-адрес, либо имя хоста!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Одно или несколько полей содержат недопустимые значения!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "Одно или несколько недопустимых / обязательных значений на странице" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Одно или несколько обязательных полей не заполнены!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Открыть список..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "OpenConnect (CISCO AnyConnect)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "Настройка частоты" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Опция изменена" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Опция удалена" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "Необязательно" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" -"Необязательно. 32-разрядная метка для исходящих зашифрованных пакетов. " -"Введите значение в шестнадцатеричной форме, начиная с 0x." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" -"Необязательно. Допустимые значения: 'eui64', 'random', фиксированное " -"значение например '::1' или '::1:2'. Когда IPv6 префикс такой как — ('a:b:c:" -"d::'), используйте суффикс на вроде ('::1') для этого IPv6 адреса ('a:b:c:" -"d::1') для этого интерфейса." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" -"Необязательно. Base64-шифрованный общий ключ. Добавляет дополнительный слой " -"криптографии с симметричным ключом для пост-квантового сопротивления." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" -"Необязательно. Создавать маршруты для разрешенных IP адресов для этого узла." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "Необязательно. Описание узла." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" -"Необязательно. Запрашивающий хост. Имена разрешаются до появления интерфейса." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "Необязательно. Максимальная единица передачи туннельного интерфейса." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "Необязательно. Порт узла." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" -"Необязательно. Кол-во секунд между сохранением сообщений. По умолчанию равно " -"'0' (отключено). Рекомендуемое значение, если это устройство находится за " -"NAT 25." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" -"Необязательно. Udp-порт, используемый для исходящих и входящих пакетов." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Опции" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Другие:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Вне" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Исходящий:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "Исходящий интерфейс" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "Назначить MAC-адрес" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "Назначить MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "Отвергать TOS" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "Отвергать TTL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "Назначить имя интерфейса по умолчанию" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Назначить шлюз в ответах DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Переопределите сетевую маску, отправленную клиентам. Обычно это вычислено от " -"подсети, которая подана." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "Назначить таблицу внутренних маршрутов" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Обзор" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Пользователь" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "Пароль PAP/CHAP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "Имя пользователя PAP/CHAP" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "PIN код отвергнут" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "PMK R1 Push" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Инкапсуляция PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "PPPoSSH" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "PSID смещение" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "PSID длина в битах" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "PTM/EFM (Packet Transfer Mode)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Требуется пакет libiwinfo!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Пакеты" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Часть зоны %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Пароль" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "С помощью пароля" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Пароль к Приватному ключу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "Пароль к внутреннему Приватному ключу" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "Сложность пароля" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "Пароль2" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "Перетащите файл SSH ключа или вставьте содержимое..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Путь к CA-сертификату" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Путь к Client-сертификату" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Путь к Приватному ключу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "Путь к внутренним CA-сертификатам" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "Путь к внутренним Client-сертификатам" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "Путь к внутреннему Приватному ключу" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Пиковая:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "Запрос IP адреса назначения" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "Отсутствует адрес пира" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "Пиры" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "Perfect Forward Secrecy" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Выполнить перезагрузку" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Выполнить сброс" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "Постоянно держать включенным" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Скорость:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Настройки канала" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Пинг-запрос" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Пакетов" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Введите логин и пароль." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Политика" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "Интервал автообновления" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "Интервал автоматического обновления состояния страниц в секундах" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Порт" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Состояние порта:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "Режим управления питанием" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "Pre-emtive CRC errors (CRCP_P)" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "Предпочитать LTE" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "Предпочитать UMTS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "Делегированный префикс" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "Предварительный ключ" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"Предполагать, что узел недоступен после указанного количества ошибок " -"получения эхо-пакета LCP, введите '0' для игнорирования ошибок" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "Запретить прослушивание этих интерфейсов." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Не позволяет клиентам обмениваться друг с другом информацией" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "Приватный ключ" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Продолжить" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Процессы" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "Профиль" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Прот." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Протокол" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Протокол нового интерфейса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Поддержка протокола не установлена" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Включить NTP-сервер" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Предоставлять новую сеть" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Псевдо Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "Публичный ключ" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" -"Публичные SSH ключи позволяют выполнять беспарольный SSH вход с большим " -"уровнем безопасности по сравнению с использованием входа по паролю. Чтобы " -"загрузить новый публичный SSH ключ, вставьте строку публичного OpenSSH ключа " -"или перетащите .pub файл в поле ввода ключа." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" -"Публичный префикс, направляемый на это устройство для распространения среди " -"клиентов." - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "QMI сотовый" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Качество" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" -"Опрашивать все имеющиеся внешние DNS-серверы" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "R0 Key время жизни" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "R1 Key Holder" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "RFC3947 NAT-T режим" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "Порог RSSI для присоединения" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Порог RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "Получение (RX)" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "Скорость получения" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Порт Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Секрет Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Сервер Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Порт Radius-Authentication" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Секрет Radius-Authentication" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Сервер Radius-Authentication" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" -"Строка в шестнадцатеричном коде. Оставьте пустой, если ваш провайдер не " -"требует этого" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Читать /etc/ethers для настройки DHCP-сервера" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" -"Действительно удалить этот интерфейс? Удаление не может быть отменено! Вы " -"можете потерять доступ к этому устройству, если вы подключены через данный " -"интерфейс" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Действительно удалить эту беспроводную сеть? Удаление не может быть отменено!" -"\\nВы можете потерять доступ к этому устройству, если вы подключены через " -"эту сеть." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Действительно сбросить все изменения?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Вы действительно хотите изменить протокол?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Соединения в реальном времени" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Графики в реальном времени" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Загрузка в реальном времени" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Трафик в реальном времени" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Беспроводная сеть в реальном времени" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "Срок Реассоциации" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Защита от DNS Rebinding" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Перезагрузка" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Перезагрузка..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "" -"Программная перезагрузка вашего устройства, т.е. выполнить команду 'reboot'" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Приём" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Приёмная антенна" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "Рекомендуемый. IP адреса интерфейса WireGuard." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Переподключить этот интерфейс" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Ссылки" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Ретранслятор" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Мост-Ретранслятор" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Ретранслятор между сетями" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Мост-ретранслятор" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Удалённый IPv4-адрес" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "Удалённый IPv4-адрес или FQDN" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Удалить" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Повторить поиск" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Заменить запись" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Заменить настройку беспроводного соединения" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "Запрос IPv6 адреса" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "Запрос IPv6 префикс длины" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "Требовать" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" -"Требуется для некоторых Интернет провайдеров, например использующих DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "Требовать Приватный ключ в кодировке Base64 для этого интерфейса." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "Требовать Публичный ключ узла в кодировке Base64." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" -"Требовать IP-адреса и префиксы, которые разрешено использовать этому " -"одноранговому узлу внутри туннеля. Обычно туннельные IP-адреса однорангового " -"узла и сети одноранговых маршрутов через туннель." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" -"Требуется 'полная' версия wpad/hostapd и поддержка со стороны WiFi драйвера " -"в
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" -"Требуется поддержка внешней сетью DNSSEC; убедитесь, что ответы " -"неподписанного домена действительно поступают от неподписанных доменов" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Сбросить" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Сбросить счётчики" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Сбросить на значения по умолчанию" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Файлы resolv и hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Файл resolv" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Перезапустить" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Перезапустить межсетевой экран" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "Перезапустить радио-интерфейс" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Восстановление" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Восстановить резервную копию" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Показать/скрыть пароль" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Вернуть" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "Вернуть изменения" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "Ошибка %h отмены конфигурации" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "Отмена конфигурации..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Корень" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Корневая директория для файлов сервера, вроде TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "Подготовка корневой директории" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "Маршрут разрешенный для IP адресов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "Тип маршрута" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "Доступные режимы работы" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Пароль маршрутизатора" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Маршруты" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Маршрутизация служит для определения через, какой интерфейс и шлюз можно " -"достичь определенного хоста или сети." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "Правило" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Проверять файловую систему перед монтированием раздела" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Проверить" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "SHA256" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "SNR" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "Доступ по SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "Адрес сервера SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "Порт сервера SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "SSH логин" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH-ключи" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "Разделы подкачки (swap)" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Сохранить" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Сохранить и применить" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "Сохранить MTD раздел" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "Сохранить содержимое MTD раздела" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "Сохранение ключей..." - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Поиск" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "Ошибка запроса на сканирование" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Запланированные задания" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Строки добавлены" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Строки удалены" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Для подробной информации обратитесь к справке по 'mount' (man mount)" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" -"Выберите 'Принудительная прошивка' для проишвки образа даже если проверка " -"формата завершается с ошибкой. Используйте эту опцию только если уверены, " -"что файл образа корректный и предназначен именно для данного устройства!" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"Отправлять эхо-пакеты LCP с указанным интервалом (секунды), эффективно " -"только в сочетании с порогом ошибок" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Разделять клиентов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Настройки сервера" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Имя службы" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Тип службы" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Сервисы" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "Сессия истекла" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "Установить VPN в качестве маршрута по умолчанию" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" -"Автоматически активировать соединение, при подключении в разъем кабеля." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "Настройка синхронизации времени" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "Ошибка установки PLMN" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "Ошибка установки режима работы" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Настроить сервер DHCP" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "Секунды с большим числом ошибок (SES)." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "Short GI" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "Короткая преамбула" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Показать текущий список файлов резервной копии" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "Показать пустые цепочки" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Выключить этот интерфейс" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Сигнал" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "Затухание сигнала (SATN)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Сигнал:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Размер" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "Размер кэша DNS запроса" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "Размер ZRam в мегабайтах" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Пропустить" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Перейти к содержимому" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Перейти к навигации" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Время слота" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "Программное обеспечение VLAN" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Некоторые значения полей недопустимы, невозможно сохранить информацию!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Извините, запрошенный объект не был найден." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Извините, сервер столкнулся с неожиданной ошибкой." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"К сожалению, автоматическое обновление не поддерживается, новая прошивка " -"должна быть установлена вручную. Обратитесь к wiki для получения конкретных " -"инструкций для вашего устройства." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Источник" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Папка, к которой монтируется раздел устройства" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Порт данного процесса Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Максимальное количество неудачных запросов ARP, после которого узлы " -"считаются отключенными" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" -"Максимальное количество секунд, после которого узлы считаются отключёнными" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "Укажите TOS (Тип обслуживания)." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" -"Укажите значение TTL (Время Жизни) для инкапсуляции пакетов, по умолчанию " -"(64)." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" -"Укажите MTU (Максимальный Объем Данных), отличный от стандартного (1280 " -"байт)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Укажите закрытый ключ." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Старт" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Приоритет" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "Применение конфигурации..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "Начато сканирование беспроводных сетей..." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Загрузка" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Статические маршруты IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Статические маршруты IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Постоянные аренды" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Статические маршруты" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Статический адрес" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Постоянная аренда используется для присвоения фиксированных IP-адресов и " -"имён DHCP-клиентам. Постоянная аренда также необходима для статических " -"интерфейсов, в которых обслуживаются только клиенты с присвоенными адресами." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "Максимально допустимое время бездействия клиента" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Состояние" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Остановить" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Строгий порядок" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "Сильная" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Применить" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "Подавить логирование" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "Подавить логирование стандартной работы этих протоколов" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "Раздел подкачки (swap)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Настройка config файла fstab (/etc/config/fstab)" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Коммутатор" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Коммутатор %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Коммутатор %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" -"Коммутатор %q имеет неизвестную топологию — настройки VLAN не могут быть " -"точными." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "Изменить маску порта" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "Изменить VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Изменить протокол" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "Переключить в формат CIDR" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "Активность порта коммутатора (%s)" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "Синхронизировать с NTP-сервером" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Синхронизировать с браузером" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Синхронизация..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Система" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Системный журнал" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Свойства системы" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Размер системного журнала" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Настройки TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "TFTP сервер root" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "Передача (TX)" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "Cкорость передачи" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Таблица" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Назначение" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "Сеть назначения" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Завершить" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"Вкладка меню 'Настройка устройства' содержит физические настройки " -"радиооборудования, такие как канал, мощность передачи или выбор антенны, " -"которые совместно используются всеми настроенными беспроводными сетями (если " -"радиооборудование поддерживает несколько SSID). Параметры сети, такие как " -"шифрование или режим работы, смотрите на вкладке 'Настройка сети'." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Пакет libiwinfo-lua не установлен. Для включения настроек " -"беспроводных сетей, вам необходимо установить этот компонент!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" -"HE.net конфигурация обновления конечной точки изменена, теперь вы должны " -"использовать простое имя пользователя вместо ID пользователя!" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "IPv4-адрес или полное доменное имя удаленного конца туннеля." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"Назначенный провайдеру префикс IPv6, обычно заканчивается на ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Допустимые символы: A-Z, a-z, 0-9 и " -"_" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "Архив резервной копии не является правильным gzip файлом." - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "Не удалось загрузить config файл из-за следующей ошибки:" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" -"Устройство недоступно в течение %d секунд после применения изменений. Это " -"привело к откату конфигурации из соображений безопасности. Если вы считаете, " -"что конфигурация верна, выполните настройку без проверки. Кроме того, вы " -"можете отклонить это предупреждение и отредактировать изменения перед " -"попыткой применить конфигурацию снова или откатить все изменения, чтобы " -"сохранить рабочее состояние конфигурации." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"Устройство или раздел (напр. /dev/" -"sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"Файловая система (напр. ext3)." - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"Образ загружен. Сравните размер файла и контрольную сумму, чтобы " -"удостовериться в целостности данных.
    Нажмите 'Продолжить', чтобы " -"начать процедуру обновления прошивки." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Следующие настройки были отвергнуты" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "На данном устройстве активны следующие правила." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "Указанный публичный SSH ключ уже добавлен." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" -"Указанный публичный SSH ключ неверный. Укажите правильный RSA или ECDSA ключ." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "Заданное имя сети не является уникальным" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"Аппаратное обеспечение не поддерживает Multi-SSID, и существующие настройки " -"будут изаменены, если вы продолжите." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" -"Длина префикса IPv4 в битах, оставшееся будет использоваться в IPv6-адресах." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "Длина префикса IPv6 в битах" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "Локальный адрес IPv4, по которому создается туннель (необязательно)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"Сетевые порты этого устройства могут быть объединены в несколько VLANов, в которых компьютеры могут " -"связываться напрямую между собой. VLANы часто используются для разделения нескольких сетевых " -"сегментов. Обычно по умолчанию используется один порт для подключения к " -"внешней сети, например к Интернету и другие порты предназначенные для " -"внутренней — локальной сети." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "Для выбранного протокола необходимо задать устройство" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "Представленный маркер безопасности недействителен или уже истек!" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "Идёт удаление настроек раздела с последующей перезагрузкой системы." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"Сейчас система перепрошивается.
    НЕ ОТКЛЮЧАЙТЕ ПИТАНИЕ УСТРОЙСТВА!
    Подождите несколько минут, прежде чем попытаться соединиться. Возможно, " -"потребуется обновить адрес компьютера, чтобы снова подключиться к " -"устройству, в зависимости от настроек." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "Пароль администратора успешно изменен." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"Загруженный файл прошивки не поддерживается. Проверьте, что вы загрузили " -"подходящую прошивку для чипа вашего устройства." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Тема" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Нет активных арендованных адресов." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "Нет изменений для применения." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Нет изменений, которые можно отменить!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Нет изменений, которые можно применить!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Устройство не назначено. Назначьте сетевое устройство на странице 'Настройки " -"канала'" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Пароль пользователя root не установлен. Установите пароль, чтобы защитить " -"веб-интерфейс и включить SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "IPv4-адрес ретранслятора" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" -"Этот файл может содержать такие строки, как 'server=/domain/1.2.3.4' или " -"'server=1.2.3.4' fordomain-specific или полный список внешней сети DNS servers." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"Настройка данного config файла, позволит пользователю создать резервную " -"копию своих настроек. Копируются config файлы из папки /etc/config и " -"некоторые другие. При перепрошивке устройства sysupgrade-совместимым " -"образом, вы сможете воспользоваться резервной копией своих настроек." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" -"Это либо \"Update Key\", настроенный для туннеля, либо пароль учетной " -"записи, если ключ обновления не был настроен" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Cодержимое config файла /etc/rc.local. Вы можете добавить свои команды " -"(перед 'exit 0'), чтобы выполнить их во время загрузки устройства." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"Это локальный адрес, назначенный туннельным брокером, обычно заканчивается " -"на ...:2/64" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Это единственный DHCP-сервер в локальной сети" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "Это просто имя пользователя, для входа в учетную запись" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" -"Это префикс, направлен вам брокером туннелей для использования клиентами" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"Содержимое файла /etc/crontabs/root (задания crontab). Здесь вы можете " -"запланировать ваши задания." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "Это адрес ближайшей точки присутствия туннельного брокера" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "Страница содержит работающие процессы и их состояние." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" -"Страница содержит список всех активных на данный момент сетевых соединений." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Здесь не содержатся необходимые значения" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Синхронизация времени" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Синхронизация времени ещё не настроена." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "Интервал регенерации ключей GTK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Часовой пояс" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "Аутентификация..." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Чтобы восстановить config файлы, ваши настройки прошивки устройства, вы " -"можете загрузить ранее созданный вами архив здесь. Для сброса настроек " -"прошивки к исходному состоянию нажмите 'Выполнить сброс' (возможно только " -"для squashfs-образов)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "Тон" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Всего доступно" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Трассировка" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Трафик" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Передача" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Скорость передачи" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Передача" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Мощность передатчика" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Передающая антенна" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Назначить" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Режим работы" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "Идентификатор туннеля" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Интерфейс туннеля" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "Ссылка на туннель" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Мощность передатчика" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Тип" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Только UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USB устройство" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "USB порты" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "Невозможно определить имя устройства" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "Невозможно определить внешний IP-адрес" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "Невозможно определить основной интерфейс" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Невозможно обработать запрос для" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "Невозможно получить идентификатор клиента" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "Не удалось разрешить AFTR имя хоста" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "Не удалось разрешить имя хоста пира" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "Секунды неготовности (UAS)" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Неизвестно" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "Неизвестная ошибка (%s)" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Неуправляемый" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "Отмонтировать" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "Ключ без имени" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Непринятые изменения" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "Неподдерживаемый тип MAP" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "Неподдерживаемый модем" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Неподдерживаемый тип протокола." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "Вверх" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Загрузите sysupgrade-совместимый образ, чтобы заменить текущую прошивку " -"устройства. Поставьте галочку 'Сохранить настройки', чтобы сохранить текущие " -"config файлы — ваши настройки устройства (требуется совместимый образ " -"прошивки)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Загрузка архива..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Загруженный файл" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Время работы" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Использовать /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Использовать шлюз DHCP" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Использовать объявляемые узлом DNS сервера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Использовать коды стран ISO/IEC 3166 alpha2." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "Использовать MTU на интерфейсе туннеля" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "Использовать TTL на интерфейсе туннеля" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "Использовать как внешний overlay (/overlay)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "Использовать как корень (/)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Использовать широковещательный флаг" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "Использовать встроенный IPv6-менеджмент" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Использовать собственные DNS сервера" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Использовать шлюз по умолчанию" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Использовать метрику шлюза" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Использовать таблицу маршрутизации" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Нажмите кнопку 'Добавить', чтобы добавить новую запись аренды. " -"'MAC-адрес' идентифицирует хост, 'IPv4-адрес' указывает " -"фиксированный адрес, а 'Имя хоста' присваивается в качестве " -"символьного имени для запрашивающего хоста. Необязательно 'Время аренды " -"адреса' может быть использовано для того, чтобы установить " -"индивидуальное время аренды, например 12h, 3d или бесконечное." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Использовано" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Используемый слот ключа" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" -"Используется для двух различных целей: RADIUS NAS ID и 802.11r R0KH-ID. Не " -"используется с обычным WPA(2)-PSK." - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "Сертификат пользователя (PEM encoded)" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "Ключ пользователя (PEM encoded)" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Имя пользователя" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "VDSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLANы на %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLANы на %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "Локальный адрес VPN" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "Локальный порт VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "Сервер VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "Порт VPN сервера" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "Сертификат SHA1 hash VPN сервера" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "VPNC (CISCO 3000 (and others) VPN)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "Производитель (Vendor)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" -"Класс производителя (Vendor class), который отправлять при DHCP-запросах" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Проверить" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "Виртуальный динамический винтерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Открытая система WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Общий ключ WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "Пароль WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Режим WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "Пароль WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"Необходимо установить wpa_supplicant (режим клиента) или hostapd (режим " -"точки доступа или ad-hoc) для поддержки шифрования WPA." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Ожидание применения изменений..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Ожидание завершения выполнения команды..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "Ожидание применения конфигурации... %d сек" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "Ожидание подключения устройства..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Внимание" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" -"Предупреждение: Есть не сохраненные изменения, которые будут потеряны при " -"перезагрузке!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "Слабая" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" -"При использовании PSK, PMK может генерироваться автоматически. Если " -"включено, опции ключей R0/R1, расположенные ниже, не применяются. Для " -"использования опций ключей R0/R1 отключите данную опцию." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "Активность Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "Ассоциация Wi-Fi клиента (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "Приём данных Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "Передача данных Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "Wi-Fi включен (%s)" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "Ширина" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "WireGuard VPN" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Wi-Fi" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Беспроводной адаптер" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Беспроводная сеть" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Список беспроводных сетей" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Безопасность беспроводной сети" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Беспроводная сеть отключена" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Беспроводная сеть не связана" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Беспроводная сеть перезапускается..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Беспроводная сеть отключена" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Беспроводная сеть включена" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Записывать полученные DNS-запросы в системный журнал" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "Записывать системные события в файл" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "Да" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Здесь вы можете включить или выключить установленные скрипты инициализации. " -"Изменения вступят в силу после перезагрузки устройства. Внимание: " -"если вы выключите один из основных скриптов инициализации (например " -"'network'), ваше устройство может оказаться недоступным!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Вам необходимо включить JavaScript в вашем браузере для корректной работы " -"LuCI." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "Алгоритм компрессии ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "Потоки компрессии ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "Настройки ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "Размер ZRam" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "любой" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "авто" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "соед. мостом" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "создать" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "создать:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "Создаёт мост для выбранных сетевых интерфейсов" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "дБ" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "дБм" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "отключить" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "отключено" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "истекло" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"Файл, где хранятся арендованные DHCP-адреса" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "перенаправить" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "полный дуплекс" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "полудуплекс" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "значение в шестнадцатеричном представлении" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "скрытый" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "гибридный режим" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "если сеть" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "ввод" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "кБ/с" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "кбит/с" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "ключ длиной от 8 до 63 символов" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "ключ длиной 5 или 13 символов" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "Локальный DNS-файл" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "минут(ы)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "смешанный WPA/WPA2" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "нет" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "нет соединения" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "не пустое значение" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "не существует" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "выключено" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "включено" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "открыть" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "вывод" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "overlay" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "положительное десятичное число" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "положительное целое число" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "случайно" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "режим передачи" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "маршрутизируемый" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "секунды" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "режим сервера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "stateful-only" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "stateless" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "stateless + stateful" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "с тегом" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "единицы измерения времени (TUs / 1.024 ms) [1000-65535]" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "уникальное значение" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "неизвестный" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "неограниченный" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "не определено" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "не определено -или- создать:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "без тега" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "верный IP-адрес" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "верный IP-адрес или префикс" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "верная IPv4 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "верный IPv4 адрес" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "верный IPv4 адрес или сеть" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "верный IPv4 адрес:порт" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "верная IPv4 сеть" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "верная IPv4 или IPv6 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "верное значение IPv4 префикса (0-32)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "верная IPv6 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "верный IPv6 адрес" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "верный IPv6 адрес или префикс" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "верный IPv6 идентификатор хоста" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "верная IPv6 ctnm" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "верное значение IPv6 префикса (0-128)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "верный MAC адрес" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "верный UCI идентификатор" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "верный UCI идентификатор, имя хоста или IP-адрес" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "верный адрес:порт" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "верная дата (ГГГГ-ММ-ДД)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "верное десятичное число" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "верное шестнадцатеричное значение WEP ключа" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "верное шестнадцатеричное значение WPA ключа" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "верное имя хоста:порт" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "верное имя хоста" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "верное имя хоста или IP-адрес" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "верное целое число" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "верная сеть в формате адрес/маска подсети" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "верный символ номера телефона (0-9, \"*\", \"#\", \"!\" or \".\")" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "верный порт или диапазон портов (порт1-порт2)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "верное значение порта" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "верное время (ЧЧ:ММ:СС)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "значение длиной от %d до %d символов" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "значение в диапазоне от %f до %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "значение больше или равное %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "значение меньше или равное %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "значение длиной %d или менее символов" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "значение длиной %d или более символов" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "да" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Назад" - -#~ msgid "Flashmemory write access (%s)" -#~ msgstr "Запись во флешпамять (%s)" - -#~ msgid "" -#~ "one of:\n" -#~ " - %s" -#~ msgstr "" -#~ "одно из:\n" -#~ "- %s" - -#~ msgid "" -#~ "Your Internet Explorer is too old to display this page correctly. Please " -#~ "upgrade it to at least version 7 or use another browser like Firefox, " -#~ "Opera or Safari." -#~ msgstr "" -#~ "Ваш Internet Explorer слишком стар, чтобы отобразить эту страницу " -#~ "правильно. Обновите его до версии 7 или используйте другой браузер, " -#~ "например Firefox, Opera или Safari." - -#~ msgid "kB" -#~ msgstr "кБ" diff --git a/luci-base/po/sk/base.po b/luci-base/po/sk/base.po deleted file mode 100644 index 827483a25..000000000 --- a/luci-base/po/sk/base.po +++ /dev/null @@ -1,6168 +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=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "" diff --git a/luci-base/po/sv/base.po b/luci-base/po/sv/base.po deleted file mode 100644 index fa22ae97d..000000000 --- a/luci-base/po/sv/base.po +++ /dev/null @@ -1,6329 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-04-28 09:22+0200\n" -"Last-Translator: Kristoffer Grundström \n" -"Language-Team: none\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: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "%s är inte taggad i flera VLAN!" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d minut-fönster, %d sekundintervall)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s tillgängligt)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(tomt)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(inga gränssnitt har bifogats)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Ytterligare fält --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Vänligen välj --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- anpassad --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- matcha enligt enhet --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- matcha enligt märke --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "-- matcha enligt uuid --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Belastning senaste minuten:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Belastning senaste 15 minutrarna:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Belastning senaste 5 minutrarna:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "802.11r Snabb förvandling" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNSserver-port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-adress" - -# I don't think "Gateway" is commonly translated. -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-nätmask" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-adress eller nätverk " -"(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED-konfiguration" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    Notera att: du måste starta om cron-tjänsten om crontab-filen var tom " -"innan den ändrades." - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "A43C + J43 + A43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "A43C + J43 + A43 + V43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "ADSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "ANSI T1.413" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM-bryggor" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Accesspunkt" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Åtgärder" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Aktiva IPv4-rutter" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Aktiva IPv6-rutter" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Aktiva anslutningar" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Aktiva DHCP-kontrakt" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Aktiva DHCPv6-kontrakt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Lägg till" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Lägg till ett nytt gränssnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Ytterligare värdfiler" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "Ytterligare server-filer" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Adress" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Adress för att komma åt lokal reläbrygga" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Administration" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Avancerade inställningar" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Varning" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" -"Allokera IP-adresser sekventiellt med start från den lägsta möjliga adressen" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "Allokera IP sekventiellt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "Tillåt SSH lösenordsautentisering" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Tillåt alla utom listade" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Tillåt enbart listade" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Tillåt localhost" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Tillåt fjärrstyrda värdar att ansluta via SSH till lokalt vidarebefordrade " -"portar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Tillåt root-inloggningar med lösenord" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Tillåt root-användaren att logga in med lösenord" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "Tillåtna IP-adresser" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "Aviserade DNS-domäner" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "Aviserade DNS-servrar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "Anonym identitet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "Anonym montering" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "Anonym Swap" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Antenn 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Antenn 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Konfiguration av antenn" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Någon zon" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Tilldela gränssnitten..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Associerade stationer" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "Autentiseringsgrupp" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Autentisering" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "Typ av autentisering" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Auktoritiv" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Tillstånd krävs" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Uppdatera automatiskt" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "Automatisk" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "Automatiskt hemnet (HNCP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "Kolla efter fel i filsystemet automatiskt innan det monteras" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "Monstera filsystem automatiskt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "Montera Swap automatiskt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Tillgänglig" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Snitt:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "B43 + B43C" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "B43 + B43C + V43" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "BR / DMR / AFTR" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Bakåt" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Backa till Överblick" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Backa till konfiguration" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Backa till överblick" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Backa till skanningsresultat" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Säkerhetskopiera" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Säkerhetskopiera / Flasha inre mjukvara" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Säkerhetskopiera fillista" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Fel adress angiven!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "Band" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "Bind gränssnitt" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Bithastighet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Brygga" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Brygga gränssnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Broadcom 802.11%s Trådlös kontroller" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom BCM%04x 802.11 Trådlös kontroller" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Buffrad" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" -"CA-certifikat; om tom så kommer den att sparas efter första anslutningen." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU-användning (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Avbryt" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "Kategori" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Kedja" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Ändringar" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Tillämpade ändringar" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Ändrar administratörens lösenord för att få tillgång till enheten" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Kanal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Kontrollera" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "Kontrollera filsystemen innan de monteras" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" -"Bocka för det här alternativet för att ta bort befintliga nätverk från den " -"här radion." - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Checksumma" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Chiffer" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Klient" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "Klient-ID att skicka vid DHCP-förfrågning" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Stäng ner lista..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Samlar in data..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Kommando" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Vanlig konfiguration" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Konfiguration" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Bekräftelse" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Anslut" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Ansluten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Anslutningsgräns" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Anslutningar" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Land" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Landskod" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Skapa gränssnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Skapa en brygga över flera gränssnitt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Kritisk" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Loggnivå för Cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Anpassat gränssnitt" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP-server" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP och DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP-klient" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP-alternativ" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "DHCPv6-klient" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "DHCPv6-läge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "DHCPv6-tjänst" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "DSL" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "DSL-status" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "Datahastighet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Avlusa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Standard %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Standard gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Ange ett namn för det här nätverket." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Radera" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Ta bort det här nätverket" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Beskrivning" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Plats" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Enhet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Enhetskonfiguration" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "Enheten startar om..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "Enheten kan inte nås" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "Slå nummer" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Mapp" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Inaktivera" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Inaktivera DHCP " -"för det här gränssnittet." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "Inaktivera kryptering" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Inaktiverad" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "Inaktiverad (standard)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Avståndsoptimering" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Avstånd till nätverksmledlemmen längst bort i metrar." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Mångfald" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "Cachea inte negativa svar, t.ex för icke-existerade domäner" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Vidarebefordra inte förfrågningar som inte kan ta emot svar från publika " -"namnservrar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Domän krävs" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "Vitlista för domäner" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "Fragmentera inte" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Vidarebefordra inte DNS-" -"förfrågningar utan DNS-namn" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Ladda ner säkerhetskopia" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Dropbear-instans" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Dynamisk tunnel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP-metod" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Redigera" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Redigera det här gränssnittet" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Redigera det här nätverket" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Nödsituation" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Aktivera" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Aktivera STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Aktivera NTP-klient" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Aktivera TFTP-server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Aktivera VLAN-funktionalitet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "Aktivera WPS-tryckknapp, kräver WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "Kräver ominstallation av nyckel (KRACK) motåtgärder" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Aktivera den här monteringen" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Aktivera den här swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Aktivera/Inaktivera" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Aktiverad" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Kryptering" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Raderar..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Fel" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Ethernet-adapter" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "Inkludera inte dessa gränssnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Expandera värdar" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Löper ut" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "Externt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "Extra alternativ för SSH-kommandot" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Fil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Filsystem" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filtrera privata" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Filtrera icke-användbara" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Hitta och anslut till nätverk" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Avsluta" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Brandvägg" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Inställningar för brandvägg" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Status för brandvägg" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Version för inre mjukvara" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Skriver..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Tvinga" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Tvinga CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Tvinga DHCP på det här nätverket även om en annan server är upptäckt." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Tvinga TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Tvinga TKIP och CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "Tvinga länk" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "Tvinga användning av NAT-T" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Vidarebefordra DHCP-trafik" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Vidarebefordringsläge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Fritt" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Endast GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Gateway" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Gateway-portar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Generella inställningar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "Generera konfig" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Generera arkiv" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "Angiven lösenordsbekräftelse matchade inte, lösenordet ändrades inte!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "Globala inställningar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "Globala nätverksalternativ" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Gå till lösenordskonfiguration..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Gå till relevant konfigurationssida" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "Grupplösenord" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "Gäst" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "HE.net-lösenord" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "HE.net-användarnamn" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "HT-läge (802.11n)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Lägg på" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Göm ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "Värd" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "Host-IP eller Nätverk" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Värdnamn" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Värdnamn att skicka vid DHCP-förfrågningar" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Värdnamn" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "Hybrid" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "IP-adresser" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP-adress" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4-brandvägg" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4-adress" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "IPv4-gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "IPv4-nätmask" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-Adress" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "IPv4-i-IPv4 (RFC2003)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6-brandvägg" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "IPV6-grannar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "IPv6-inställningar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "IPv6-adress" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "IPv6-gateway" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-adress" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-i-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-över-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-över-IPv4 (6till4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Identitet" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ignorera /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ignorera gränssnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ignorera resolv-fil" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Bild" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "I" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Ankommande" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Info" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Initskript" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Initskripten" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "Installera iputils-traceroute6 för IPv6-traceroute" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Installera paketet %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Installera protokoll-förlängningar..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Gränssnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Konfiguration av gränssnitt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Överblick av gränssnitt" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Gränssnittet återansluter..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "Gränssnittets namn" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Gränssnittet är inte närvarande eller är inte anslutet än." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Gränssnitten" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "Interna" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Internt server-fel" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Ogiltig" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Ogiltigt användarnamn och/eller lösenord! Vänligen försök igen." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "Isolera klienter" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "JavaScript krävs!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Anslut till nätverk" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Anslut till nätverk: Trådlös skanning" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "Ansluter till nätverk: %q" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Behåll inställningar" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Kernel-logg" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Kernel-version" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Nyckel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Nyckel #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Döda" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "L2TP-server" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Märke" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Språk" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Språk och Stil" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "Latens" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "Löv" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "Kontraktstid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Kontraktsfil" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Återstående kontraktstid" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Lämna tom för att upptäcka automatiskt" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Lämna tom för att använda den nuvarande WAN-adressen" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Begränsa" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Länk På" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "Lista över SSH-nyckelfiler för auth" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "Lyssningsportar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Lyssna endast på det angivna gränssnittet eller, om o-specificerat på alla" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Lyssningsportar för ankommande DNS-förfrågningar" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Belastning" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Snitt-belastning" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Laddar" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Lokal IPv4-adress" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Lokal IPv6-adress" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "Enbart lokal tjänst" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Lokal uppstart" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Lokal tid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Lokal domän" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Lokal server" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Lokalisera förfrågningar" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "Låst till kanalen %s som används av: %s" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Logga in" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Logga ut" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-adress" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Filter för MAC-adress" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-filter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "MAC-lista" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "MAP / LW4över6" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "MD5" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "Manuell" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Minne" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Minnesanvändning (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metrisk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Läge" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "Modell" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Modem-enhet" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Övervaka" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Monteringspunkt" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Monteringspunkter" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Monteringsalternativ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Monteringspunkt" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Monterade filsystem" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Flytta ner" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Flytta upp" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS-ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "NAT-T-läge" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "NCM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "NT-domän" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "NTP-serverkandidater" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Namn" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Namn på det nya gränssnittet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Namnet på det nya nätverket" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Navigering" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Nätmask" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Nätverk" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Nätverksverktyg" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Uppstartsbild för nätverket" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Nätverk utan gränssnitt" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Nästa »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Det finns ingen DHCP-server inställd för det här gränssnittet" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "Ingen NAT-T" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Inga filer hittades" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Ingen information tillgänglig" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Ingen negativ cache" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "Det finns inget nätverk inställt på den här enheten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Inget nätverksnamn angavs" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Inget lösenord inställt!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Inga regler i den här kedjan" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Buller" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Buller:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Ingen" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Normal" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Hittades inte" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Inte associerad" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Inte ansluten" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "Notera: längden på gränssnittets namn" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Avisering" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "En utav värdnamn eller MAC-adress måste anges!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "En eller fler fält innehåller ogiltiga värden!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "En eller fler fält som krävs har inget värde!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Öppna lista..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "OpenConnect (CISCO AnyConnect)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Alternativet ändrades" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Alternativet togs bort" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "Valfri" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Alternativ" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Andra:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Ut" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Utgående" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Överblick" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Ägare" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "PAP/CHAP-lösenord" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "PAP/CHAP-användarnamn" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN-kod" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "PPPoSSH" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Paketet libiwinfo krävs!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Paket" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Del av zon %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Lösenord" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Lösenordsautentisering" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Den privata nyckelns lösenord" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "Lösenordet för den inre privata nyckeln" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "Lösenord2" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Genväg till CA-certifikat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Genväg till klient-certifikat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Genväg till privat nyckel" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "Genväg till det inre CA-certifikatet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "Genväg till det inre klient-certifikatet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "Genväg till den inre privata nyckeln" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Utför omstart" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Utför återställning" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Fysiska inställningar" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "Pkt." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Vänligen ange ditt användarnamn och lösenord." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Port" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Port-status:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "Föredra LTE" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "Föredra UMTS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "Förhindra lyssning på dessa gränssnitt." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Förhindrar kommunikation klient-till-klient" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "Privat nyckel" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Fortsätt" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Processer" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "Profil" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protokoll" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Det nya gränssnittets protokoll" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Stöd för protokoll är inte installerat" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "Publik nyckel" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "QMI-telefoni" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Kvalité" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RT" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "RX-hastighet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Läs /etc/ethers för att ställa in DHCP-servern" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Verkligen återställa alla ändringar?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Verkligen byta protokoll?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Anslutningar i realtid" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Realtidsgrafer" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Trafik i realtid" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Trådlöst i realtid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Starta om" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Startar om..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Startar om din enhets operativsystem" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Ta emot" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Mottagningsantenn" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "Rekommenderad. WireGuard-gränssnittets IP-adress" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Återanslut det här gränssnittet" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Referens" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Relä" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Relä-brygga" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Relä mellan nätverk" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Relä-brygga" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Ta bort" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Repetera skanning" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Ersätt trådlös konfiguration" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "Krävs!" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Återställ" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Återställ räknare" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Återställ till standard" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Resolv och Värd-filer" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Resolv-fil" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Starta om" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Starta om brandvägg" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Återställ" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Återställ säkerhetskopian" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Visa/göm lösenord" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Återgå" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Root" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Root-mappen för filer som skickas via TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "Root-förberedelse" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "Typ av rutt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Router-lösenord" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Rutter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Kör en filsystemskontroll innan enheten monteras" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Kör filsystemskontrollen" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "SHA256" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "SNR" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "SSH-åtkomst" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "SSH-serverns adress" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "SSH-serverns port" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "Användarnamn för SSH" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH-nycklar" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Spara" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Spara och Verkställ" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Skanna" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Schemalagda uppgifter" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Sektionen lades till" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Sektionen togs bort" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Separera klienter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Inställningar för server" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Namn på tjänst" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Typ av tjänst" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Tjänster" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "Ställ in Tidssynkronisering" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Ställ in DHCP-server" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Stäng ner det här gränssnittet" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Signal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Signal:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Storlek" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Hoppa över" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Hoppa över till innehåll" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Hoppa över till navigering" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Några fält är ogiltiga, kan inte spara värden!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "Tyvärr, objektet som du frågade efter kunde inte hittas." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Tyvärr, servern stötte på ett oväntat fel." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Källa" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Anger lyssningsporten för den här Dropbear-instansen" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "Ange en TaT (Typ av Tjänst)." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Ange den hemliga krypteringsnyckeln här." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Statiska IPv4-rutter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Statiska IPv6-rutter" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Statiska rutter" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Statiska adresser" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Status" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Strikt sortering" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Skicka in" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Byt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Byt %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Byt %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "Byt VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Byt protokoll" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Synkronisera med webbläsare" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Synkroniserar..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "System" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Systemlogg" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Systemets egenskaper" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Inställningar för TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Root för TFTP-server" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "TX-hastighet" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Tabell" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Mål" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "Målnätverk" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "Det angivna nätverksnamnet är inte unikt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Tema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Det finns inga aktiva kontrakt." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Det finns inga pendlande ändringar att återkalla" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Det finns inga pendlande ändringar!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Det finns inget lösenord inställt på den här routern. Vänligen ställ in ett " -"root-lösenord för att skydda webbgränssnittet och för att aktivera SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Synkronisering av tid" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Synkronisering av tid är inte inställd än." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Tidszon" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"För att återställa konfigurationsfiler så kan du ladda upp ett tidigare " -"genererat säkerhetskopierings arkiv här." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "Ton" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Totalt tillgängligt" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Trafik" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Överför" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Överföringshastighet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Överför" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "Tunnel-ID" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Tunnelgränssnitt" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "Tunnel-länk" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Typ" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Endast UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USB-enhet" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "USB-portar" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Det går inte att skicka" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "Otillgängliga Sekunder (UAS)" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Okänd" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "Avmontera" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Osparade ändringar" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Protokolltypen stöds inte." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Ladda upp arkiv..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Laddade upp fil" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Upptid" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Använd /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Använd DHCP-gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "Använd som root-filsystem (/)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Använd anpassade DNS-servrar" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Använd standard-gateway" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "Användarcertifikat (PEM-krypterad)" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "Användarnyckel (PEM-krypterad)" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Användarnamn" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "VDSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "Lokal adress för VPN" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "Lokal port för VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "VPN-server" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "Port för VPN-server" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "Tillverkare" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Verkställ" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Öppet System WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "WEP-lösenordsfras" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM-läge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "WPA-lösenordsfras" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Väntar på att ändringarna ska tillämpas..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Väntar på att kommandot ska avsluta..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "Väntar på enheten..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Varning" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" -"Varning: Det finns osparade ändringar som kommer att förloras vid omstart!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "Bredd" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Trådlöst" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Trådlös adapter" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Trådlöst nätverk" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Trådlös överblick" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Trådlös säkerhet" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Trådlöst är avstängt" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Trådlöst är inte associerat" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Trådlöst startar om..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Trådlöst nätverk är avstängt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Trådlöst nätverk är aktiverat" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Skriv mottagna DNS-förfrågningar till syslogg" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "Skriv systemlogg till fil" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Du måste aktivera JavaScript i din webbläsare, annars kommer inte LuCi att " -"fungera korrekt." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "något" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "auto" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "bryggad" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "skapa:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "skapar en brygga över angivna gränssnitt(en)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "stäng ner" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "avstängd" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "vidarebefordra" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "full-duplex" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "halv-duplex" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "gömd" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "hybrid-läge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "om målet är ett nätverk" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "inmatning" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "lokal DNS-fil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "minuter" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "nej" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "ingen länk" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "inte tillgängligt" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "av" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "på" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "öppen" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "relä-läge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "server-läge" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "taggad" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "okänd" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "obegränsat" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "ospecifierat" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "ospecifierat -eller- skapa:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "otaggat" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "ja" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Bakåt" - -#~ msgid "" -#~ "Your Internet Explorer is too old to display this page correctly. Please " -#~ "upgrade it to at least version 7 or use another browser like Firefox, " -#~ "Opera or Safari." -#~ msgstr "" -#~ "Din Internet Explorer är för gammal för att visa den här sidan korrekt. " -#~ "Vänligen uppgradera den till minst version 7 eller använd en annan " -#~ "webbläsare till exempel Firefox, Opera eller Safari." - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "Password successfully changed!" -#~ msgstr "Ändring av lösenordet lyckades!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "Okänt fel, lösenordet ändrades inte!" - -#~ msgid "Available packages" -#~ msgstr "Tillgängliga paket" - -#~ msgid "Custom feeds" -#~ msgstr "Anpassade flöden" - -#~ msgid "Download and install package" -#~ msgstr "Ladda ner och installera paket" - -#~ msgid "Filter" -#~ msgstr "Filtrera" - -#~ msgid "Find package" -#~ msgstr "Hitta paket" - -#~ msgid "Free space" -#~ msgstr "Fritt utrymme" - -#~ msgid "General options for opkg" -#~ msgstr "Generella alternativ för opkg" - -#~ msgid "Install" -#~ msgstr "Installera" - -#~ msgid "Installed packages" -#~ msgstr "Installerade paket" - -#~ msgid "No package lists available" -#~ msgstr "Ingen paketlista tillgänglig" - -#~ msgid "OK" -#~ msgstr "OK" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "Paket-listor är äldre än 24 timmar" - -#~ msgid "Package name" -#~ msgstr "Paketnamn" - -#~ msgid "Size (.ipk)" -#~ msgstr "Storlek (.ipk)" - -#~ msgid "Software" -#~ msgstr "Mjukvara" - -#~ msgid "Update lists" -#~ msgstr "Uppdatera listor" - -#~ msgid "Version" -#~ msgstr "Version" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 och IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "Endast IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "Endast IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "Giltighetstid för kontrakt" - -#~ msgid "Protocol family" -#~ msgstr "Protokoll-familj" - -#~ msgid "No chains in this table" -#~ msgstr "Inga kedjor i den här tabellen" - -#~ msgid "Configuration files will be kept." -#~ msgstr "Konfigurationsfiler kommer att behållas." - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "Notera: Konfigurationsfiler kommer att raderas." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "Aktivera det här nätverket" - -#~ msgid "Interface is shutting down..." -#~ msgstr "Gränssnittet stänger ner..." - -#~ msgid "Interface reconnected" -#~ msgstr "Gränssnittet återanslöt" - -#~ msgid "Interface shut down" -#~ msgstr "Gränssnittet stängdes ner" - -#~ msgid "Reconnecting interface" -#~ msgstr "Återansluter gränssnittet" - -#~ msgid "Shutdown this network" -#~ msgstr "Stäng ner det här nätverket" - -#~ msgid "Wireless restarted" -#~ msgstr "Trådlöst startade om" - -#~ msgid "Wireless shut down" -#~ msgstr "Trådlöst stängde ner" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP-kontrakt" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "DHCPv6-kontrakt" - -#~ msgid "Sort" -#~ msgstr "Sortera" - -#~ msgid "help" -#~ msgstr "hjälp" diff --git a/luci-base/po/templates/base.pot b/luci-base/po/templates/base.pot deleted file mode 100644 index 42f494df5..000000000 --- a/luci-base/po/templates/base.pot +++ /dev/null @@ -1,6160 +0,0 @@ -msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "" diff --git a/luci-base/po/tr/base.po b/luci-base/po/tr/base.po deleted file mode 100644 index aef1f2066..000000000 --- a/luci-base/po/tr/base.po +++ /dev/null @@ -1,6244 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"POT-Creation-Date: \n" -"PO-Revision-Date: 2018-09-13 22:59+0300\n" -"Last-Translator: Yusuf Soyipek \n" -"Language-Team: none\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: Poedit 2.1.1\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d dakika gösteriliyor, %d saniye aralıklı)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s uygun)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(boş)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(arayüz eklenmedi)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Ek Alan--" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Lütfen seçiniz --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- özel --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- cihaza göre eşleştir --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- etikete göre eşleştir --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "-- uuid'e göre eşleştir --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "-- lütfen seçin --" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "1 Dakikalık Yük:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "15 Dakikalık Yük:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "4 karakterli HEX ID" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "5 Dakikalık Yük:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr " BSSID " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS port sorgula" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS sunucu port" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-Adres" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-Netmask" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-Address or Network " -"(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED Ayarları" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED Adı" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-Adresi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Maks. DHCP leases" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Maks. EDNS0 paket boyutu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Maks. eşzamanlı sorgu" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "ARP yenileme aralığı" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM Köprüleri" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Erişim Noktası" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Eylemler" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "" -"Aktif IPv4-Yönlendiriciler" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "" -"Aktif IPv6-Yönlendiriciler" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Aktif Bağlantılar" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Aktif DHCP Kiraları" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Aktif DHCPv6 Kiraları" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Ekle" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Yeni arabirim ekle..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Ek Hosts dosyaları" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "Ek sunucular dosyası" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Adres" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Gelişmiş Ayarlar" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Uyarı" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -# "Secure Shell" için ne kullanılabilinir bir fikrim yok. -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"SSH parola kimlik doğrulamasına izin ver" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Listelenenlerin haricindekilere izin ver" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Yanlızca listelenenlere izin ver" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "1. Anten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "2. Anten" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Anten Yapılandırması" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "Mimari" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Arabirim ata..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "İlişkili istasyonlar" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Kimlik Doğrulama" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "Kimlik doğrulama türü" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Yetkilendirme" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Yetkilendirme Gerekli" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Otomatik Yenileme" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "Otomatik" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Kullanılabilir" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Ortalama:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Geri" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Genel Bakışa dön" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Yapılandırmaya dön" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Genel Bakışa dön" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Tarama sonuçlarına dön" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Yedekleme" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Yedek/Firmware Yazma" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Bit hızı" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Köprü" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Köprü arabirimleri" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Tamponlu" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU kullanımı (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Vazgeç" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "Kategori" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Zincir" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Değişiklikler" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Kanal" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Mevcut yapılandırma dosyalarının yeni bir arşivini indirmek için \"Arşiv " -"Oluştur\"'u tıklayın." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Onayla" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Bağlan" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Bağlandı" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Bağlantı limiti" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Bağlantılar" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Ülke" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Ülke Kodu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Arabirim Oluştur" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Kritik" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Özel Arabirim" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Varsayılan" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Default ağ geçidi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Varsayılan durum" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Bu ağ için bir ad tanımlayın." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Sil" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Bu ağı sil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Açıklama" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Hedef" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Cihaz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Cihaz Yapılandırması" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "Cihaz yeniden başlatılıyor..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "Cihaz ulaşılamaz!" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "Cihaz ulaşılamaz! Hala cihazı bekliyorum..." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Tanı" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "Arama numarası" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Dizin" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Pasif" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Bu arabirim için DHCP'yi devre dışı bırakın." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "Şifrelemeyi Devre Dışı" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "Ağ devre dışı" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Devre dışı" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "Devre dışı (varsayılan)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "Bağlantı kesme girişimi başarısız oldu" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "Reddet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Mesafe Optimizasyonu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Süre Bitişi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Firmware Versiyon" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Firmware Güncelle" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Dosyayı yaz..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Yeni firmware dosyasını yaz" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Boş" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Ağ Geçidi" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Arşiv oluştur" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-Adres" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-Adres" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Çekirdek Versiyonu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Kalan kira süresi" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Ortalama Yük" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Yerel Zaman" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Oturum Aç" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Oturumu Kapat" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-Adres" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Bellek" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Ağ Maskesi" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Ağ" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Parazit" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Genel Bakış" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protokol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Sıfırla" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Sayaçları Sıfırla" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Varsayılanlara dön" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Tekrar başlat" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Geri Yükleme" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Yedeklemeyi geri yükle" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Dönmek" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "Değişiklikleri geri al" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Kök" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "Yönlendirme Tipi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Yönlendirici Parolası" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Yönlendirmeler" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Cihazı bağlamadan önce bir dosya sistemi kontrolü yapın" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Dosya sistemi kontrolünü çalıştır" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "SHA256" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "SNR" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "SSH Erişimi" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "SSH sunucu adresi" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "SSH sunucu portu" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "SSH kullanıcı adı" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Kaydet" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Kaydet & Uygula" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Tara" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Zamanlanmış Görevler" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Bölüm eklendi" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Bölüm kaldırıldı" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Servisler" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Sinyal" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "Sinyal Zayıflama (SATN)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Sinyal:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Boyut" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Atla" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Kaynak" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Başlat" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Durum" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Durdur" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Gönder" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Sistem" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Tema" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Toplam Mevcut" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Yüklenen Dosya" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Çalışma Zamanı" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Özel DNS sunucularını kullan" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Varsayılan ağ geçidini kullan" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Ağ geçidi metriğini kullan" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Yönlendirme tablosunu kullan" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Kullanılmış" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Kullanıcı adı" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "Satıcı" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Kontrol" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Uyarı" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "Genişlik" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Kablosuz" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"LuCI'nin düzgün çalışması için tarayıcınızda Java Scripti " -"etkinleştirmelisiniz." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "herhangi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "otomatik" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "köprülü" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "oluşturma:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "etkin değil" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "devre dışı" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "sona ermiş" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "ileri" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "tam çift yönlü" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "yarı çift yönlü" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "gizli" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "hibrit mod" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "eğer hedef ağsa" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "giriş" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "yerel DNS dosyası" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "dakika" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "hayır" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "bağlantı yok" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "mevcut değil" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "kapalı" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "açık" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "açık" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "bindirilmiş" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "rastgele" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "anahtarlama modu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "yönlendirildi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "sunucu modu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "durumsuz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "durumsuz + durumlu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "etiketlendi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "bilinmeyen" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "sınırsız" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "tanımsız" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "tanımsız -veya- oluşturun:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "etiketsiz" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "evet" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Geri" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "Design" -#~ msgstr "Tasarım" - -#~ msgid "Available packages" -#~ msgstr "Kullanılabilir Paketler" - -#~ msgid "Displaying only packages containing" -#~ msgstr "Yalnızca içeren paketler görüntüleniyor" - -#~ msgid "Free space" -#~ msgstr "Boş alan" - -#~ msgid "Size (.ipk)" -#~ msgstr "Boyut (.ipk)" - -#~ msgid "Software" -#~ msgstr "Yazılım" - -#~ msgid "Version" -#~ msgstr "Versiyon" - -#~ msgid "none" -#~ msgstr "hiçbiri" - -#~ msgid "Disable DNS setup" -#~ msgstr "DNS kurulumunu devre dışı" - -#~ msgid "Activate this network" -#~ msgstr "Bu ağı etkinleştir" - -#~ msgid "Sort" -#~ msgstr "Sıralama" - -#~ msgid "help" -#~ msgstr "yardım" - -#~ msgid "Apply" -#~ msgstr "Uygula" - -#~ msgid "Applying changes" -#~ msgstr "Değişiklikleri uygula" - -#~ msgid "Action" -#~ msgstr "Eylem" - -#~ msgid "AR Support" -#~ msgstr "AR Desteği" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Atheros 802.11%s Kablosuz Denetleyicisi" - -#~ msgid "Background Scan" -#~ msgstr "Arka Planda Tarama" diff --git a/luci-base/po/uk/base.po b/luci-base/po/uk/base.po deleted file mode 100644 index b01d4fe69..000000000 --- a/luci-base/po/uk/base.po +++ /dev/null @@ -1,6555 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: \n" -"PO-Revision-Date: 2019-02-07 18:35+0200\n" -"Last-Translator: Yurii \n" -"Language-Team: none\n" -"Language: uk\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "%.1f дБ" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "%d біт" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "%d неприпустимі поля" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "%s є непозначеним у декількох VLAN!" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(вікно - %d хв, інтервал - %d с)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(доступно %s)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(пусто)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(нема приєднаних інтерфейсів)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- Додаткові поля --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- Оберіть --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- нетипово --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- відповідно пристрою --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- відповідно мітці --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "-- відповідно UUID --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "-- виберіть --" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" -"0 = не використовувати поріг RSSI, 1 = не змінюваим типові значення драйвера" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "Навантаження за 1 хвилину:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "Навантаження за 15 хвилин:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "4-симв. шістнадцятковий ID" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "464XLAT (CLAT)" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "Навантаження за 5 хвилин:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" -"6-октетний ідентифікатор у вигляді шістнадцяткового рядка – без двокрапок" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "Швидкий перехід 802.11r" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "Максимальний тайм-аут запиту асоціації 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "Тайм-аут повторювання запиту асоціації 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "Захист кадрів управління 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "Максимальний тайм-аут 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "Тайм-аут повторювання 802.11w" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "" -"BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "" -"Порт DNS-" -"запиту" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "" -"Порт DNS-" -"сервера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"DNS-" -"сервери буде опитано в порядку, визначеному файлом resolvfile" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "" -"ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-адреса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-шлюз" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-маска" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-адреса або мережа " -"(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-шлюз" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "IPv6-суфікс (hex)" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "" -"Налаштування LED" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "Назва LED" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "" -"MAC-адреса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"Макс. оренд DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"Макс. розмір пакета EDNS0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "Макс. одночасних запитів" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    Примітка: якщо перед редагуванням, файл crontab був порожній, вам " -"потрібно вручну перезапустити служби cron." - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" -"Оскільки сеанс автентифікації закінчився, потрібен новий вхід у систему." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "" -"APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "Поріг повторювання ARP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" -"ATM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM-мости" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" -"Ідентифікатор віртуального каналу ATM (VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" -"Ідентифікатор віртуального шляху ATM (VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"ATM-мости виставляють інкапсульований Ethernet у з’єднаннях AAL5 як " -"віртуальні мережеві інтерфейси Linux, котрі можуть використовуватися в " -"поєднанні з DHCP або PPP для підключення до мережі провайдера." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "Номер ATM-пристрою" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "Ідентифікатор постачальника системи ATU-C" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "Концентратор доступу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Точка доступу" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Дії" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "IPv4-маршрути" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "IPv6-маршрути" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "Активні підключення" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "Активні оренди DHCP" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "Активні оренди DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Додати" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "Додати адресу IPv4…" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "Додати адресу IPv6…" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "Додати ключ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "Додавати суфікс локального домену до імен, отриманих із файлів hosts" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "Додати новий інтерфейс..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "Додаткові файли hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "Додаткові файли servers" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "Адреса" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "Адреса для доступу до мосту локального ретранслятора" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Адміністрування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "Додатково" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "Додаткові параметри" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "Сумарна потужність передавання" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "Тривога" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "Інтерфейс псевдоніма" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "Псевдонім \"%s\"" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "Усі сервери" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "Виділяти IP-адреси послідовно, починаючи з найнижчої доступної адреси" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "Виділяти IP послідовно" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "" -"Дозволити SSH-" -"перевірку пароля" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" -"Дозволити режиму AP відключення абонентів на підставі низького рівня ACK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Дозволити всі, крім зазначених" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "Дозволити застарілі швидкості 802.11b" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Дозволити тільки зазначені" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "Дозволити локальний вузол" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" -"Дозволити віддаленим вузлам підключення до локальних переспрямованих портів " -"SSH" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "Дозволити root-вхід із паролем" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "Дозволити користувачеві root вхід у систему з паролем" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" -"Дозволити висхідні відповіді від клієнта на сервер у діапазоні 127.0.0.0/8, " -"наприклад, для RBL-послуг" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "Дозволено IP-адреси" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "Завжди оголошувати типовим маршрутизатором" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "Завжди вимкнено (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "Завжди ввімкнено (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" -"Завжди використовувати канали 40 МГц, навіть якщо вторинний канал " -"перекривається. Використання цієї опції не відповідає стандарту IEEE " -"802.11n-2009!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" -"Оголошувати типовим маршрутизатором, навіть якщо немає доступного публічного " -"префікса." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "Оголошено DNS-домени" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "Оголошено DNS-сервери" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "Анонімне посвідчення" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "Анонімне монтування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "Анонімний своп" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "Антена 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "Антена 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "Конфигурація антени" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "Будь-яка зона" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "Все одно застосувати" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "Сталася помилка запиту на застосування зі статусом %h" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "Архітектура" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" -"Призначати частину заданої довжини до кожного публічного IPv6-префікса цього " -"інтерфейсу" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "Призначення інтерфейсів..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" -"Призначати для цього інтерфейсу частину префікса, використовуючи цей " -"шістнадцятковий ID субпрефікса." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "Приєднано станції" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "З’єднань" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "Група автентифікації" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Автентифікація" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "Тип автентифікації" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Надійний" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Потрібна авторизація" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "Автоматичне оновлення" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "Автоматично" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "Автоматично Homenet (HNCP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" -"Автоматично перевіряти файлову систему на наявність помилок перед монтуванням" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "Автоматично монтувати файлові системи при оперативниму підключенні" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "Автоматично монтувати своп при оперативниму підключенні" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "Автомонтування ФС" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "Автомонтування своп" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Доступно" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "Середнє значення:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "Назад" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "Повернутися до переліку" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Повернутися до конфігурації" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "Повернутися до переліку" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "Повернутися до результатів сканування" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "Резервне копіювання" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "Рез. копіювання / Перепрош." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "Список файлів резервних копій" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "Вказано неправильну адресу!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "Діапазон" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "Інтервал маяка" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"Нижче наведено визначений список файлів для резервного копіювання. Він " -"складається із позначених opkg змінених файлів конфігурації, невідокремних " -"базових файлів, та файлів за користувацькими шаблонами резервного копіювання." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" -"Прив’язувати динамічно до інтерфейсів, а не за шаблоном адреси (типово для " -"linux, рекомендовано)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "Прив’язка інтерфейсу" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "Прив’язка тунелю до цього інтерфейсу (за бажання)." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "Швидкість передавання даних" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "Відкидати підробки NX-домену" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "Міст" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Об’єднати інтерфейси в міст" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "Номер моста" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "Піднімати при завантаженні" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Бездротовий 802.11%s контролер Broadcom" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Бездротовий 802.11 контролер Broadcom BCM%04x" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "Буферизовано" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" -"Сертифікат CA; якщо порожньо, його буде збережено після першого підключення." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "Завантаження ЦП, %" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "Не вдалося здійснити виклик" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Скасувати" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "Категорія" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "Увага: файли конфігурації буде видалено." - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "Увага: систему буде оновлено примусово" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "Ланцюжок" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "Змінити пароль для входу" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Зміни" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Зміни застосовано." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "Зміни було скасовано." - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "Зміна пароля адміністратора для доступу до пристрою" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "Зміна пароля…" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Канал" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" -"Канал %d не доступний у %s регуляторному домені й був автоматично " -"скоригований на %d." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "Перевірити" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "Перевірити файлову систему перед монтуванням" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "Позначте цей параметр, щоб видалити існуючі мережі з цього радіо." - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Контрольна сума" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "Виберіть mtdblock" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"Оберіть зону брандмауера, яку ви хочете призначити на цей інтерфейс. " -"Виберіть не визначено, щоб видалити інтерфейс з відповідних зон, " -"або заповніть поле створити, щоб визначити нову зону і прикріпити " -"до неї інтерфейс." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"Оберіть мережі, які ви хочете прикріпити до цього бездротового інтерфейсу " -"або заповніть поле створити, щоб визначити нову мережу." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "Шифр" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "Інкапсуляція UDP Cisco" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" -"Натисніть кнопку \"Створити архів\", щоб завантажити tar-архів поточних " -"файлів конфігурації." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" -"Натисніть \"Зберегти mtdblock\", щоб завантажити вказаний файл mtdblock. " -"(ПРИМІТКА: ЦЕ ФУНКЦІЯ ДЛЯ ПРОФЕСІОНАЛІВ!)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Клієнт" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "Ідентифікатор клієнта для відправки при запиті DHCP" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "Закрити" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" -"Закривати неактивні з’єднання після певного інтервалу часу (секунди). Для " -"утримання неактивних з’єднань використовуйте 0" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Згорнути список..." - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "Збирання даних..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Команда" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "Примітка" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "Загальна конфігурація" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" -"Ускладнює атаки перевстановлення ключа на стороні клієнта, відключаючи " -"ретрансляцію кадрів EAPOL-Key, що використовуються для встановлення ключів. " -"Може викликати проблеми сумісності та зниження стійкості узгодження ключа, " -"особливо в середовищах з великою завантаженістю трафіку." - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Конфігурація" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "Помилка налаштування" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "Конфігураційні файли буде збережено" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "Конфігурацію застосовано." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "Конфігурацію було відкочено!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Підтвердження" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "Підключити" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "Підключено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Гранична кількість підключень" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "Невдала спроба підключення" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "Підключення" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" -"Після застосування змін конфігурації не вдалося відновити доступ до " -"пристрою. Вам, можливо, знадобитися повторне підключення, якщо ви змінили " -"налаштування мережі, такі як IP-адреса або облікові дані безпеки бездротової " -"мережі." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "Країна" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Код країни" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "Покривати такий інтерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "Покривати такі інтерфейси" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Створити / Визначити зону брандмауера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "Створити інтерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "Створити міст через кілька інтерфейсів" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "Критичний" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Рівень виведення інформації Cron" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "Інтерфейс користувача" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "Користувацький делегований префікс IPv6" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" -"Користувацькі файли (сертифікати, скрипти) можуть залишитися в системі. Щоб " -"запобігти цьому, спочатку виконайте відновлення мікропрограми до її " -"початкового стану." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "Користувацький інтервал спалаху (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Налаштування поведінки LED, якщо це можливо." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "Клієнт DAE" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "Порт DAE" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "Секрет DAE" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "Сервер DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP та DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "Клієнт DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Параметри DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "Клієнт DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "Режим DHCPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "Служба DHCPv6" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "Переспрямовування
    запитів DNS" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "DNS-мітка / FQDN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "Перевірка непідписаного DNSSEC" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "Тайм-аут простою DPD" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "AFTR-адреса DS-Lite" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "DSL" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "Стан DSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "Режим лінії DSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" -"Інтервал DTIM" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "Швидк. передавання" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "Зневаджування" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "Типово %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "Типовий маршрут" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "Типовий шлюз" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "Типовим є БЕЗ та ЗІ збереженням стану" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "Типовий стан" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "Визначення імені для цієї мережі." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"Визначення додаткових опцій DHCP, наприклад " -"\"6,192.168.2.1,192.168.2.2\", щоб оголошувати різні DNS-" -"сервери для клієнтів." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Видалити" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "Видалити ключ" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "Видалити цю мережу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "Інтервал повідомлень індикації доправлення трафіку" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Опис" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Призначення" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Пристрій" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "Конфігурація пристрою" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "Пристрій перезавантажується..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "Пристрій недосяжний!" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "Пристрій недосяжний! Досі чекаємо на пристрій..." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "Діагностика" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "Набір номера" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "Каталог" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "Вимкнути" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"Вимкнути DHCP для цього інтерфейсу." - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "Вимкнути шифрування" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "Вимкнути опитування неактивності" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "Вимкнути цю мережу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "Вимкнено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "Вимкнено (типово)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "Роз'єднувати за низького підтвердження" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "Відкидати висхідні RFC1918-відповіді" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "Від’єднати" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "Спроба від’єднання не вдалася" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "Відхилити" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Оптимізація за відстанню" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Відстань до найвіддаленішого вузла мережі в метрах." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Різновидність" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq являє собою комбінований DHCP-сервер і " -"DNS-проксі " -"для брандмауерів NAT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "Не кешувати негативні відповіді, наприклад, за неіснуючих доменів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" -"Не переспрямовувати запити, які не може бути оброблено відкритими серверами " -"імен" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" -"Не переспрямовувати зворотні DNS-запити для локальних мереж" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "Справді видалити такий SSH ключ?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Потрібен домен" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "\"Білий список\" доменів" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "Не фрагментувати" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Не переспрямовувати DNS-запити без DNS-імені" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "Вниз" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "Завантажити резервну копію" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "Завантажити mtdblock" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "Низхідний зсув SNR" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Реалізація Dropbear" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear — це SSH-" -"сервер із вбудованим SCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"Динамічний DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "Динамічний тунель" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"Динамічне виділення DHCP-адрес для клієнтів. Якщо вимкнути, будуть " -"обслуговуватися тільки клієнти, які мають статичні оренди." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "Довжина EA-бітів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP-Метод" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Редагувати" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" -"Щоб виправити якусь помилку, відредагуйте вихідні дані конфігурації вище і " -"натисніть \"Зберегти\", щоб перезавантажити сторінку." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "Редагувати цей інтерфейс" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "Редагувати цю мережу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "Аварійний" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "Увімкнути" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" -"Увімкнути відстеження IGMP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Увімкнути STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "Увімкнути динамічне оновлення кінцевої точки HE.net" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "Увімкнути узгодження IPv6" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "Увімкнути узгодження IPv6 для PPP-з’єднань" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "Пропускати Jumbo-фрейми" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "Увімкнути клієнта NTP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "Увімкнути Single DES" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "Увімкнути TFTP-сервер" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "Увімкнути підтримку VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "Увімкнути кнопку WPS, потребує WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "Увімкнути протидію
    перевстановленню ключів (KRACK)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "Увімкнути learning та aging" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "Увімкнути віддзеркалення вхідних пакетів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "Увімкнути віддзеркалення вихідних пакетів" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "Увімкнути прапорець DF (Don't Fragment) для інкапсульованих пакетів." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "Увімкнути це монтування" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "Увімкнути цю мережу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "Увімкнути цей своп" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Увімкнено/Вимкнено" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "Увімкнено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "Вмикає відстеження IGMP на цьому мосту" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" -"Вмикає швидкий роумінг між точками доступу, що належать до одного і того ж " -"домену мобільності" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "" -"Вмикає STP на цьому мосту" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "Режим інкапсуляції" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Шифрування" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "Хост кінцевої точки" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "Порт кінцевої точки" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "Введіть власне значення" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "Введіть власні значення" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "Видалення..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Помилка" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "Секунд з помилками (ES)" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Ethernet-адаптер" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Ethernet-комутатор" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "Виключити інтерфейси" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "Розширення вузлів" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "Очікування %s" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "Збігає за" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "Термін оренди адрес, мінімум 2 хвилини (2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "Зовнішнє" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "Зовнішній список власників ключів R0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "Зовнішній список власників ключів R1" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "Зовнішній сервер системного журналу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "Порт зовнішнього сервера системного журналу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "Протокол зовнішнього сервера системного журналу" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "Додаткові параметри команд SSH" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "FT через DS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "FT через повітря" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "Протокол FT" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "Не вдалося підтвердити застосування на протязі %d с, очікуємо відкату…" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "Файл" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "І’мя завантажувального образу, що оголошується клієнтам" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Файлова система" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Фільтрувати приватні" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Фільтрувати непридатні" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "Завершення не вдалося" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" -"Знайти всі файлові системи та свопи, які наразі підключено і замінити " -"конфігурацію типовою на підставі того, що було виявлено" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "Знайти мережу й приєднатися" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "Готово" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Брандмауер" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "Позначка брандмауера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "Налаштування брандмауера" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "Стан брандмауера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "Файл мікропрограми" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "Версія мікропрограми" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "Фіксований порт для вихідних DNS-запитів" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Прошиваємо мікропрограму" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "Прошити образ..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "Прошити новий образ мікропрограми" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "Операції прошивання" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "Перепрошиваємо..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Примусово" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "Примусово застосовувати режим '40MHz'" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "Примусово CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "Примусово DHCP у цій мережі, навіть якщо виявлено інший сервер." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "Примусово TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "Примусово TKIP та CCMP (AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "Примусове з’єднання" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "Примусове оновлення" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "Примусово використовувати NAT-T" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "Неузгодженість маркера форми" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "Переспрямовувати DHCP-трафік" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "Секунди прямого коригування помилок (FECS)" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "Переспрямовувати широкомовний трафік" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "Переспрямовувати одноранговий трафік" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "Режим переспрямовування" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Поріг фрагментації" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Frame Bursting" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "Вільно" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" -"Більш детальна інформація про інтерфейси та вузли WireGuard на wireguard.com." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "ГГц" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "Тільки GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "Шлюз" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "Неприпустима адреса шлюзу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "Порти шлюзу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "Загальні параметри" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "Загальні налаштування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "Cтворити конфігурацію" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "Генерувати PMK локально" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "Cтворити архів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "Бездротовий 802.11%s контролер" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "Оскільки пароль і підтвердження не співпадають, то пароль не змінено!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "Загальні параметри" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "Глобальні параметри мережі" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "Перейти до конфігурації пароля..." - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Перейти до відповідної сторінки конфігурації" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "Пароль групи" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "Гість" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "Пароль HE.net" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "Ім’я користувача HE.net" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "Режим HT (802.11n)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Призупинити" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" -"Помилки коду помилок заголовка (HEC)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "Інтервал пульсації (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Тут ви можете налаштувати основні параметри вигляду вашого пристрою, такі як " -"назва (ім’я) вузла або часовий пояс." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "" -"Приховати ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "Приховати порожні ланцюжки" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "Вузол" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Записи вузлів" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "Тайм-аут вузла" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "IP вузла або мережа" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "Зміст тегу Host-Uniq" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Назва (ім’я) вузла" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "Ім’я вузла для надсилання при запиті DHCP" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Імена вузлів" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "Гібрид" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "Група IKE DH" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "IP-адреси" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "IP-протокол" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP-адреса" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "Неприпустима IP-адреса" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "Відсутня IP-адреса" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "Брандмауер IPv4" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "Висхідне з’єднання IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "Адреса IPv4" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "Довжина присвоювання IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "Широкомовний IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "Шлюз IPv4" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "Маска мережі IPv4" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "Мережа IPv4 у позначенні адреси / мережевої маски" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "Префікс IPv4" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "Довжина префікса IPv4" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "IPv4+IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-адреса" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "IPv4 у IPv4 (RFC2003)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "Брандмауер IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "Сусіди IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "Налаштування IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" -"ULA-" -"префікс IPv6" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "Висхідне з’єднання IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "Адреса IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "Натяк призначення IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "Довжина призначення IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "Шлюз IPv6" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "Мережа IPv6 у позначенні адреси / мережевої маски" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "Префікс IPv6" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "Довжина префікса IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "Надісланий префікс IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "Суфікс IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-адреса" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6 у IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6 через IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6 через IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Посвідчення" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "Якщо позначено, 1DES увімкнено" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "Якщо позначено, шифрування вимкнено" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" -"Якщо обрано, монтувати пристрій за його UUID замість фіксованого вузла " -"пристрою" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" -"Якщо обрано, монтувати пристрій за міткою його розділу замість фіксованого " -"вузла пристрою" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "Якщо не позначено, типовий маршрут не налаштовано" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "Якщо не позначено, оголошувані адреси DNS-серверів ігноруються" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Якщо фізичної пам’яті недостатньо, невикористовувані дані можуть тимчасово " -"витіснятися на своп-пристрій, у результаті чого збільшується кількість " -"корисної оперативної пам’яті (RAM). Майте на увазі, що свопінг даних є дуже повільним процесом, оскільки " -"своп-пристрої не можуть бути доступні з такою високою швидкістю, як RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Ігнорувати/etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Ігнорувати интерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Ігнорувати файли resolv" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "Образ" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Вх." - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" -"Щоб запобігти несанкціонованому доступу до системи, ваш запит було " -"заблоковано. Натисніть \"Продовжити »\" нижче, щоб повернутися до " -"попередньої сторінки." - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "Тайм-аут бездіяльності" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "Вхідний:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "Інформація" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "Помилка ініціалізації" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Скрипт ініціалізації" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Скрипти ініціалізації" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "Інсталюйте iputils-traceroute6 для трасування IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "Інсталяція пакета %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "Інсталяція розширень протоколу..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Інтерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "Пристрій інтерфейсу %q автоматичного мігрував із %q на %q." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "Конфігурація інтерфейсу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "Огляд інтерфейсів" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "Перепідключення інтерфейсу..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "Ім’я інтерфейсу" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "Інтерфейс відсутній або його ще не підключено." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Інтерфейси" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "Внутрішній" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Внутрішня помилка сервера" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Неприпустимо" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" -"Задано неприпустимий VLAN ID! Доступні тільки ідентифікатори в межах між %d " -"і %d." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" -"Задано неприпустимий VLAN ID! Доступні тільки унікальні ідентифікатори." - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Неприпустиме ім’я користувача та/або пароль! Спробуйте ще раз." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "Ізолювати клієнтів" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Схоже, що ви намагаєтеся прошити образ, який не вміщається до флеш-пам’яті! " -"Перевірте файл образу!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "Потрібен JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "Підключення до мережі" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "Підключення до мережі: Сканування бездротових мереж" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "Приєднання до мережі: %q" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "Зберегти налаштування" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Журнал ядра" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "Версія ядра" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Ключ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "Ключ #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Знищити" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "Сервер L2TP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "Поріг помилок ехо-запитів LCP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "Інтервал ехо-запитів LCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "Мітка" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Мова" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "Мова та стиль" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "Затримка" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "Лист" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "Час оренди" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Файл оренд" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Час оренди, що лишився" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "Залиште поле порожнім для автовизначення" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "Залиште порожнім, щоб використовувати поточну адресу WAN" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "Легенда:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Межа" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" -"Обмежувати службу DNS інтерфейсами підмереж, на яких ми обслуговуємо DNS." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" -"Обмежитися прослуховуванням цих інтерфейсів і повернутися до початку циклу." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "Затухання лінії" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "Режим лінії" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "Стан лінії" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "Час безперервної роботи лінії" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Зв’язок встановлено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"Список DNS-серверів для " -"переспрямовування запитів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" -"Список власників ключів R0 у тому ж домені мобільності.
    Формат: MAC-" -"адреса,NAS-ідентифікатор,128-бітний ключ у вигляді шістнадцяткового рядка. " -"
    Цей список використовується для відображення R0KH-ID (NAS-ідентифікатор) на " -"MAC-адреси призначення при запиті ключа PMK-R1 від R0KH, як станції, що була використана під час початкової " -"асоціації домену мобільності." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" -"Список власників ключів R1 у тому ж домені мобільності.
    Формат: MAC-" -"адреса,R1KH-ID у " -"формі 6 октетів з двокрапками,128-бітний ключ у вигляді шістнадцяткового " -"рядка.
    Цей список використовується для відображення R1KH-ID на MAC-адреси призначення " -"при передаванні ключа PMK-R1 від R0KH. Це також список авторизованих R1KH у формі MD, які можуть запитувати ключі PMK-R1." - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "Список файлів SSH-ключів для авторизації" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "Список доменів, для яких дозволено RFC1918-відповіді" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "Список доменів, які підтримують результати підробки NX-доменів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "Інтерфейси прослуховування" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "Порти прослуховування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" -"Прослуховувати тільки на цьому інтерфейсі, або на всіх (якщо не " -"визначено)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "Порт прослуховування для вхідних DNS-запитів" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Навантаження" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "Середнє навантаження" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "Завантаження" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "Завантаження SSH-ключів…" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "Неприпустима локальна ІР-адреса" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "Локальна IP-адреса для призначення" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "Локальна адреса IPv4" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "Локальна адреса IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "Тільки локальна служба" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "Локальний запуск" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Місцевий час" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "Локальний домен" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" -"Специфікація локального домену. Імена, які зіставлено цьому домену, ніколи " -"не пересилаються і вирізняються тільки з файлу DHCP (/etc/config/dhcp) або " -"файлу hosts (/etc/hosts)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" -"Суфікс локального домену додається до DHCP-імен вузлів та записів з файлу " -"hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "Локальний сервер" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" -"Локалізувати ім’я хоста залежно від запитуючої підмережі, якщо доступно " -"кілька IP-адрес" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Локалізувати запити" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "Заблоковано до каналу %s, який використовує: %s" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "Рівень виведення інформаціі до журналу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Журнал запитів" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "Журналювання" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Увійти" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Вийти" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" -"Втрата сигналу в секундах (LOSS)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "Найнижча орендована адреса." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "MAC" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-адреса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Фільтр MAC-адрес" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-фільтр" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "MAC-список" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "Неприпустиме правило MAP" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MБ/с" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr " МГц" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" -"Переконайтеся, що ви клонуєте кореневу файлову систему, використовуючи такі " -"команди:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "Вручну" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "Макс. досяжна швидкість передачі даних (ATTNDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "Максимальний дозволений інтервал прослуховування" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "Максимально допустима кількість активних оренд DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "Максимально допустима кількість одночасних DNS-запитів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "Максимально допустимий розмір UDP-пакетів EDNS.0" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "Максимальний час очікування готовності модему (секунд)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" -"Максимальна довжина імені становить 15 символів, включаючи префікс " -"автоматичного протоколу/мосту (br-, 6in4-, pppoe та ін.)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "Максимальна кількість орендованих адрес." - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Мбіт/с" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Пам’ять" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Використання пам’яті, %" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "Mesh Id" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Метрика" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "Дзеркало порту диспетчера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "Дзеркало вихідного порту" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "Відсутні розширення для протоколу %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "Домен мобільності" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Режим" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "Модель" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "Типові налаштування модема" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Модем" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "Помилка запиту інформації про модем" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "Тайм-аут ініціалізації модему" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Диспетчер" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "Вхід монтування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Точка монтування" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Точки монтування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "Точки монтування – Записи монтування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "Точки монтування – Вхід свопу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Точки монтування визначають, до якої точки пристрою пам’яті буде прикріплено " -"файлову систему" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "Монтувати не конкретно налаштовані файлові системи" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "Опції монтування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "Точка монтування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "Монтувати не конкретно налаштований своп" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Змонтовано файлові системи" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "Вниз" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "Вгору" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "Ідентифікатор NAS" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "Режим NAT-T" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "Префікс NAT64" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "NCM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "NDP-проксі" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "Домен NT" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "Кандидати для синхронізації сервера NTP" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Ім’я" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "Ім’я нового інтерфейсу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "Назва (ім’я) нової мережі" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Навігація" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "Маска мережі" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "Мережа" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "Мережеві утиліти" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "Образ для мережевого завантаження" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "Активність мережевого пристрою (%s)" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "Мережевий пристрій відсутній" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "Мережа без інтерфейсів." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "Наступний »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "№" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "Немає DHCP-сервера, налаштованого для цього інтерфейсу" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "Немає NAT-T" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Файли не знайдено" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "Інформація відсутня" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "Делегування відповідних префіксів відсутнє" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "Ніяких негативних кешувань" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "На цьому пристрої немає налаштованої мережі" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "Ім’я мережі не визначено" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "Пароль не встановлено!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "Відкритих ключів поки що немає." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "У цьму ланцюжку нема правил." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "Результати сканування наразі недоступні…" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "Зону не призначено" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "Шум" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "Співвідношення сигнал/шум" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "Шум:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "Не запобіжні помилки CRC (CRC_P)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "Без шаблону заміни" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "Жоден" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "Нормальний" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "Не знайдено" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "Не пов’язаний" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "Не підключено" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "Примітка: довжина імені інтерфейсу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "Попередження" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "DNS-запит" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "Кількість кешованих записів DNS (макс. - 10000, 0 - без кешування)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "Кількість паралельних потоків, що використовуються для стиснення" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "Обфусований груповий пароль" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "Обфусований пароль" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "Отримати IPv6-адресу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "Затримка Off-State" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"На цій сторінці ви можете налаштувати мережеві інтерфейси. Ви можете " -"об’єднати кілька інтерфейсів мостом, відзначивши поле \"Об’єднати інтерфейси " -"в міст\" та ввівши імена кількох мережевих інтерфейсів, розділені пробілами. " -"Також ви можете використовувати VLAN-позначення " -"ІНТЕРФЕЙС.НОМЕР_VLAN (наприклад, eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "Затримка On-State" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "Має бути зазначено одне з двох – ім’я вузла або МАС-адреса!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "Одне або декілька полів містять неприпустимі значення!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "Одне або декілька неприпустимих/обов’язкових значень на вкладці" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "Одне або декілька обов’язкових полів не мають значень!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "Відкрити список..." - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "Робоча частота" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "Опція змінена" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "Опція видалена" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "Необов’язково" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" -"Необов’язково. 32-бітна мітка для вихідних зашифрованих пакетів. Введіть " -"значення в шістнадцятковому форматі, починаючи з 0x." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" -"Необов’язково. Припустимі значення: 'eui64', 'random' чи фіксоване значення, " -"наприклад '::1' або '::1:2'. Якщо префікс IPv6 (наприклад, 'a:b:c:d::') " -"отримано від сервера делегування, для формування IPv6-адреси інтерфейсу " -"(наприклад, 'a:b:c:d::1') використовуйте суфікс ('::1')." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" -"Необов’язково. Заздалегідь установлений Base64-кодований спільний ключ. " -"Додавання додатково рівня шифрування із симетричним ключем для пост-" -"квантової стійкості." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "Необов’язково. Створити для цього вузла маршрути для дозволених IP." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "Необов’язково. Опис вузла." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "Необов’язково. Хост вузла. Імена буде виділено до підняття інтерфейсу." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" -"Необов’язково. Максимальний блок передаваних даних тунельного інтерфейсу." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "Необов’язково. Порт вузла." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" -"Необов’язково. Час (сек.) між перевірками активності повідомлень. Типове " -"значення - 0 (вимкнено). Рекомендоване значення для цього пристрою за NAT - " -"25." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" -"Необов’язково. UDP-порт, який використовується для вихідних та вхідних " -"пакетів." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Опції" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "Інше:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Вих." - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "Вихідний:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "Вихідний інтерфейс" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "Перевизначити MAC-адресу" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "Перевизначити MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "Перевизначити TOS" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "Перевизначити TTL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "Перевизначення типового імені інтерфейсу" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "Перевизначення шлюзу у відповідях DHCP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" -"Перевизначення мережевої маски, яка надсилається клієнтам. Зазвичай вона " -"обчислюється від підмережі, що обслуговується." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" -"Перевизначення таблиці, що використовужться для внутрішніх спрямовувань" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Огляд" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Власник" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "Пароль PAP/CHAP" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "Ім’я користувача PAP/CHAP" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" -">PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "PIN-код відхилено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "Проштовхуваня PMK R1" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "Інкапсуляція PPPoA" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "PPPoSSH" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "Зсув PSID" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "Довжина PSID у бітах" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "Потрібен пакет libiwinfo!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Пакети" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "Частина зони %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Пароль" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Автентифікація за паролем" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Пароль закритого ключа" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "Пароль внутрішнього закритого ключа" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "Пароль2" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "Вставте або перетягніть файл SSH-ключа…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Шлях до центру сертифікції" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "Шлях до сертифікату клієнта" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Шлях до закритого ключа" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "Шлях до внутрішнього CA-сертифікату" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "Шлях до внутрішнього сертифікату клієнта" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "Шлях до внутрішнього закритого ключа" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "Пік:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "Запит IP-адреси призначення" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "Відсутня адреса вузла" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "Вузли" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "Perfect Forward Secrecy" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Виконати перезавантаження" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "Виконати відновлення" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "Завжди тримати ввімкненим" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "Фізична швидкість:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Фізичні параметри" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ехо-запит" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "пакетів" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Введіть ім’я користувача і пароль." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Політика" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "Інтервал опитування" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "Інтервал опитування для запитів стану (секунди)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Порт" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "Стан порту:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "Режим керування живленням" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "Попереджувати помилки CRC (CRCP_P)" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "Переважно LTE" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "Переважно UMTS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "Делеговано префікс" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "Заздалегідь установлений спільний ключ" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" -"Вважати вузол недоступним після визначеної кількості невдач отримання ехо-" -"пакета LCP, використовуйте 0, щоб ігнорувати невдачі" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "Перешкоджати прослуховуванню цих інтерфейсів." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Перешкоджати спілкуванню клієнт-клієнт" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "Приватний ключ" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Продовжити" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Процеси" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "Профіль" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Прот." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Протокол" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "Протокол нового інтерфейсу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "Підтримка протоколу не інстальована" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "Забезпечувати сервер NTP" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "Укажіть нову мережу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Псевдо Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "Відкритий ключ" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" -"Відкриті ключі дозволяють безпарольний SSH-вхід з більш високою безпекою " -"порівняно з використанням простих паролів. Щоб завантажити до пристрою новий " -"ключ, вставте сумісний із OpenSSH відкритий ключ або перетягніть файл ." -"pub у поле введення." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "Публічний префікс надісланий на цей пристрій для поширення клієнтам." - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "Стільниковий QMI" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "Якість" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" -"Запит усіх наявних висхідних DNS-серверів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "Тривалість життя ключа R0" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "Власник ключа R1" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "Режим RFC3947 NAT-T" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "Поріг RSSI для приєднання" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "Поріг RTS/CTS" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "Одержано" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "Швидкість приймання" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Порт Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Секрет Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Сервер Radius-Accounting" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Порт Radius-Authentication" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Секрет Radius-Authentication" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Сервер Radius-Authentication" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" -"Сирі шістнадцяткові байти. Залиште порожнім, якщо ваш інтернет-провайдер не " -"вимагає цього." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Читати /etc/ethers для налаштування DHCP-сервера" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" -"Дійсно видалити цей інтерфейс? Скасувати видалення неможливо! Ви можете " -"втратити доступ до цього пристрою, якщо вас підключено через цей інтерфейс." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"Дійсно видалити цю бездротову мережу? Скасувати видалення неможливо! Ви " -"можете втратити доступ до цього пристрою, якщо вас підключено через цю " -"мережу." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "Дійсно скинути всі зміни?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "Дійсно змінити протокол?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "Підключення у реальному часі" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "Графіки у реальному часі" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "Навантаження у реальному часі" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "Трафік у реальному часі" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "Бездротові мережі у реальному часі" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "Кінцевий термін реассоціації" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "Захист від переприв’язки" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Перезавантаження" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "Перезавантаження..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Перезавантажити операційну систему вашого пристрою" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Приймання" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Антена приймача" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "Рекомендовано. IP-адреси інтерфейсу WireGuard." - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "Перепідключити цей інтерфейс" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Посилання" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "Ретранслятор" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "Міст-ретранслятор" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "Міжмережевий ретранслятор" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "Міст-ретранслятор" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "Віддалена адреса IPv4" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "Віддалена адреса IPv4 або FQDN" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Видалити" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "Повторити сканування" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "Замінити запис" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "Замінити конфігурацію бездротової мережі" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "Запит IPv6-адреси" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "Запит довжини IPv6-префіксу" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "Вимагається" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "Вимагається для деяких провайдерів, наприклад, Charter із DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "Вимагається. Base64-кодований закритий ключ для цього інтерфейсу." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "Вимагається. Base64-кодований відкритий ключ вузла." - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" -"Вимагається. IP-адреси та префікси, які цьому вузлу дозволено " -"використовувати всередині тунелю. Зазвичай тунельні IP-адреси вузла та " -"мережі маршрутів вузла через тунель." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" -"Потребує \"повної\" версії wpad/hostapd та підтримки драйвером WiFi
    (станом на січень 2019 року: ath9k, ath10k, mwlwifi та mt76)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" -"Потребує підтримки висхідною мережею DNSSEC; переконайтеся, що відповіді " -"непідписаного домену дійсно походять із непідписаних доменів" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Скинути" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Скинути лічильники" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "Відновити початковий стан" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "Файли resolv і hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "Файл resolv" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "Перезавантажити" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Перезавантажити брандмауер" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "Перезавантажити радіоінтерфейс" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "Відновлення" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Відновити з резервної копії" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "Показати/приховати пароль" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Скасувати" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "Скасувати зміни" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "Помилка запиту на скасування зі статусом %h" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "Відкат конфігурації…" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Корінь" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "Кореневий каталог для файлів TFTP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "Підготовка Root" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "Маршрутизація дозволених IP-адрес" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "Тип маршруту" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "Служба оголошень маршрутизатора" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "Пароль маршрутизатора" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Маршрути" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Маршрути визначають через який інтерфейс і шлюз можна досягнути певного " -"вузла або мережі." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "Правило" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "Виконати перевірку файлової системи перед монтуванням пристрою" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "Виконати перевірку файлової системи" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "SSH-доступ" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "Адреса сервера SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "Порт сервера SSH" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "Ім’я користувача SSH" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH-ключі" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Зберегти" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Зберегти і застосувати" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "Зберегти mtdblock" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "Зберегти вміст mtdblock" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "Збереження ключів…" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Сканувати" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "Помилка запиту на сканування" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Заплановані завдання" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "Секцію додано" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "Секцію видалено" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "Подробиці дивись на сторінці керівництва \"mount\"." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" -"Щоб прошити образ, навіть якщо не вдається виконати перевірку його формату, " -"виберіть \"Примусове оновлення\". Використовуйте тільки якщо ви впевнені, що " -"мікропрограма є правильною і призначена для вашого пристрою!" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" -"Надсилати ехо-пакети LCP зі вказаним інтервалом (секунди), ефективно тільки " -"в поєднанні з порогом помилок" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Розділяти клієнтів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "Налаштування сервера" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "Назва (ім’я) сервісу" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "Тип сервісу" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Сервіси" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "Час сеансу минув" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "Встановити VPN типовим маршрутом" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" -"Властивості інтерфейсу встановлюються незалежно від каналу зв’язку (якщо " -"позначено, обробник автовизначення не викликається при змінах)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "Налаштування синхронізації часу" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "Не вдалося налаштувати PLMN" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "Не вдалося налаштувати режим роботи" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "Налаштування DHCP-сервера" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" -"Секунди з великою кількістю помилок помилок (SES)" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "Short GI" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "Коротка преамбула" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "Показати поточний список файлів резервного копіювання" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "Показати порожні ланцюжки" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "Вимкнути цей інтерфейс" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "Сигнал" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "Затухання сигналу (SATN)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "Сигнал:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Розмір" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "Розмір кешу запитів DNS" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "Розмір пристрою ZRam у мегабайтах" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "Пропустити" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Перейти до вмісту" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Перейти до навігації" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "Час слота" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "Програмово реалізований VLAN" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "Деякі поля є неприпустимими, неможливо зберегти значення!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "На жаль, об’єкт, який ви просили, не знайдено." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "На жаль, на сервері сталася неочікувана помилка." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"На жаль, оновлення системи не підтримується. Новий образ мікропрограми слід " -"прошити вручну. Зверніться до Wiki за інструкцією з інсталяції для " -"конкретного пристрою." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Джерело" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "Визначає каталог, до якого приєднаний пристрій" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "Визначає порт прослуховування цієї реалізації Dropbear" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" -"Визначає максимальну кількість невдалих ARP-запитів до вузлів, після якого " -"вважається, що вузли \"мертві\"" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" -"Визначає максимальний час (секунди), після якого вважається, що вузли " -"\"мертві\"" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "Вкажіть TOS (Type of Service — тип послуги)." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" -"Вкажіть TTL (Time to Live — час життя) для пакета інкапсуляції, відмінний " -"від типового (64)." - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" -"Вкажіть MTU (Maximum Transmission Unit — максимальний блок передавання), " -"відмінний від типового (1280 байт)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "Вкажіть тут секретний ключ шифрування." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Запустити" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Стартовий пріоритет" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "Розпочато застосування конфігурації…" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "Розпочато сканування бездротових мереж..." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "Запуск" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Статичні маршрути IPv4" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Статичні маршрути IPv6" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Статичні оренди" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Статичні маршрути" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "Статична адреса" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"Статичні оренди використовуються для призначення фіксованих IP-адрес і " -"символічних імен вузлів DHCP-клієнтам. Вони також необхідні для статичних " -"конфігурацій інтерфейсів, коли обслуговуються тільки вузли з відповідною " -"орендою." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "Обмеження бездіяльності станції" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Стан" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "Зупинити" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Строгий порядок" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Надіслати" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "Блокувати журналювання" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "Блокувати ведення журналу звичайної роботи цих протоколів" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "Своп" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Вхід своп" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "Комутатор" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "Комутатор %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "Комутатор %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" -"Комутатор %q має невідому топологію – параметри VLAN можуть бути " -"неправильними." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "Маска портів комутатора" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "VLAN комутатора" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "Протокол комутатора" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "Перейти до позначення списку CIDR" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "Активність порту комутатора (%s)" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "Синхронізувати з браузером" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "Синхронізація..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Система" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "Системний журнал" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "Властивості системи" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "Розмір буфера системного журналу" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "Налаштування TFTP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "Корінь TFTP-сервера" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "Передано" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "Швидкість передавання" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Таблиця" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Ціль" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "Цільова мережа" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Завершити" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"Розділ Конфігурація пристрою охоплює фізичні параметри апаратних " -"радіо-засобів, такі, як канал, потужність передавача або вибір антени, які є " -"спільними для всіх визначених бездротових мереж (якщо апаратні радіо-засоби " -"здатні підтримувати кілька SSID). Параметри окремих мереж, такі, як " -"шифрування або режим роботи, згруповано в розділі Конфігурація " -"інтерфейсу." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"Пакет libiwinfo-lua не інстальований. Щоб мати можливість " -"налаштувати безпровідні мережі, слід інсталювати цей компонент!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" -"Конфігурацію оновлення кінцевої точки HE.net змінено, тепер потрібно " -"використовувати звичайне ім’я користувача замість ідентифікатора користувача!" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "Адреса IPv4 або повне доменне ім’я віддаленого кінця тунелю." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" -"Призначений провайдером IPv6-префікс, зазвичай закінчується на ::" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"Дозволено символи: A-Z, a-z, 0-9 та " -"_" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "Архів резервної копії не є правильним файлом gzip." - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "Файл конфігурації не вдалося завантажити через таку помилку:" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" -"Пристрій недосяжний протягом %d секунд після застосування очікуючих змін, що " -"призвело до відкочування конфигурації з міркувань безпеки. Проте, якщо ви " -"впевнені, що зміни конфігурації є правильними, все одно продовжіть " -"застосування. Крім того, ви можете відхилити це попередження та " -"відредагувати зміни, перш ніж намагатись застосувати їх знову, або ж " -"скасувати всі очікуючі зміни, щоб зберегти поточну робочу конфігурацію." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "Файл пристрою пам’яті або розділу (наприклад, /dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"Файлова система, яка використовуватиметься для форматування пам’яті " -"(наприклад, ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"Образ завантажено. Нижче наведено контрольну суму та розмір файлу. " -"Порівняйте їх з вихідним файлом, щоб переконатися в цілісності даних.
    " -"Натисніть \"Продовжити\", щоб розпочати процедуру прошивання." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Наведені нижче зміни було скасовано" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "Наразі в цій системі активні такі правила." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "Наданий відкритий SSH-ключ вже було додано." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" -"Наданий відкритий SSH-ключ є недійсним. Надавайте належні відкриті ключі RSA " -"або ECDSA." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "Задане мережеве ім’я не є унікальним" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" -"Обладнання не підтримує мульти-SSID і, якщо ви продовжите, існуючу " -"конфігурацію буде замінено." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "Довжина IPv4-префікса в бітах, решта використовується в IPv6-адресах." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "Довжина IPv6-префікса в бітах" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "Локальна адреса IPv4, за якою створюється тунель (необов'язково)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"Мережеві порти вашого пристрою може бути об’єднано у декілька VLAN, у яких комп’ютери можуть напряму спілкуватися один з одним. " -"VLAN часто використовуються для розділення мережі на окремі " -"сегменти. Зазвичай один виcхідний порт використовується для з’єднання з " -"більшою мережею, такою наприклад, як Інтернет, а інші порти — для локальної " -"мережі." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "Обраний протокол потребує призначених пристроїв" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "Поданий маркер безпеки недійсний або вже збіг!" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" -"Зараз система видаляє розділ конфігурації і коли закінчить, " -"перезавантажиться." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"Система перепрошивається.
    НЕ ВИМИКАЙТЕ ЖИВЛЕННЯ ПРИСТРОЮ!
    Зачекайте кілька хвилин перед тим, як пробувати знову " -"під’єднатися. Залежно від налаштувань, можливо, треба буде оновити адресу " -"вашого комп’ютера, щоб знову отримати доступ до пристрою." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "Системний пароль успішно змінено." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"Завантажений файл образу не містить підтримуваний формат. Переконайтеся, що " -"ви вибираєте універсальний формат образу для вашої платформи." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Тема" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "Активних оренд немає." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "Немає жодних змін до застосування." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "Немає жодних очікуючих змін до скасування!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "Немає жодних очікуючих змін!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" -"Немає жодного призначеного пристрою. Призначте мережевий пристрій у вкладці " -"\"Фізичні параметри\"." - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" -"Цей маршрутизатор не має пароля. Встановіть пароль, щоб захистити веб-" -"інтерфейс і увімкнути SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "Це IPv4-адреса ретранслятора" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" -"Цей файл може містити такі рядки, як 'server=/domain/1.2.3.4' або " -"'server=1.2.3.4' для домен-орієнтованих або повних висхідних DNS-серверів." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"Це список шаблонів для відбору файлів і каталогів, які мають увійти до " -"резервної копії. Змінені файли у /etc/config/ та деякі інші " -"зберігаються автоматично." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" -"Це або \"Update Key\", сконфігурований для тунелю, або пароль облікового " -"запису, якщо ключ оновлення не налаштовано" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"Це вміст файлу /etc/rc.local. Вставте тут ваші власні команди " -"(перед 'exit 0'), щоб виконати їх у кінці процесу завантаження." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" -"Це локальна адреса кінцевої точки, яку присвоєно тунельним брокером, вона " -"зазвичай закінчується на …:2/64" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Тільки для DHCP у локальній мережі" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "Це звичайне ім’я користувача для входу до облікового запису" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" -"Це префікс, що надсилається до вас тунельним брокером для використання " -"клієнтами" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "" -"Це системна таблиця Cron (crontab), у якій можна визначити заплановані " -"завдання." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" -"Зазвичай, це адреса найближчої точки присутності, що управляється тунельним " -"брокером" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "У цьому списку наведено працюючі наразі системні процеси та їх стан." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "Ця сторінка надає огляд поточних активних мережевих підключень." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Ця секція поки що не містить значень" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "Синхронізація часу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "Синхронізацію часу не налаштовано." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "Інтервал часу для зміни ключа GTK" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Часовий пояс" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "Для входу…" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"Щоб відновити файли конфігурації, ви можете відвантажити раніше створений " -"архів резервної копії. Для відновлення мікропрограми до її початкового стану " -"натисніть кнопку \"Виконати відновлення\" (можливо тільки з образами " -"SquashFS)." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "Тоновий" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "Усього доступно" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Трасування" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "Трафік" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Передано" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Швидкість передавання" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Передавання" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Потужність передавача" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Антена передавача" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "Тригер" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "Режим запуску" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "Ідентифікатор тунелю" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "Інтерфейс тунелю" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "Посилання тунелю" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "Потужність передавача" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Тип" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "Тільки UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USB-пристрій" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "USB-порт" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "Не вдається визначити ім’я пристрою" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "Не вдається визначити зовнішню ІР-адресу" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "Не вдається визначити висхідний інтерфейс" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "Не вдається опрацювати запит" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "Не вдається отримати ідентифікатор клієнта" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "Не вдається розрізнити ім’я хоста AFTR" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "Не вдається розрізнити ім’я хоста вузла" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "Недоступні секунди (UAS)" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "Невідомо" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "Невідома помилка (%s)" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "Некерований" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "Демонтувати" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "Безіменний ключ" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Незбережені зміни" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "Непідтримуваний тип MAP" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "Непідтримуваний модем" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "Непідтримуваний тип протоколу." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "Вгору" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"Відвантажити sysupgrade-сумісний образ, щоб замінити поточну мікропрограму. " -"Для збереження поточної конфігурації встановіть прапорець \"Зберегти " -"налаштування\" (потрібен сумісний образ мікропрограми)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "Відвантажити архів..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Відвантажений файл" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Час безперервної роботи" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Використовувати /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "Використовувати DHCP-шлюз" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "Використовувати DNS-сервери, оголошувані вузлом" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "Використовуйте коди країн згідно ISO/IEC 3166 alpha2." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "Використовувати на тунельному інтерфейсі MTU" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "Використовувати на тунельному інтерфейсі TTL" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "Використовувати як зовнішній оверлей (/overlay)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "Використовувати як кореневу файлову систему (/)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "Використовувати прапорець широкомовності" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "Використовувати вбудоване керування IPv6" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "Використовувати особливі DNS-сервери" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "Використовувати типовий шлюз" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "Використовувати метрику шлюзу" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "Використовувати таблицю маршрутизації" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"Використовуйте кнопку Додати, щоб додати новий запис оренди. " -"MAC-адреса ідентифікує вузол, IPv4-адреса визначає " -"фіксовану адресу, яка буде використовуватися, а Назва (ім’я) вузла " -"призначає символічне ім’я вузла." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Використано" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "Використовується слот ключа" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" -"Використовується для двох різних цілей: RADIUS NAS ID і 802.11r R0KH-ID. Не потрібно за " -"звичайного WPA(2)-PSK." - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "Сертифікат користувача (PEM-кодований)" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "Ключ користувача (PEM-кодований)" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Ім’я користувача" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "VDSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLAN на %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLAN на %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "Локальна адреса VPN" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "Локальний порт VPN" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "VPN-сервер" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "Порт VPN-сервера" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "SHA1-геш сертифіката VPN-сервера" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "VPNC (CISCO 3000 (та інш.) VPN)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "Постачальник" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "Клас постачальника для відправки при запиті DHCP" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "Перевірте" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "Віртуальний динамічний інтерфейс" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "Відкрита система WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "Спільний ключ WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "Парольна фраза WEP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "Режим WMM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "Парольна фраза WPA" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"WPA-шифрування потребує інсталяції wpa_supplicant (для режиму " -"клієнта) або hostapd (для Точки доступу та режиму ad-hoc)." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "Очікуємо, доки зміни наберуть чинності..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "Очікуємо завершення виконання команди..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "Очікування застосування конфігурації… %d c" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "Очікуємо пристрій..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "Застереження" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" -"Застереження: Є незбережені зміни, які буде втрачено при перезавантаженні!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" -"При використанні PSK, PMK може генеруватися автоматично. Якщо ввімкнено, " -"параметри ключів R0/R1 нижче не застосовуються. Щоб використовувати " -"параметри ключів R0 та R1, вимкніть цю функцію." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "Активність Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "Асоціація клієнтів Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "Приймання даних Wi-Fi (%s" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "Передавання даних Wi-Fi (%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "Wi-Fi увімкнено (%s)" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "Ширина" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "WireGuard VPN" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "Бездротові мережі" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Бездротовий адаптер" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "Бездротова мережа" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "Огляд бездротових мереж" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "Безпека бездротової мережі" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "Бездротову мережу вимкнено" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "Бездротову мережу не пов’язано" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "Бездротова мережа перезапускається..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "Бездротову мережу вимкнено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "Бездротову мережу ввімкнено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "Записувати отримані DNS-запити до системного журналу" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "Записувати cистемний журнал до файлу" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "Так" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Тут ви можете увімкнути або вимкнути інстальовані скрипти ініціалізації. " -"Зміни набудуть чинності після перезавантаження пристрою.
    Увага: " -"Якщо ви вимкнете основний скрипт ініціалізації (наприклад \"network\"), " -"пристрій може стати недоступним!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" -"Вам слід увімкнути JavaScript у вашому браузері, або LuCI не буде працювати " -"належним чином." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "Алгоритм стиснення ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "Потоки стиснення ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "Налаштування ZRam" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "Розмір ZRam" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "будь-який" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "авто" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "зв’язано" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "створити" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "створити:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "Створити міст через зазначені інтерфейси" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "дБ" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "дБм" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "вимкнено" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "вимкнено" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "минув" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"Файл, де зберігаються видані DHCP-оренди" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "переспрямувати" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "повний дуплекс" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "напівдуплекс" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "шістнадцяткове кодоване значення" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "прихований" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "гібридний режим" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "якщо ціль — мережа" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "вхід" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "КБ/с" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "Кбіт/с" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "ключ від 8 до 63 символів" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "ключ із 5 або 13 символів" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "" -"Локальний DNS-файл" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "хв." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "змішаний WPA/WPA2" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "ні" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "нема з’єднання" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "непусте значення" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "не присутній" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "вимкнено" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "увімкнено" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "відкрита" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "вихід" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "оверлей" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "додатне десяткове значення" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "додатне ціле значення" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "випадковий" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "режим реле" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "спрямовано" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "с" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "режим сервера" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "тільки ЗІ збереженням стану" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "БЕЗ збереження стану" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "БЕЗ та ЗІ збереженням стану" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "позначено" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "одиниці часу (TUs / 1.024 ms) [1000-65535]" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "унікальне значення" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "невідомий" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "необмежений" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "не визначено" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "не визначено -або- створити:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "не позначено" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "дійсна IP-адреса" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "дійсна IP-адреса або префікс" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "дійсна IPv4 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "дійсна IPv4-адреса" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "дійсна IPv4-адреса або мережа" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "дійсна IPv4-адреса:порт" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "дійсна IPv4-мережа" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "дійсна IPv4 або IPv6 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "дійсне значення IPv4-префіксу (0-32)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "дійсна IPv6 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "дійсна IPv6-адреса" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "дійсна IPv6-адреса або префікс" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "дійсний IPv6-ідентифікатор хоста" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "дійсна IPv6-мережа" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "дійсне значення IPv6-префіксу (0-128)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "дійсна MAC-адреса" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "дійсний UCI-ідентифікатор" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "дійсний UCI-ідентифікатор, ім’я хоста або IP-адреса" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "дійсна адреса:порт" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "дійсна дата (РРРР-ММ-ДД)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "дійсне десяткове значення" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "дійсний шістнадцятковий ключ WEP" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "дійсний шістнадцятковий ключ WPA" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "дійсне ім’я хоста:порт" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "дійсне ім’я хоста" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "дійсне ім’я хоста або IP-адреса" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "дійсне ціле значення" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "дійсна мережа в записі адреса/маска мережі" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "дійсний символ номера телефону (0-9, \"*\", \"#\", \"!\" or \".\")" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "дійсний порт або діапазон портів (порт1-порт2)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "дійсне значення порту" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "дійсний час (ГГ:ХХ:СС)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "значення від %d до %d символів" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "значення від %f до %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "значення, що більше або дорівнює %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "значення, що менше або дорівнює %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "значення з принаймні %d символів" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "значення з не більше %d символів" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "так" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« Назад" - -#~ msgid "Flashmemory write access (%s)" -#~ msgstr "Доступ до запису флеш-пам’яті (%s)" - -#~ msgid "" -#~ "one of:\n" -#~ " - %s" -#~ msgstr "" -#~ "одне з:\n" -#~ " - %s" - -#~ msgid "" -#~ "Your Internet Explorer is too old to display this page correctly. Please " -#~ "upgrade it to at least version 7 or use another browser like Firefox, " -#~ "Opera or Safari." -#~ msgstr "" -#~ "Ваш Internet Explorer занадто старий, щоб правильно відобразити цю " -#~ "сторінку. Поновіть його, принаймні, до версії 7 або скористайтесь іншим " -#~ "браузером, таким як Firefox, Opera або Safari." - -#~ msgid "kB" -#~ msgstr "КБ" diff --git a/luci-base/po/vi/base.po b/luci-base/po/vi/base.po deleted file mode 100644 index 2899c0d1f..000000000 --- a/luci-base/po/vi/base.po +++ /dev/null @@ -1,6331 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-08-16 06:59+0200\n" -"PO-Revision-Date: 2009-08-14 12:23+0200\n" -"Last-Translator: Hong Phuc Dang \n" -"Language-Team: LANGUAGE \n" -"Language: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"X-Generator: Pootle 1.1.0\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -#, fuzzy -msgid "(%s available)" -msgstr "(%s available)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "---Mục bổ sung---" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "--Hãy chọn--" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "--tùy chỉnh--" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-Address" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-Netmask" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-Address or Network " -"(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-Gateway" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED Configuration" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-Address" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "Điểm truy cập" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "Hành động" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "Active IPv4-Routes" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "Active IPv6-Routes" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "kết nối đang hoạt động" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "Thêm vào" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "Quản trị" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "Cho phép SSH xác thực mật mã" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "Cho phép tất cả trừ danh sách liệt kê" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "Chỉ cho phép danh sách liệt kê" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "Xác thực" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "Authoritative" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "Yêu cầu ủy quyền" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "Sẵn có" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "Giao diện cầu nối" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU usage (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "Bỏ qua" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "chuỗi" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "Thay đổi" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "Thay đổi đã áp dụng" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "Kênh" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "Checksum" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "Giao diện này chưa thuộc về bất kỳ firewall zone nào." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "Client" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "Lệnh" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "Cấu hình" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "Xác nhận" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "Giới hạn kết nối" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "Mã quốc gia" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "Tạo/ gán firewall-zone" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"Tùy chỉnh chế độ của thiết bị LEDs nếu có thể." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "Tùy chọn DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "Xóa" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "Mô tả" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "Điểm đến" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "Công cụ" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "Khoảng cách tối ưu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "Khoảng cách tới thành viên xa nhất trong mạng lưới tính bằng mét" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "Tính đa dạng" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq là một phối hợp DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "Domain yêu cầu" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"Don&#39;t chuyển tiếp DNS-Yêu " -"cầu không cần DNS-Tên" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear cung cấp SSH mạng lưới shell " -"truy cập và một SCP server tích hợp" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "" -"Dynamic DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP-Method" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "Chỉnh sửa" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "Kích hoạt STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "Cho kích hoạt/ Vô hiệu hóa" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "Kích hoạt Spanning Tree Protocol trên cầu nối này" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "Encryption" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "Lỗi" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "Bộ tương hợp ethernet" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "Bộ chuyển đảo ethernet" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "Tập tin hệ thống" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "Filter private" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "Lọc không hữu dụng" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "Firewall" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "Phần cứng flash" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "Force" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "Ngưỡng cửa Phân đoạn" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "Khung nổ" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "Đi tới trang cấu hình thích hợp" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "Hang Up" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "" -"Ở đây bạn có thể cấu hình những đặc tính cơ bản của thiết bị như tên máy chủ " -"hoặc múi giờ." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "Giấu ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "Host entries" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "Host-IP or Network" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "Tên host" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "Tên host" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "Địa chỉ IP" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "Nhận dạng" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"Nếu bộ nhớ vật lý không đủ dữ liệu không dùng có thể được swap tạm thời đến " -"một thiết bị swap để tạo ra nhiều khoảng trống hơn trong RAM. Hãy nhận biết rằng swapping dữ liệu là " -"một quá trình rất chậm vì một thiết bị swap không thể được truy cập với " -"datarates cao hơn của RAM." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "Lờ đi /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "Lờ đi giao diện" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "Lờ đi tập tin resolve" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "Trong" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "Initscript" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "Initscripts" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "Giao diện " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "Giao diện " - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "Giá trị nhập vào không hợp lí" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "Tên và mật mã không đúng. Xin thử lại " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "" -"Dường như bạn cố gắng flash một hình ảnh không phù hợp với bộ nhớ flash, xin " -"vui lòng xác minh các tập tin hình ảnh!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "Kernel Log" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "Phím " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "Kill" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "Ngôn ngữ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "Leasefile" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "Leasetime còn lại" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "Giới hạn " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "Link On" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "Tải " - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "Giờ địa phương" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "Tra vấn địa phương" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "Bản ghi tra vấn" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "Đăng nhập " - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "Thoát ra" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "Lọc địa chỉ MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "Lọc MAC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "Danh sách MAC" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "Bộ nhớ" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "Memory usage (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "Metric" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "Chế độ" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "Thiết bị modem" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "Monitor" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "Lắp điểm" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "Lắp điểm" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "" -"Số điểm lắp xác định tại một điểm mà ở đó bộ nhớ sẽ được gắn vào hệ thống " -"tập tin" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "Lắp tập tin hệ thống" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "Tên" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "Sự điều hướng" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "mạng lưới " - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "Không có quy luật trong chuỗi này" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"Trên trang này bạn có thể định cấu hình giao diện network. Bạn có thể bắt " -"cầu nhiều giao diện bằng cách đánh dấu &quot;bridge interfaces&quot; " -"field và nhập tên vào của nhiều giao diện network phân tách bởi những khoảng " -"trống. Bạn có thể cũng dùng VLAN notation INTERFACE.VLANNR (e." -"g.: eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "Lựa chọn " - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "Ra khỏi" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "Nhìn chung" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "Owner" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "PPPoA Encapsulation" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "Gói tin" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "Mật mã" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "Xác thực mật mã" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "Mật mã của private key" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "Đường dẫn tới CA-Certificate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "Đường dẫn tới private key" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "Tiến hành reboot" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "Cài đặt căn bản" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "Nhập tên và mật mã" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "Chính sách" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "Cửa " - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "Ngăn chặn giao tiếp giữa client-và-client" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "Proceed" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "Processes" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "Prot." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "Protocol" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "Pseudo Ad-Hoc (ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTS Threshold" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "RX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"Đọc /etc/ethers để định cấu hình DHCP-Server" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "Reboot" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "Reboots hệ điều hành của công cụ" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "Receive" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "Máy thu Antenna" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "Tham chiếu" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "Loại bỏ" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "thay đổi nội dung" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "Reset" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "Reset bộ đếm" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "Khởi động lại Firewall" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "Phục hồi backup" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "Revert" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "Routes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "" -"Routes chỉ định trên giao diện và cổng một host nhất định hay network được " -"tiếp cận." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "Lưu" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "Lưu & áp dụng " - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "Scan" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "Scheduled Tasks" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "Cô lập đối tượng" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "Dịch vụ " - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "Dung lượng " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "Nhảy tới nội dung" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "Chuyển đến mục định hướng" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "Nguồn" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "Bắt đầu " - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "Bắt đầu ưu tiên" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "Static IPv4 Routes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "Static IPv6 Routes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "Thống kê leases" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "Static Routes" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "Tình trạng" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "Yêu cầu nghiêm ngặt" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "Trình " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "chuyển đổi" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "Hệ thống" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "System Log" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "TX" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "Bảng" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "Đích" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "Terminate" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"Tập tin công cụ của bộ nhớ hoặc phân vùng (e.g. " -"/dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"Filesystem mà được dùng để format memory (e.g. ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "Những thay đối sau đây đã được để trở về tình trạng cũ. " - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"Hệ thống bây giờ đang flashing.
    DO NOT POWER OFF THE DEVICE!
    Chờ " -"một vài phút cho tới khi kết nối lại. Có thể cần phải làm mới địa chỉ của " -"máy tính để tiếp cận thiết bị một lần nữa, phụ thuộc vào cài đặt của bạn. " - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"Tập tin đang tải hình ảnh không bao gồm một hổ trợ format. Bảo đảm rằng bạn " -"chọn một image format tổng quát cho platform." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "Thiết kế" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"Đây là DHCP duy " -"nhất trong mạng địa phương. " - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "Đây là system crontab mà scheduled tasks có thể bị định nghĩa." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "" -"List này đưa ra một tầm nhìn tổng quát về xử lý hệ thống đang chạy và tình " -"trạng của chúng." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "" -"Trang này cung cấp một tổng quan về đang hoạt động kết nối mạng hiện tại." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "Phần này chưa có giá trị nào" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "Múi giờ " - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "Chuyển giao" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "Truyền tải rate" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "Transmit" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "Truyền tải năng lượng" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "Máy phát Antenna" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "Loại " - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "Thay đổi không lưu" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "Tập tin đã tải lên" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "Uptime" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "Dùng /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "Đã sử dụng" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "Tên người dùng " - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM Mode" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "Bộ tương hợp không dây" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"Bạn có thể bật hoặc tắt cài đặt init script tại đây. Thay đổi này sẽ được áp " -"dụng sau khi một thiết bị khởi động lại.
    Cảnh báo: Nếu bạn vô " -"hiệu hoá init script thiết yếu như &quot;network&quot;, công cụ của " -"bạn chó thể trở nên không truy cập được" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "tự động" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "tạo một cầu nối trên một giao diện được chỉ định" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "Vô hiệu hóa" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"Tập tin được cho DHCP-leases sẽ được lưu trữ" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "Nếu mục tiêu là một network" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "Tập tin DNS địa phương" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "" - -#~ msgid "Design" -#~ msgstr "Thiết kế" - -#~ msgid "Download and install package" -#~ msgstr "Tải và cài đặt gói" - -#~ msgid "Filter" -#~ msgstr "Lọc" - -#~ msgid "Find package" -#~ msgstr "Tìm gói" - -#~ msgid "Install" -#~ msgstr "Cài đặt " - -#~ msgid "OK" -#~ msgstr "OK " - -#~ msgid "OPKG-Configuration" -#~ msgstr "Cấu hình OPKG-" - -#~ msgid "Package name" -#~ msgstr "Tên gói" - -#~ msgid "Software" -#~ msgstr "Phần mềm" - -#~ msgid "Version" -#~ msgstr "Phiên bản" - -#~ msgid "none" -#~ msgstr "không " - -#~ msgid "No chains in this table" -#~ msgstr "Không có chuỗi trong bảng này" - -#~ msgid "Backup / Restore" -#~ msgstr "Backup/ Restore" - -#~ msgid "Apply" -#~ msgstr "Áp dụng" - -#~ msgid "Applying changes" -#~ msgstr "Tiến hành thay đổi" - -#~ msgid "Action" -#~ msgstr "Action" - -#~ msgid "Maximum hold time" -#~ msgstr "Mức cao nhất" - -#~ msgid "Minimum hold time" -#~ msgstr "Mức thấp nhất" - -#~ msgid "Leasetime" -#~ msgstr "Leasetime" - -#, fuzzy -#~ msgid "automatic" -#~ msgstr "thống kê" - -#~ msgid "AR Support" -#~ msgstr "Hỗ trợ AR" - -#~ msgid "Background Scan" -#~ msgstr "Background Scan" - -#~ msgid "Compression" -#~ msgstr "Sức nén" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "Vô hiệu hóa bộ chỉnh giờ HW-Beacon" - -#~ msgid "Do not send probe responses" -#~ msgstr "Không gửi nhắc hồi đáp" - -#~ msgid "Fast Frames" -#~ msgstr "Khung nhanh" - -#~ msgid "Maximum Rate" -#~ msgstr "Mức cao nhất" - -#~ msgid "Minimum Rate" -#~ msgstr "Mức thấp nhất" - -#~ msgid "Multicast Rate" -#~ msgstr "Multicast Rate" - -#~ msgid "Outdoor Channels" -#~ msgstr "Kênh ngoại mạng" - -#~ msgid "Regulatory Domain" -#~ msgstr "Miền điều chỉnh" - -#~ msgid "Separate WDS" -#~ msgstr "Phân tách WDS" - -#~ msgid "Turbo Mode" -#~ msgstr "Turbo Mode" - -#~ msgid "XR Support" -#~ msgstr "Hỗ trợ XR" diff --git a/luci-base/po/zh-cn/base.po b/luci-base/po/zh-cn/base.po deleted file mode 100644 index 5240ce41a..000000000 --- a/luci-base/po/zh-cn/base.po +++ /dev/null @@ -1,6524 +0,0 @@ -# -# Zheng Qian , 2019. -# Yangfl , 2018, 2019. -# -msgid "" -msgstr "" -"PO-Revision-Date: 2019-05-17 09:18+0800\n" -"Last-Translator: Yangfl \n" -"Language-Team: \n" -"Language: \n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.7\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "%.1f dB" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "%d Bit" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "%d 个无效字段" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "%s 在多个 VLAN 中均未标记!" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(最近 %d 分钟信息,每 %d 秒刷新)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s 可用)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(空)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(没有接口连接)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- 更多选项 --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- 请选择 --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- 自定义 --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "-- 根据设备匹配 --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "-- 根据标签匹配 --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "-- 根据 UUID 匹配 --" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "-- 请选择 --" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "0 = 不使用 RSSI 阈值,1 = 驱动默认值" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "1 分钟负载:" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "15 分钟负载:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "4 字符的十六进制 ID" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "464XLAT (CLAT)" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "5 分钟负载:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "十六进制表示的 6 字节标识符,无冒号分隔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "802.11r 快速切换" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "802.11w 关联 SA 查询最大超时" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "802.11w 关联 SA 查询重试超时" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "802.11w 管理帧保护" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "802.11w 最大超时" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "802.11w 重试超时" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS 查询端口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS 服务器端口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "" -"按照“解析文件”里的顺序查询 DNS 服务" -"器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4 地址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4 网关" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4 子网掩码" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6 地址或网段(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6 网关" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" -"IPv6 后缀(十六进制)" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED 配置" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED 名称" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC 地址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"最大 DHCP 租约数量" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"最大 EDNS0 数据包大小" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "最大并发查询数" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "" -"
    注意:如果 crontab 文件在编辑前为空,则需要手动重新启动 cron 服务。" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "由于身份验证会话已过期,需要重新登录。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "A43C + J43 + A43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "A43C + J43 + A43 + V43" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "ADSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "ANSI T1.413" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "ARP 重试阈值" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "ATM(异步传输模式)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM 桥接" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM 虚拟通道标识(VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM 虚拟路径标识(VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"ATM 桥是以 AAL5 协议封装以太网的虚拟 Linux 网桥,用于协同 DHCP 或 PPP 来拨号" -"连接到网络运营商。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "ATM 设备号码" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "ATU-C 系统供应商 ID" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "接入集中器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "接入点 AP" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "动作" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "活动的 IPv4 路由" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "活动的 IPv6 路由" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "活动连接" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "已分配的 DHCP 租约" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "已分配的 DHCPv6 租约" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "点对点 Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "添加" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "添加 IPv4 地址…" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "添加 IPv6 地址…" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "添加密钥" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "添加本地域名后缀到 HOSTS 文件中的域名" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "添加新接口…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "额外的 HOSTS 文件" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "额外的 SERVERS 文件" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "地址" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "接入本地中继桥的地址" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "管理权" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "高级" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "高级设置" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "总发射功率(ACTATP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "警戒" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "接口别名" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "\"%s\" 的别名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "所有服务器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "从最低可用地址开始顺序分配 IP 地址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "顺序分配 IP" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "允许 SSH 密码验证" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "允许 AP 模式时在 low ACK 的情况下断开无线终端" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "仅允许列表外" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "允许传统的 802.11b 速率" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "仅允许列表内" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "允许本机" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "允许远程主机连接到本地 SSH 转发端口" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "允许 root 用户凭密码登录" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "允许 root 用户凭密码登录" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "允许 127.0.0.0/8 回环范围内的上行响应,例如:RBL 服务" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "允许的 IP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "总是通告默认路由" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "总是关闭(%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "总是开启(%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" -"即使辅助信道重叠,也始终使用 40MHz 信道。使用此选项不符合 IEEE 802.11n-2009!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "Annex" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "Annex A + L + M(全部)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "Annex A G.992.1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "Annex A G.992.2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "Annex A G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "Annex A G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "Annex B(全部)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "Annex B G.992.1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "Annex B G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "Annex B G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "Annex J(全部)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "Annex L G.992.3 POTS 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "Annex M(全部)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "Annex M G.992.3" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "Annex M G.992.5" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "即使没有可用的公网前缀,也仍通告自己为默认路由。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "通告的 DNS 域名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "通告的 DNS 服务器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "匿名身份" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "自动挂载未配置的磁盘分区" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "自动挂载未配置的 Swap 分区" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "天线 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "天线 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "天线配置" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "任意区域" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "强制应用" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "应用请求失败,状态 %h" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "架构" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "将每个公共 IPv6 前缀的给定长度部分分配给此接口" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "分配接口…" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "将此十六进制子 ID 前缀分配给此接口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "已连接站点" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "关联数" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "认证组" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "认证" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "认证类型" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "唯一授权" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "需要授权" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "自动刷新" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "自动" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "自动家庭网络(HNCP)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "在挂载前自动检查文件系统错误" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "通过 hotplug 自动挂载磁盘" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "通过 hotplug 自动挂载 swap 分区" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "自动挂载磁盘" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "自动挂载 Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "可用" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "平均:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "B43 + B43C" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "B43 + B43C + V43" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "BR / DMR / AFTR" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "返回" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "返回至概况" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "返回至配置" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "返回至概况" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "返回至扫描结果" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "备份" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "备份/升级" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "文件备份列表" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "指定了错误的地址!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "频宽" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "Beacon 间隔" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"下面是待备份的文件清单。包含了更改的配置文件、必要的基础文件和用户自定义的需" -"备份文件。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "动态绑定到接口而不是通配符地址(推荐为 linux 默认值)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "绑定接口" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "将隧道绑定到此接口(可选)。" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "传输速率" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "忽略虚假空域名解析" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "桥接" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "桥接接口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "桥接号" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "开机自动运行" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Broadcom 802.11%s 无线控制器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom BCM%04x 802.11 无线控制器" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "已缓冲" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "CA 证书,如果留空,则证书将在第一次连接后被保存。" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU 使用率(%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "调用失败" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "取消" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "分类" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "注意:配置文件将被删除" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "注意:将强制进行系统升级" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "链" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "更改登录密码" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "更改数" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "更改已应用。" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "更改已恢复。" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "更改访问设备的管理员密码" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "正在更改密码…" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "信道" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "信道 %d 在 %s 监管区域内不可用并已自动调整到 %d。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "检查" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "在挂载前检查文件系统" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "选中此选项以从无线中删除现有网络。" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "校验值" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "选择 mtdblock" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"为此接口分配所属的防火墙区域,选择“不指定”可将该接口移出已关联的区域,或者填" -"写“创建”栏来创建一个新的区域,并将当前接口与之建立关联。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "选择指派到此无线接口的网络,或者填写“创建”栏来新建网络。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "算法" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "Cisco UDP 封装" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "点击“生成备份”下载当前配置文件的 tar 存档。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" -"单击“保存 mtdblock”以下载指定的 mtdblock 文件。(注意:此功能适用于专业人" -"士!)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "客户端 Client" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "请求 DHCP 时发送的客户端 ID" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "关闭" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "在给定时间(秒)后关闭非活动链接,0 为保持连接" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "关闭列表…" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "正在收集数据…" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "命令" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "备注" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "一般配置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" -"通过禁用用于安装密钥的 EAPOL-Key 帧的重新传输,来增加客户端密钥重安装攻击的复" -"杂度。此解决方法可能会导致互操作性问题,并降低密钥协商的可靠性,特别是在流量" -"负载较重的环境中。" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "配置" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "配置失败" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "将保留配置文件" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "配置已应用。" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "配置已回滚!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "确认密码" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "连接" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "已连接" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "连接数限制" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "尝试连接失败" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "连接" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" -"应用配置更改后,无法重新获得对设备的访问权限。如果您更改了网络相关设置如 IP " -"地址或无线安全证书,则可能需要重新连接。" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "国家" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "国家代码" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "包括以下接口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "包括以下接口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "创建/分配防火墙区域" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "创建新接口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "在多个接口上创建桥接" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "致命错误" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Cron 日志级别" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "自定义接口" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "自定义分配的 IPv6 前缀" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" -"自定义文件(证书、脚本)会保留在系统上。若无需保留,请先执行恢复出厂设置。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "自定义闪烁间隔(%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "自定义此设备的 LED 行为。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "DAE 客户端" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "DAE 端口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "DAE 加密" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP 服务器" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP/DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP 客户端" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP 选项" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "DHCPv6 客户端" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "DHCPv6 模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "DHCPv6 服务" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "DNS 转发" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "DNS-Label / FQDN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "DNSSEC" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "DNSSEC 检查未签名" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "DPD 空闲超时" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "DS-Lite AFTR 地址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "DSL" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "DSL 状态" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "DSL 线路模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "DTIM 间隔" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DUID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "数据速率" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "调试" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "默认 %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "默认路由" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "默认网关" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "默认是无状态的 + 有状态的" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "默认状态" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "为网络定义名称。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"设置 DHCP 的附加选项,例如设定 \"6,192.168.2.1,192.168.2.2\" 表" -"示通告不同的 DNS 服务器给客户端。" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "删除" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "删除密钥" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "删除此网络" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "发送流量指示消息间隔" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "描述" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "目标地址" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "设备" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "设备配置" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "设备正在重启…" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "无法连接到设备" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "无法连接到设备!仍旧等待设备…" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "网络诊断" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "拨号号码" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "目录" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "禁用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -"不在此接口提供 DHCP 服务。" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "禁用加密" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "禁用不活动轮询" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "禁用此网络" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "已禁用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "已禁用(默认)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "在低 Ack 应答时断开连接" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "丢弃 RFC1918 上行响应数据" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "断开连接" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "尝试断开连接失败" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "解除" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "距离优化" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "最远网络用户的距离(米)。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "差异" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -"Dnsmasq 为 NAT 防火墙提供" -"了一个集成的 DHCP " -"服务器和 DNS 转发器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "不缓存无用的回应, 比如:不存在的域名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "不转发公共域名服务器无法回应的请求" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "不转发本地网络的反向查询" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "您真的要删除以下 SSH 密钥吗?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "忽略空域名解析" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "域名白名单" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "禁止分片" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"不转发没有 DNS 名称的解析请求" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "下移" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "下载备份" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "下载 mtdblock" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "下游 SNR 偏移" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Dropbear 实例" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear 提供 SSH 访问和 SCP 服务" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "轻型双栈(RFC6333)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "动态 DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "动态隧道" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "" -"为所有客户端提供 DHCP 服务。如果禁用,将只对具有静态租约的客户提供服务。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "EA-位长" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP 类型" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "编辑" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "编辑上方的原始配置数据来修复错误,点击“保存”按钮以重新载入此页面。" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "编辑此接口" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "编辑此网络" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "紧急" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "启用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" -"启用 IGMP 嗅探" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "开启 STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "启用 HE.net 动态终端更新" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "启用 IPv6 协商" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "在 PPP 链路上启用 IPv6 协商" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "启用巨型帧透传" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "启用 NTP 客户端" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "启用单个 DES" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "启用 TFTP 服务器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "启用 VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "启用 WPS 一键加密按钮,需要 WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "启用密钥重新安装(KRACK)对策" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "启用智能交换学习" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "启用流入数据包镜像" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "启用流出数据包镜像" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "启用后报文的 DF(禁止分片)标志。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "启用此挂载点" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "启用此网络" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "启用此 swap 分区" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "启用/禁用" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "已启用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "在此桥接上启用 IGMP 窥探" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "启用属于同一移动域的接入点之间的快速漫游" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "在此桥接上启用生成树协议" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "封装模式" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "加密" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "端点主机" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "端点端口" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "输入自定义值" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "输入自定义值" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "擦除中…" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "错误" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "错误秒数(ES)" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "以太网适配器" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "以太网交换机" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "排除接口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "扩展 HOSTS 文件中的主机后缀" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "期望 %s" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "到期时间" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "租用地址的到期时间,最短 2 分钟(2m)。" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "外部" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "外部 R0KH 列表" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "外部 R1KH 列表" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "外部系统日志服务器地址" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "外部系统日志服务器端口" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "外部系统日志服务器协议" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "额外的 SSH 命令选项" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "FT over DS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "FT over the Air" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "FT 协议" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "在 %d 秒内确认应用失败,等待回滚…" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "文件" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "向客户端通告的启动镜像文件名" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "文件系统" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "过滤本地包" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "过滤无用包" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "最终确认失败" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "查找当前系统上的所有分区和 swap 设备,并根据查找结果生成并替换现有配置" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "搜索并加入网络" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "完成" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "防火墙" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "防火墙标识" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "防火墙设置" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "防火墙状态" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "固件文件" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "固件版本" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "指定的 DNS 查询源端口" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "刷新固件" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "刷写固件…" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "刷写新的固件" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "刷新操作" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "正在刷写…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "强制" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "强制 40MHz 模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "强制 CCMP(AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "即使检测到另一台服务器,也要强制使用此网络上的 DHCP。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "强制 TKIP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "强制 TKIP 和 CCMP(AES)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "强制链路" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "强制升级" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "强制使用 NAT-T" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "表单令牌不匹配" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "转发 DHCP 数据包" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "前向纠错秒数(FECS)" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "转发广播数据包" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "转发 mesh 节点数据包" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "转发模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "分片阈值" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "帧突发" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "空闲数" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" -"有关 WireGuard 接口和 Peer 的更多信息:wireguard.com。" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "仅 GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "网关" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "网关地址无效" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "网关端口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "基本设置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "基本设置" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "生成配置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "本地生成 PMK" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "生成备份" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "通用 802.11%s 无线控制器" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "由于密码验证不匹配,密码没有更改!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "全局设置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "全局网络选项" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "跳转到密码配置页…" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "跳转到相关的配置页面" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "组密码" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "访客" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr "HE.net 密码" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "HE.net 用户名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "HT 模式(802.11n)" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "挂起" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "请求头错误代码错误(HEC)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "心跳间隔(%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "此处配置设备的基础信息,如主机名称或时区。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "隐藏 ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "隐藏空链" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "主机" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "主机目录" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "主机到期超时" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "主机 IP 或网络" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "Host-Uniq 标签内容" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "主机名" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "请求 DHCP 时发送的主机名" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "主机名" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "混合" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "IKE DH 组" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "IP 地址" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "IP 协议" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP 地址" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "IP 地址无效" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "IP 地址缺失" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4 防火墙" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "IPv4 上游" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4 地址" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "分配 IPv4 长度" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "IPv4 广播" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "IPv4 网关" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "IPv4 子网掩码" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "地址/网络掩码表示法中的 IPv4 网络" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "IPv4 地址前缀" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "IPv4 地址前缀长度" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "IPv4+IPv6" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4 地址" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "IPv4-in-IPv4 (RFC2003)" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6 防火墙" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "IPv6 网上邻居" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "IPv6 设置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "IPv6 ULA 前缀" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "IPv6 上游" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "IPv6 地址" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "IPv6 分配提示" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "IPv6 分配长度" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "IPv6 网关" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "地址/网络掩码表示法中的 IPv6 网络" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "IPv6 地址前缀" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "IPv6 地址前缀长度" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "IPv6 路由前缀" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "IPv6 后缀" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6 地址" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "IPv6-PD" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6-in-IPv4 (RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6-over-IPv4 (6rd)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6-over-IPv4 (6to4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "鉴权" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "如果选中,则启用1DES。" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "如果选中,则禁用加密" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "如果指定,则通过 UUID 而不是固定的设备文件来挂载设备" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "如果指定,则通过分区卷标而不是固定的设备文件来挂载设备" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "留空则不配置默认路由" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "留空则忽略所通告的 DNS 服务器地址" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"如果物理内存不足,闲置数据可自动移到 swap 区暂存,以增加可用的 RAM。请注意:swap 区的数据处理会非常慢,因为 " -"swap 设备无法像 RAM 这样的高速率" -"访问。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "忽略 /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "忽略此接口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "忽略解析文件" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "固件文件" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "入口" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" -"为了防止未经授权访问系统,您的请求已被阻止。点击下面的 “继续 »” 来返回上一" -"页。" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "活动超时" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "入站:" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "信息" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "信息" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "初始化失败" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "启动脚本" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "启动脚本" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "安装 iputils-traceroute6 以进行 IPv6 路由追踪" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "安装软件包 %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "安装扩展协议…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "接口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "接口设备 %q 从 %q 自动迁移到了 %q。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "接口配置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "接口总览" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "正在重新连接接口…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "接口名称" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "接口不存在或未连接。" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "接口" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "内部" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "内部服务器错误" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "无效" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "无效的 VLAN ID!只有 %d 和 %d 之间的 ID 有效。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "无效的 VLAN ID!只允许唯一的 ID" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "无效的用户名和/或密码!请重试。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "隔离客户端" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "您尝试刷写的固件与本路由器不兼容,请重新验证固件文件。" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "需要 JavaScript!" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "加入网络" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "加入网络:搜索无线" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "加入网络:%q" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "保留配置" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "内核日志" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "内核版本" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "密码" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "密码 #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "KiB" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "强制关闭" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "L2TP 服务器" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "LCP 响应故障阈值" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "LCP 响应间隔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "卷标" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "语言" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "语言和界面" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "延迟" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "叶节点" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "租期" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "租约文件" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "剩余租期" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "留空则自动探测" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "留空则使用当前 WAN 地址" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "图例:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "客户数" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "仅在网卡所属的子网中提供 DNS 服务。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "仅监听这些接口和环回接口。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "线路衰减(LATN)" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "线路模式" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "线路状态" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "线路运行时间" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "活动链接" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "" -"将请求转发到的 DNS 服务器列表" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" -"同一移动域中的 R0KH 列表。
    格式:MAC 地址,NAS 标识符,128 位密钥(十六" -"进制字符串)。
    在从初始移动域关联期间使用的 R0KH 中请求 PMK-R1 密钥时," -"该列表用于将 R0KH-ID(NAS 标识符)映射到目标 MAC 地址。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" -"同一移动域中的 R1KH 列表。
    格式:MAC 地址,R1KH-ID(包含冒号的 6 个八位" -"字节),128 位密钥(十六进制字符串)。
    当从 R0KH 发送 PMK-R1 键时,此列" -"表用于将 R1KH-ID 映射到目标 MAC 地址。这也是可以请求 PMK-R1 键的 MD 中授权的 " -"R1KH 的列表。" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "用于认证的 SSH 密钥文件列表" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "允许 RFC1918 响应的域名列表" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "允许虚假空域名响应的服务器列表" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "监听接口" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "监听端口" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "仅监听指定的接口,未指定则监听全部" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "入站 DNS 查询端口" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "负载" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "平均负载" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "加载中" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "正在加载 SSH 密钥…" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "本地 IP 地址无效" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "要分配的本地 IP 地址" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "本地 IPv4 地址" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "本地 IPv6 地址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "仅本地服务" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "本地启动脚本" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "本地时间" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "本地域名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "本地域名规则。与此域匹配的名称从不转发,仅从 DHCP 或 HOSTS 文件解析" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "本地域名后缀将添加到 DHCP 和 HOSTS 文件条目" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "本地服务器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "如果有多个 IP 可用,则根据请求来源的子网来本地化主机名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "本地化查询" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "信道道已被锁定为 %s,因为该信道被 %s 使用" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "日志记录等级" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "记录查询日志" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "日志" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "登录" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "退出" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "信号丢失秒数(LOSS)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "网络地址的起始分配基址。" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "MAC" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC 地址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "MAC 地址过滤" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC 过滤" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "MAC 列表" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "MAP / LW4over6" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "MAP 规则无效" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "MD5" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "确保使用以下命令来复制根文件系统:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "手动" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "最大可达数据速率(ATTNDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "允许的最大监听间隔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "允许的最大 DHCP 租用数" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "允许的最大并发 DNS 查询数" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "允许的最大 EDNS.0 UDP 数据包大小" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "调制解调器就绪的最大等待时间(秒)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" -"名称的最大长度为 15 个字符,包含根据协议类型,网桥自动添加上的名字前缀(br-、" -"6in4-、pppoe- 等)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "最大地址分配数量。" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "中等" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "内存" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "内存使用率(%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "Mesh ID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "跃点数" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "数据包镜像监听端口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "数据包镜像源端口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "缺少协议 %q 的协议扩展" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "移动域" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "模式" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "主机型号" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "调制解调器默认" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "调制解调器设备" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "调制解调器信息查询失败" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "调制解调器初始化超时" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "监听" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "需要更多字符" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "挂载项目" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "挂载点" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "挂载点" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "挂载点 - 存储区" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "挂载点 - 交换区" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "配置存储设备挂载到文件系统中的位置和参数" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "自动挂载未专门配置挂载点的分区" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "挂载选项" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "挂载点" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "自动挂载未专门配置的 swap 分区" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "已挂载的文件系统" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "下移" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "上移" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr "NAS ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "NAT-T 模式" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "NAT64 前缀" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "NCM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "NDP 代理" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "NT 域" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "候选 NTP 服务器" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "名称" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "新接口的名称" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "新网络的名称" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "导航" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "子网掩码" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "网络" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "网络工具" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "网络启动镜像" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "网络设备活动(%s)" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "网络设备不存在" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "无接口的网络。" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "前进 »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "无" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "本接口未配置 DHCP 服务器" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "无 NAT-T" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "未找到文件" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "无可用信息" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "无匹配的前缀委托" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "禁用无效信息缓存" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "本设备未配置网络" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "未指定网络名" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "未设置密码!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "当前还没有公钥。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "本链没有规则" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "还没有可用的扫描结果…" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "未指定区域" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "噪声" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "噪声容限(SNR)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "噪声:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "非抢占 CRC 错误(CRC_P)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "非全部地址" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "无" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "正常" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "未找到" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "未关联" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "未连接" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "开机时不启动" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "注意:接口名称长度" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "注意" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "缓存的 DNS 条目数量(最大 10000,0 表示不缓存)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "用于压缩的并行线程数" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "混淆组密码" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "混淆密码" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "获取 IPv6 地址" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "关闭时间" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"在此页面,您可以配置网络接口。您可以勾选“桥接接口”,并输入由空格分隔的多个网" -"络接口的名称来桥接多个接口。接口名称中可以使用 VLAN 记号 INTERFACE.VLANNR(例如:" -"eth0.1)。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "通电时间" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "请指定主机名或MAC地址!" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "一个或多个选项值有误!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "选项卡上存在一个或多个无效/必需值" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "一个或多个必选项值为空!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "打开列表…" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "OpenConnect (CISCO AnyConnect)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "工作频率" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "选项已更改" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "选项已移除" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "可选" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" -"可选,传出加密数据包的 32 位标记。请输入十六进制值,以 0x 开头。" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" -"可选,允许的值:“eui64”、“random”和其他固定值(例如:“::1”或“::1:2”)。当从授" -"权服务器获取到 IPv6 前缀(如“a:b:c:d::”),使用后缀(如 “::1”)合成 IPv6 地址" -"(“a:b:c:d::1”)分配给此接口。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "可选,Base64 编码的预共享密钥。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "可选,为此 Peer 创建允许 IP 的路由。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "可选,Peer 的描述。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "可选,Peer 的主机。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "可选,隧道接口的最大传输单元。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "可选,Peer 的端口。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" -"可选,Keep-Alive 消息之间的秒数,默认为 0(禁用)。如果此设备位于 NAT 之后," -"建议使用的值为 25。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "可选,用于传出和传入数据包的 UDP 端口。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "选项" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "其余:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "出口" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "出站:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "网络出口" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "重设 MAC 地址" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "重设 MTU" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "重设 TOS" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "重设 TTL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "重设默认接口名称" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "重设 DHCP 响应网关" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "重设发送到客户端的子网掩码。" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "重设内部路由表" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "总览" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "用户名" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "PAP/CHAP 密码" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "PAP/CHAP 用户名" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "PIN 码被拒绝" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "R1 推送 PMK" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "PPPoA 封包" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "PPPoSSH" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "PSID 偏移" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "PSID-位长" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "PTM/EFM(分组传输模式)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "需要 libiwinfo 软件包!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "数据包" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "区域 %q" - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "密码" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "密码验证" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "私有密钥" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "内部私钥的密码" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "密码强度" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "密码 2" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "粘贴或拖动 SSH 密钥文件……" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "CA 证书路径" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "客户端证书路径" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "私钥路径" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "内部 CA 证书的路径" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "内部客户端证书的路径" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "内部私钥的路径" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "峰值:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "要分配的 Peer IP 地址" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "Peer 地址缺失" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "Peers" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "完全正向保密" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "执行重启" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "执行重置" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "持续 Keep-Alive" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "物理速率:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "物理设置" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "数据包" - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "请输入用户名和密码。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "策略" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "轮询间隔" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "状态查询的轮询间隔,以秒为单位" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "端口" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "端口状态:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "电源管理模式" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "抢占式 CRC 错误(CRCP_P)" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "首选 LTE" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "首选 UMTS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "分发前缀" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "预共享密钥" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "在指定数量的 LCP 响应故障后假定链路已断开,0 为忽略故障" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "不监听这些接口。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "禁止客户端间通信" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "私钥" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "执行" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "系统进程" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "配置文件" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "协议" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "协议" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "新接口的协议" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "未安装协议支持" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "作为 NTP 服务器提供服务" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "添加新网络" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "伪装 Ad-Hoc(ahdemo)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "公钥" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" -"与使用普通密码相比,公钥允许无密码 SSH 登录具有更高的安全性。要将新密钥上传到" -"设备,请粘贴 OpenSSH 兼容的公钥行或将 .pub 文件拖到输入字段中。" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "分配到此设备的公共前缀,用以分发到客户端。" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "QMI 蜂窝" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "质量" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" -"查询所有可用的上游 DNS 服务器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "R0 密钥生存期" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "R1 密钥持有者" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "RFC3947 NAT-T 模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "RSSI 加入阈值" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTS 阈值" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "接收" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "接收速率" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Radius 计费端口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Radius 计费密钥" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Radius 计费服务器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Radius 认证端口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Radius 认证密钥" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Radius 认证服务器" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "原始 16 进制编码的字节。除非您的 ISP 要求,否则请留空" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -"根据 /etc/ethers 来配置 DHCP 服务器" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" -"确定要删除此接口?删除操作无法撤消!若您删除此接口,可能导致无法再访问此设备" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"确定要删除此无线网络?删除操作无法撤销!若您删除此无线网络,可能导致无法再访" -"问此设备。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "确定要放弃所有更改?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "确定要切换协议?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "实时连接" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "实时信息" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "实时负载" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "实时流量" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "实时无线" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "重关联截止时间" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "重绑定保护" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "重启" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "正在重启…" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "重启您设备上的系统" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "接收" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "接收天线" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "推荐,WireGuard 接口的 IP 地址。" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "重连此接口" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "引用" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "中继" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "中继桥" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "网络间中继" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "中继桥" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "远程 IPv4 地址" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "远程 IPv4 地址或 FQDN" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "移除" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "重新扫描" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "重置条目" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "重置无线配置" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "请求 IPv6 地址" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "请求指定长度的 IPv6 前缀" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "必须" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "某些 ISP 需要,例如:同轴线网络 DOCSIS 3" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "必须,此接口的 Base64 编码私钥。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "必须,Peer 的 Base64 编码公钥。" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" -"必须,允许该 Peer 在隧道中使用的 IP 地址和前缀,通常是该 Peer 的隧道 IP 地址" -"和通过隧道的路由网络。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" -"需要完整版本的 wpad/hostapd,并且 WiFi 驱动支持
    (截止 2019.01,已知支持" -"此特性的驱动有 ath9k、ath10k、mwlwifi 和 mt76)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "需要上级支持 DNSSEC,验证未签名的响应确实是来自未签名的域名" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "复位" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "复位计数器" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "恢复到出厂设置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "HOSTS 和解析文件" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "解析文件" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "重启" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "重启防火墙" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "重启无线接口" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "恢复" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "恢复配置" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "显示/隐藏 密码" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "恢复" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "恢复更改" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "恢复请求失败,状态 %h" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "正在恢复配置…" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "Root" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "TFTP 服务器的根目录" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "根目录准备" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "路由允许的 IP" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "路由类型" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "路由通告服务" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "主机密码" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "路由表" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "路由表描述了数据包的可达路径。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "规则" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "挂载设备前运行文件系统检查" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "文件系统检查" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "SHA256" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "SNR" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "SSH 访问" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "SSH 服务器地址" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "SSH 服务器端口" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "SSH 用户名" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH 密钥" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "交换分区" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "保存" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "保存并应用" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "保存 mtdblock" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "保存 mtdblock 内容" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "正在保存密钥…" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "扫描" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "扫描请求失败" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "计划任务" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "添加的节点" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "移除的节点" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "详参“mount”联机帮助" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" -"即使映像文件检查失败,也“强制升级”以烧录映像。仅在您确定固件正确且适用于您的" -"设备时使用!" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "定时发送 LCP 响应(秒),仅在结合了故障阈值时有效" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "隔离客户端" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "服务器设置" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "服务名" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "服务类型" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "服务" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "会话已过期" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "将 VPN 设置为默认路由" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" -"不管接口的链路状态如何,总是用应用设置(如果勾选,链路状态变更将不再触发 " -"hotplug 事件处理)。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -msgid "Set up Time Synchronization" -msgstr "设置时间同步" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "设置 PLMN 失败" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "设置操作模式失败" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "配置 DHCP 服务器" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "严重误码秒(SES)" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "Short GI" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "Short Preamble" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "显示当前备份文件列表" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "显示空链" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "关闭此接口" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "信号" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "信号衰减(SATN)" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "信号:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "大小" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "DNS 查询缓存的大小" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "ZRam 设备的大小(以兆字节为单位)" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "跳过" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "跳到内容" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "跳转到导航" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "时隙" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "软件 VLAN" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "一些项目的值无效,无法保存!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "对不起,请求的目标未找到。" - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "对不起,服务器遇到未知错误。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"抱歉,您的设备暂不支持 sysupgrade 升级,需手动更新固件。请参考 Wiki 中关于此" -"设备的固件更新说明。" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "源地址" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "指定设备的挂载目录" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "指定此 Dropbear 实例的监听端口" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "判定主机已下线的最少 ARP 请求失败数" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "判断主机已下线的超时时间(秒)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "指定 TOS(服务类型)。" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "为封装数据包设置 TTL(生存时间),缺省值:64" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "设置 MTU(最大传输单位),缺省值:1280 bytes" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "在此指定密钥。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "开始" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "启动优先级" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "开始应用配置…" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "正在启动无线扫描…" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "启动项" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "静态 IPv4 路由" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "静态 IPv6 路由" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "静态地址分配" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "静态路由" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "静态地址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"静态租约用于给 DHCP 客户端分配固定的 IP 地址和主机标识。只有指定的主机才能连" -"接,并且接口须为非动态配置。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "非活动站点限制" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "状态" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "关闭" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "严谨查序" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "强" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "提交" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "不记录日志" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "不记录这些协议的常规操作日志。" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "Swap" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Swap 节点" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "交换机" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "交换机 %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "交换机 %q(%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "交换机 %q 具有未知的拓扑结构,VLAN 设置可能不正确。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "交换机端口掩码" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "交换机 VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "切换协议" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "切换到 CIDR 列表记法" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "交换口活动(%s)" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "与 NTP 服务器同步" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "同步浏览器时间" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "正在同步…" - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "系统" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "系统日志" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "系统属性" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "系统日志缓冲区大小" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "TFTP 设置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "TFTP 服务器根目录" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "发送" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "发送速率" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "表" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "对象" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "目标网络" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "关闭" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"“设备配置”区域可配置无线的硬件参数,比如:信道、发射功率或发射天线,如果此无" -"线硬件支持多 SSID,则全部 SSID 共用此设备配置。“接口配置”区域则可配置接口各自" -"参数,如工作模式、加密方式等。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "软件包 libiwinfo-lua 未安装,必须安装此组件以配置无线!" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "HE.net 客户端更新设置已经被改变,您现在必须使用用户名代替用户 ID!" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "远程隧道端的 IPv4 地址或完整域名。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "运营商特定的 IPv6 前缀,通常以 :: 为结尾" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"合法字符:A-Z, a-z, 0-9_" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "备份存档似乎不是有效的 gzip 文件。" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "由于以下错误,配置文件无法被加载:" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" -"在应用挂起的更改后 %d 秒内无法连接到此设备,出于安全原因导致配置回滚。如果您" -"认为配置的更改是正确的,请执行强制应用。或者您可以在再次尝试应用之前解除此警" -"告并编辑配置,或者恢复所有挂起的更改以保持当前正在工作的配置状态。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "存储器或分区的设备文件(例如:/dev/sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"用于格式化存储器的文件系统(例如:ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"固件已上传,请注意核对文件大小和校验值!
    点击下面的“继续”开始刷写,刷新" -"过程中切勿断电!" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "以下更改已恢复" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "以下规则当前在系统中处于活动状态。" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "已添加给定的 SSH 公钥。" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "给定的 SSH 公钥无效。请提供适当的公共 RSA 或 ECDSA 密钥。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "给定的网络名重复" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "本机的硬件不支持多 SSID,如果继续,现有配置将被替换。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "IPv4 前缀长度(位),其余的用在 IPv6 地址。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "IPv6 前缀长度(位)" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "所创建隧道的本地 IPv4 地址(可选)。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"本设备可以划分为多个 VLAN," -"并支持电脑间的直接通讯。VLAN 也常用于分割不同网段。默认通常是一条上行端口连接 ISP,其余端口为本地子" -"网。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "所选的协议需要分配设备" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "提交的安全令牌无效或已过期!" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "系统正在擦除配置分区,完成后会自动重启。" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"正在刷写系统…
    切勿关闭电源! DO NOT POWER OFF THE DEVICE!
    等待数分" -"钟后即可尝试重新连接到路由。您可能需要更改计算机的 IP 地址以重新连接。" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "系统密码已更改成功。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "不支持所上传的映像文件格式,请选择适合当前平台的通用映像文件。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "主题" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "没有已分配的租约。" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "没有待应用的更改。" - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "没有挂起的更改可恢复!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "没有挂起的更改!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "尚未分配设备,请在“物理设置”选项卡中选择网络设备" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "尚未设置密码。请为 root 用户设置密码以保护主机并启用 SSH。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "中继的 IPv4 地址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" -"此文件包含类似于“server=/domain/1.2.3.4”或“server=1.2.3.4”的行,用于解析特定" -"域名或指定上游 DNS 服务器。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"系统升级时要保存的配置文件和目录的清单。目录 /etc/config/ 内更改过的文件以及" -"部分其他配置会被自动保存。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "如果更新密钥没有设置的话,隧道的“更新密钥”或者账户密码必须填写。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"此处为 /etc/rc.local 的内容。启动脚本插入到“exit 0”之前即可随系统启动运行。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "隧道代理分配的本地终端地址,通常以 ...:2/64 结尾" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"这是本地网络中唯一的 DHCP 服务器" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "登录账户时填写的用户名" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "这是隧道代理分配给您的路由前缀,供客户端使用" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "自定义系统 crontab 中的计划任务。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "这通常是隧道代理所管理的最近的 PoP 的地址" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "系统中正在运行的进程概况和它们的状态信息。" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "活跃的网络连接概况。" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "尚无任何配置" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "时间同步" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "尚未配置时间同步。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "重新加密 GTK 的时间间隔" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "时区" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "去登录…" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"上传备份存档以恢复配置。要将固件恢复到初始状态,请单击“执行重置”(仅 " -"squashfs 格式的固件有效)。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "Tone" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "可用数" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "Traceroute" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "流量" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "传输" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "传送速率" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "传送" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "无线电功率" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "传送天线" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "触发器" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "触发模式" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "隧道 ID" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "隧道接口" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "隧道链接" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "传输功率" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "类型" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "仅 UMTS(WCDMA)" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USB 设备" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "USB 接口" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "无法确认设备名称" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "无法确认外部 IP 地址" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "无法确认上游接口" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "无法调度" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "无法获取客户端 ID" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "无法解析 AFTR 主机名" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "无法解析 Pear 主机名" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "不可用秒数(UAS)" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "未知" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "未知错误(%s)" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "不配置协议" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "卸载分区" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "未命名的密钥" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "未保存的配置" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "不支持的 MAP 类型" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "不支持的调制解调器" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "不支持的协议类型" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "上移" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"上传一个 sysupgrade 格式的固件映像文件以替换当前运行的固件。勾选“保留配置”以" -"使更新后的系统仍然使用当前的系统配置(新的固件需要和当前固件兼容)。" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "上传备份…" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "上传的文件" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "运行时间" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "使用 /etc/ethers 配置" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "使用 DHCP 网关" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "使用对端通告的 DNS 服务器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "参考 ISO/IEC 3166 alpha2 国家代码。" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "隧道接口的 MTU" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "隧道接口的 TTL" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "作为外部 overlay 使用(/overlay)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "作为根文件系统使用(/)" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "使用广播标签" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "使用内置的 IPv6 管理" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "使用自定义的 DNS 服务器" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "使用默认网关" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "使用网关跃点" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "使用路由表" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"使用“添加”按钮来增加新的租约条目。“IPv4 地址”和“主机名”字段的值将被固定分配" -"给“MAC 地址”字段标识的主机,“租期”是一个可选字段,可为每个主机单独设定 DHCP " -"租期的时长,例如:12h、3d、infinite,分别表示 12 小时、3 天、永久。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "已用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "启用密码组" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" -"用于两种不同的用途:RADIUS NAS ID 和 802.11r R0KH-ID,普通 WPA(2)-PSK 不需" -"要。" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "用户证书(PEM)" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "用户密钥(PEM)" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "用户名" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "VDSL" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "%q 上的 VLAN" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "%q(%s)上的 VLAN" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "VPN 本地地址" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "VPN 本地端口" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "VPN 服务器" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "VPN 服务器端口" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "VPN 服务器证书的 SHA1 哈希值" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "VPNC(CISCO 3000 和其他 VPN)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "Vendor" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "请求 DHCP 时发送的 Vendor Class 选项" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "验证" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "虚拟动态接口" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "WEP 开放式系统" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "WEP 共享密钥" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "WEP 密钥" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "WMM 模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "WPA 密钥" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"WPA 加密需要安装 wpa_supplicant(客户端模式)或安装 hostapd(接入点 AP、点对" -"点 Ad-Hoc 模式)。" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "正在应用更改…" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "等待命令执行完成…" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "等待应用配置… %d 秒" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "等待设备…" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "警告" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "警告:一些未保存的配置将在重启后丢失!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "弱" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" -"使用 PSK 时,可以自动生成 PMK,因此以下 R0/R1 密钥选项不生效。若要使用 R0 和 " -"R1 密钥则禁用此选项。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "Wi-Fi 活动(%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "Wi-Fi 客户端关联(%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "Wi-Fi 数据接收(%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "Wi-Fi 数据传输(%s)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "Wi-Fi 开启(%s)" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "频宽" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "WireGuard VPN" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "无线" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "无线适配器" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "无线网络" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "无线概况" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "无线安全" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "无线未开启" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "无线未关联" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "无线重启中…" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "无线网络已禁用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "无线网络已启用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "将收到的 DNS 请求写入系统日志" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "将系统日志写入文件" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "是" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"在此启用或禁用已安装的启动脚本,更改在设备重启后生效。
    警告:如" -"果禁用了必要的启动脚本,比如“network”,可能会导致无法访问设备!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "必须开启浏览器的 JavaScript 支持,否则 LuCI 无法正常工作。" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "ZRam 压缩算法" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "ZRam 压缩流" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "ZRam 设置" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "ZRam 大小" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "任意" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "自动" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "桥接的" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "创建" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "创建:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "为指定接口创建桥接" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "禁用" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "已禁用" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "过期时间" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"用于存放已分配的 DHCP 租约的文件" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "转发" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "全双工" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "半双工" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "十六进制编码值" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "隐藏" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "混合模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "如果对象是一个网络" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "输入" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "密钥在 8 到 63 个字符之间" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "密钥为 5 或 13 个字符" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "本地 DNS 解析文件" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "分钟" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "混合 WPA/WPA2" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "否" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "未连接" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "非空值" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "不存在" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "关" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "开" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "开放式" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "输出" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "覆盖" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "正十进制值" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "正整数值" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "随机" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "中继模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "已路由" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "秒" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "服务器模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "有状态" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "无状态" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "无状态 + 有状态" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "已标记" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "时间单位(TUs / 1.024ms)[1000-65535]" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "唯一值" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "未知" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "无限制" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "未指定" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "不指定或新建:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "未标记" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "有效 IP 地址" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "有效 IP 地址或前缀" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "有效 IPv4 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "有效 IPv4 地址" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "有效 IPv4 地址或网络" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "有效 IPv4 address:port" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "有效 IPv4 网络" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "有效 IPv4 或 IPv6 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "有效 IPv4 前缀值(0-32)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "有效 IPv6 CIDR" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "有效 IPv6 地址" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "有效 IPv6 地址或前缀" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "有效 IPv6 主机 ID" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "有效 IPv6 网络" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "有效 IPv6 前缀值(0-128)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "有效 MAC 地址" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "有效 UCI 识别" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "有效 UCI 标识符,主机名或 IP 地址" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "有效 address:port" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "有效日期(YYYY-MM-DD)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "有效十进制值" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "有效十六进制 WEP 密钥" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "有效十六进制 WPA 密钥" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "有效 host:port" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "有效主机名" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "有效主机名或 IP 地址" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "有效整数值" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "地址/网络掩码表示法中的有效网络" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "有效电话号码(0-9、“*”、“#”、“!”或“.”)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "有效端口或端口范围(port1-port2)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "有效端口值" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "有效时间(HH:MM:SS)" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "%d 和 %d 字符之间的值" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "%f 和 %f 之间的值" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "值大于或等于 %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "值小于或等于 %f" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "值至少为 %d 个字符" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "值至多为 %d 个字符" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "是" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« 后退" - -#~ msgid "Flashmemory write access (%s)" -#~ msgstr "闪存写访问(%s)" - -#~ msgid "" -#~ "one of:\n" -#~ " - %s" -#~ msgstr "" -#~ "其一:\n" -#~ " - %s" - -#~ msgid "" -#~ "Your Internet Explorer is too old to display this page correctly. Please " -#~ "upgrade it to at least version 7 or use another browser like Firefox, " -#~ "Opera or Safari." -#~ msgstr "" -#~ "您的 IE 浏览器太老了,无法正常显示这个页面!请更新到 IE7 及以上或使用其他" -#~ "浏览器,如 Firefox、Opera、Safari。" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "When using a PSK, the PMK can be generated locally without inter AP " -#~ "communications" -#~ msgstr "当使用 PSK 时,PMK 可以在没有 AP 间通信的情况下在本地生成" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "请在此处粘贴 SSH 公钥,每行一个,用于 SSH 公钥认证。" - -#~ msgid "Password successfully changed!" -#~ msgstr "密码更改成功!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "未知错误,密码未更改!" - -#~ msgid "Design" -#~ msgstr "主题" - -#~ msgid "Available packages" -#~ msgstr "可用软件包" - -#~ msgid "Bind only to specific interfaces rather than wildcard address." -#~ msgstr "仅绑定到特定接口,而不是全部地址。" - -#~ msgid "" -#~ "Build/distribution specific feed definitions. This file will NOT be " -#~ "preserved in any sysupgrade." -#~ msgstr "由固件指定的软件源。此处的设置在任何系统升级中都不会被保留。" - -#~ msgid "" -#~ "Custom feed definitions, e.g. private feeds. This file can be preserved " -#~ "in a sysupgrade." -#~ msgstr "自定义软件源地址,例如:私有的软件源。此文件在系统升级时将被保留。" - -#~ msgid "Custom feeds" -#~ msgstr "自定义软件源" - -#~ msgid "Displaying only packages containing" -#~ msgstr "只显示有内容的软件包" - -#~ msgid "Distribution feeds" -#~ msgstr "发行版软件源" - -#~ msgid "Download and install package" -#~ msgstr "下载并安装软件包" - -#~ msgid "Filter" -#~ msgstr "过滤器" - -#~ msgid "Find package" -#~ msgstr "查找软件包" - -#~ msgid "Free space" -#~ msgstr "空闲空间" - -#~ msgid "General options for opkg" -#~ msgstr "OPKG 基础配置" - -#~ msgid "Install" -#~ msgstr "安装" - -#~ msgid "Installed packages" -#~ msgstr "已安装软件包" - -#~ msgid "No package lists available" -#~ msgstr "无可用软件列表" - -#~ msgid "OK" -#~ msgstr "确认" - -#~ msgid "OPKG-Configuration" -#~ msgstr "OPKG 配置" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "软件包列表已超过 24 小时未更新" - -#~ msgid "Package name" -#~ msgstr "软件包名称" - -#~ msgid "Please update package lists first" -#~ msgstr "请先更新软件包列表" - -#~ msgid "Size (.ipk)" -#~ msgstr "大小(.ipk)" - -#~ msgid "Software" -#~ msgstr "软件包" - -#~ msgid "Update lists" -#~ msgstr "刷新列表" - -#~ msgid "Version" -#~ msgstr "版本" - -#~ msgid "none" -#~ msgstr "无" - -#~ msgid "Disable DNS setup" -#~ msgstr "停用 DNS 设定" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4 和 IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "仅 IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "仅 IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "有效租期" - -#~ msgid "Multicast address" -#~ msgstr "多播地址" - -#~ msgid "Protocol family" -#~ msgstr "协议族" - -#~ msgid "No chains in this table" -#~ msgstr "本表中没有链" - -#~ msgid "Configuration files will be kept." -#~ msgstr "配置文件将被保留。" - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "注意:配置文件将被删除。" - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "激活此网络" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Hermes 802.11b 无线控制器" - -#~ msgid "Interface is shutting down..." -#~ msgstr "正在关闭接口..." - -#~ msgid "Interface reconnected" -#~ msgstr "接口已重新连接" - -#~ msgid "Interface shut down" -#~ msgstr "接口已关闭" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Prism2/2.5/3 802.11b 无线控制器" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "RaLink 802.11%s 无线控制器" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "确定要关闭接口 \"%s\"?\\n如果您正在使用此接口连接路由器,关闭此网络可能导" -#~ "致连接断开!" - -#~ msgid "Reconnecting interface" -#~ msgstr "重连接口中..." - -#~ msgid "Shutdown this network" -#~ msgstr "关闭此网络" - -#~ msgid "Wireless restarted" -#~ msgstr "无线已重启" - -#~ msgid "Wireless shut down" -#~ msgstr "无线已关闭" - -#~ msgid "Device unreachableX" -#~ msgstr "无法连接到设备!" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP 分配" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "DHCPv6 分配" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "确定要删除此接口?删除操作无法撤销!\\n删除此接口,可能导致无法再访问路由" -#~ "器!" - -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "确定要关闭此网络?\\n如果您正在使用此接口连接路由器,关闭此网络可能导致连" -#~ "接断开!" - -#~ msgid "Sort" -#~ msgstr "排序" - -#~ msgid "help" -#~ msgstr "帮助" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "IPv4 WAN 状态" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "IPv6 WAN 状态" diff --git a/luci-base/po/zh-tw/base.po b/luci-base/po/zh-tw/base.po deleted file mode 100644 index 5f7337281..000000000 --- a/luci-base/po/zh-tw/base.po +++ /dev/null @@ -1,6545 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2014-05-21 10:34+0200\n" -"Last-Translator: omnistack \n" -"Language-Team: none\n" -"Language: zh_TW\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: Pootle 2.0.6\n" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 -msgid "%.1f dB" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:109 -msgid "%d Bit" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/luci.js:307 -msgid "%d invalid field(s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:281 -msgid "%s is untagged in multiple VLANs!" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:160 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:133 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:128 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:168 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:169 -msgid "(%d minute window, %d second interval)" -msgstr "(%d 分鐘資訊,每 %d 秒更新)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:35 -msgid "(%s available)" -msgstr "(%s 可用)" - -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:38 -#: modules/luci-base/luasrc/view/cbi/firewall_zoneforwards.htm:41 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:88 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:91 -msgid "(empty)" -msgstr "(空白)" - -#: modules/luci-base/luasrc/view/cbi/network_netinfo.htm:23 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:58 -msgid "(no interfaces attached)" -msgstr "(未連接界面)" - -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:48 -msgid "-- Additional Field --" -msgstr "-- 更多選項 --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 -#: modules/luci-base/luasrc/view/cbi/header.htm:5 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 -msgid "-- Please choose --" -msgstr "-- 請選擇 --" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 -#: modules/luci-base/luasrc/view/cbi/header.htm:6 -msgid "-- custom --" -msgstr "-- 自訂 --" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:89 -msgid "-- match by device --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:73 -msgid "-- match by label --" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:59 -msgid "-- match by uuid --" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:24 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:27 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:44 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:23 -msgid "-- please select --" -msgstr "-- 請選擇 --" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:382 -msgid "0 = not using RSSI threshold, 1 = do not change driver default" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 -msgid "1 Minute Load:" -msgstr "1分鐘負載" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:272 -msgid "15 Minute Load:" -msgstr "15分鐘負載" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:924 -msgid "4-character hexadecimal ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:18 -msgid "464XLAT (CLAT)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:262 -msgid "5 Minute Load:" -msgstr "5分鐘負載" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 -msgid "6-octet identifier as a hex string - no colons" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:891 -msgid "802.11r Fast Transition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1157 -msgid "802.11w Association SA Query maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1166 -msgid "802.11w Association SA Query retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1133 -msgid "802.11w Management Frame Protection" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1156 -msgid "802.11w maximum timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1165 -msgid "802.11w retry timeout" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:399 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:182 -msgid "DNS query port" -msgstr "DNS 查詢通訊埠" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:173 -msgid "DNS server port" -msgstr "DNS 伺服器通訊埠" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:122 -msgid "" -"DNS servers will be queried in the " -"order of the resolvfile" -msgstr "將會按照指定的順序查詢DNS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:388 -msgid "ESSID" -msgstr "ESSID" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:306 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:45 -msgid "IPv4-Address" -msgstr "IPv4-位置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:30 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:75 -msgid "IPv4-Gateway" -msgstr "IPv4-閘道" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:506 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "IPv4-Netmask" -msgstr "IPv4-遮罩" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -msgid "" -"IPv6-Address or Network " -"(CIDR)" -msgstr "" -"IPv6-位置或網路(CIDR)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:72 -msgid "IPv6-Gateway" -msgstr "IPv6-閘道" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:325 -msgid "IPv6-Suffix (hex)" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "LED Configuration" -msgstr "LED 設定" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:35 -msgid "LED Name" -msgstr "LED 名稱" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:297 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:46 -msgid "MAC-Address" -msgstr "MAC-位置" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:312 -msgid "DUID" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:191 -msgid "" -"Max. DHCP leases" -msgstr "" -"最大 DHCP 分配數量" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:201 -msgid "" -"Max. EDNS0 packet size" -msgstr "" -"最大 EDNS0 封包大小" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:211 -msgid "Max. concurrent queries" -msgstr "最大同時查詢數量" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:10 -msgid "" -"
    Note: you need to manually restart the cron service if the crontab file " -"was empty before editing." -msgstr "注意: 如果這個檔案在編輯之前是空的,您將需要重新啟動cron服務" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:39 -msgid "A new login is required since the authentication session expired." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:114 -msgid "A43C + J43 + A43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:115 -msgid "A43C + J43 + A43 + V43" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:127 -msgid "ADSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:103 -msgid "ANSI T1.413" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:33 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:47 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:23 -msgid "APN" -msgstr "APN" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:56 -msgid "ARP retry threshold" -msgstr "ARP重試門檻" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:122 -msgid "ATM (Asynchronous Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:144 -msgid "ATM Bridges" -msgstr "ATM橋接" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:178 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:21 -msgid "ATM Virtual Channel Identifier (VCI)" -msgstr "ATM虛擬通道識別(VCI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:179 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:26 -msgid "ATM Virtual Path Identifier (VPI)" -msgstr "ATM虛擬路徑識別(VPI)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:145 -msgid "" -"ATM bridges expose encapsulated ethernet in AAL5 connections as virtual " -"Linux network interfaces which can be used in conjunction with DHCP or PPP " -"to dial into the provider network." -msgstr "" -"ATM橋接是以AAL5協定封裝乙太網路如同虛擬Linux網路界面卡,用於連接DHCP或PPP來撥" -"號連接到網際網路。" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:184 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:16 -msgid "ATM device number" -msgstr "ATM裝置號碼" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:119 -msgid "ATU-C System Vendor ID" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 -msgid "Access Concentrator" -msgstr "接入集線器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -msgid "Access Point" -msgstr "存取點 (AP)" - -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:8 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:12 -msgid "Actions" -msgstr "動作" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:69 -msgid "Active IPv4-Routes" -msgstr "啟用 IPv4-路由" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:97 -msgid "Active IPv6-Routes" -msgstr "啟用 IPv6-路由" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:15 -msgid "Active Connections" -msgstr "啟用連線" - -#: modules/luci-base/luasrc/view/lease_status.htm:68 -msgid "Active DHCP Leases" -msgstr "已分配的DHCP租用" - -#: modules/luci-base/luasrc/view/lease_status.htm:89 -msgid "Active DHCPv6 Leases" -msgstr "已分配的DHCPv6租用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:370 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:12 -msgid "Ad-Hoc" -msgstr "Ad-Hoc" - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:25 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:189 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:197 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:39 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:47 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:54 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Add" -msgstr "增加" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:60 -msgid "Add IPv4 address…" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:129 -msgid "Add IPv6 address…" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:143 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:149 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:38 -msgid "Add key" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:109 -msgid "Add local domain suffix to names served from hosts files" -msgstr "添加本地網域微碼到HOSTS檔案" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:50 -msgid "Add new interface..." -msgstr "增加新界面" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:60 -msgid "Additional Hosts files" -msgstr "額外的HOST檔案" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:116 -msgid "Additional servers file" -msgstr "額外的伺服器設定檔" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:55 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:81 -msgid "Address" -msgstr "位置" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:12 -msgid "Address to access local relay bridge" -msgstr "存取本地中繼橋接位置" - -#: modules/luci-base/luasrc/controller/admin/index.lua:29 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:14 -msgid "Administration" -msgstr "管理" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 -msgid "Advanced" -msgstr "進階" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:176 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:143 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:364 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:50 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:34 -msgid "Advanced Settings" -msgstr "進階設定" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:110 -msgid "Aggregate Transmit Power(ACTATP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 -msgid "Alert" -msgstr "警示" - -#: modules/luci-base/luasrc/model/network.lua:1416 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:78 -msgid "Alias Interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:66 -msgid "Alias of \"%s\"" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:126 -msgid "All Servers" -msgstr "查詢所有伺服器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:69 -msgid "" -"Allocate IP addresses sequentially, starting from the lowest available " -"address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:68 -msgid "Allocate IP sequentially" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:30 -msgid "Allow SSH password authentication" -msgstr "允許 SSH 密碼驗證" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:545 -msgid "Allow AP mode to disconnect STAs based on low ACK condition" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:589 -msgid "Allow all except listed" -msgstr "僅允許列表外" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:236 -msgid "Allow legacy 802.11b rates" -msgstr "允許舊型 802.11b 頻率" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 -msgid "Allow listed only" -msgstr "僅允許列表內" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:156 -msgid "Allow localhost" -msgstr "允許本機" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:47 -msgid "Allow remote hosts to connect to local SSH forwarded ports" -msgstr "允許遠端主機連接到本機SSH轉送通訊埠" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:38 -msgid "Allow root logins with password" -msgstr "允許root登入" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:39 -msgid "Allow the root user to login with password" -msgstr "允許 root 使用者登入" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:157 -msgid "" -"Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services" -msgstr "允許127.0.0.0/8範圍內的上游回應,例如:RBL服務" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:135 -msgid "Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:549 -msgid "Always announce default router" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:50 -msgid "Always off (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:48 -msgid "Always on (%s)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:259 -msgid "" -"Always use 40MHz channels even if the secondary channel overlaps. Using this " -"option does not comply with IEEE 802.11n-2009!" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:95 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:102 -msgid "Annex" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:96 -msgid "Annex A + L + M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:104 -msgid "Annex A G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:105 -msgid "Annex A G.992.2" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:106 -msgid "Annex A G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:107 -msgid "Annex A G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:97 -msgid "Annex B (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:100 -msgid "Annex B G.992.1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:101 -msgid "Annex B G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:102 -msgid "Annex B G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:98 -msgid "Annex J (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:108 -msgid "Annex L G.992.3 POTS 1" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:99 -msgid "Annex M (all)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:109 -msgid "Annex M G.992.3" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:110 -msgid "Annex M G.992.5" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:550 -msgid "Announce as default router even if no public prefix is available." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:555 -msgid "Announced DNS domains" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:554 -msgid "Announced DNS servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1093 -msgid "Anonymous Identity" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Anonymous Mount" -msgstr "自動掛載檔案系統" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Anonymous Swap" -msgstr "自動掛載swap分區" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:322 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:329 -msgid "Antenna 1" -msgstr "天線 1" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:323 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:330 -msgid "Antenna 2" -msgstr "天線 2" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:246 -msgid "Antenna Configuration" -msgstr "天線設定" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:60 -msgid "Any zone" -msgstr "任意區域" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:48 -msgid "Apply anyway" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:145 -msgid "Apply request failed with status %h" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:19 -msgid "Architecture" -msgstr "架構" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:118 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:19 -msgid "" -"Assign a part of given length of every public IPv6-prefix to this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:127 -msgid "Assign interfaces..." -msgstr "分配界面..." - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:124 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:24 -msgid "" -"Assign prefix parts using this hexadecimal subprefix ID for this interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:148 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:22 -msgid "Associated Stations" -msgstr "已連接裝置" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:161 -msgid "Associations" -msgstr "已連接裝置" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:39 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:37 -msgid "Auth Group" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1027 -msgid "Authentication" -msgstr "認證" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:29 -msgid "Authentication Type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:30 -msgid "Authoritative" -msgstr "授權" - -#: modules/luci-base/luasrc/view/sysauth.htm:17 -msgid "Authorization Required" -msgstr "請先登入" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 -msgid "Auto Refresh" -msgstr "自動更新" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:53 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:7 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:17 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:67 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:36 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:42 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:36 -msgid "Automatic" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/network/proto_hnet.lua:7 -msgid "Automatic Homenet (HNCP)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Automatically check filesystem for errors before mounting" -msgstr "在掛載前先檢查檔案系統中是否含有錯誤" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automatically mount filesystems on hotplug" -msgstr "在連接裝置後自動掛載檔案系統" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automatically mount swap on hotplug" -msgstr "在連接裝置後自動掛載swap分區" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:61 -msgid "Automount Filesystem" -msgstr "自動掛載檔案系統" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:57 -msgid "Automount Swap" -msgstr "自動掛載swap分區" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:102 -msgid "Available" -msgstr "可用" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:290 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:300 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:357 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:367 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:377 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:255 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:265 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:275 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:333 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:343 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:362 -msgid "Average:" -msgstr "平均:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:116 -msgid "B43 + B43C" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:117 -msgid "B43 + B43C + V43" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:18 -msgid "BR / DMR / AFTR" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:75 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:159 -msgid "BSSID" -msgstr "BSSID" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:29 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:28 -msgid "Back" -msgstr "返回" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:48 -msgid "Back to Overview" -msgstr "返回至總覽" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "返回至設定" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:48 -msgid "Back to overview" -msgstr "返回至總覽" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:20 -msgid "Back to scan results" -msgstr "返回至掃描結果" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:17 -msgid "Backup" -msgstr "備份" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:38 -msgid "Backup / Flash Firmware" -msgstr "備份/升級韌體" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 -msgid "Backup file list" -msgstr "備份檔列表" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:51 -msgid "Bad address specified!" -msgstr "指定了錯誤的位置!" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:158 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:288 -msgid "Band" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:261 -msgid "Beacon Interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 -msgid "" -"Below is the determined list of files to backup. It consists of changed " -"configuration files marked by opkg, essential base files and the user " -"defined backup patterns." -msgstr "" -"下面是待備份的檔案清單。包含了更改的設定檔案、必要的基本檔案和使用者自訂的備" -"份檔案" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:253 -msgid "" -"Bind dynamically to interfaces rather than wildcard address (recommended as " -"linux default)" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind interface" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 -msgid "Bind the tunnel to this interface (optional)." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -msgid "Bitrate" -msgstr "傳輸速率" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:129 -msgid "Bogus NX Domain Override" -msgstr "忽略NX網域解析" - -#: modules/luci-base/luasrc/model/network.lua:1420 -msgid "Bridge" -msgstr "橋接" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "Bridge interfaces" -msgstr "橋接介面" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:185 -msgid "Bridge unit number" -msgstr "橋接單位號碼" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:250 -msgid "Bring up on boot" -msgstr "開機自動執行" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:35 -msgid "Broadcom 802.11%s Wireless Controller" -msgstr "Broadcom 802.11%s 無線控制器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:45 -msgid "Broadcom BCM%04x 802.11 Wireless Controller" -msgstr "Broadcom BCM%04x 802.11 無線控制器" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:18 -msgid "Buffered" -msgstr "已緩衝" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:75 -msgid "CA certificate; if empty it will be saved after the first connection." -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:13 -msgid "CPU usage (%)" -msgstr "CPU 使用率 (%)" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:53 -msgid "Call failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:14 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:52 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:176 -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:60 -msgid "Cancel" -msgstr "取消" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:6 -msgid "Category" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:44 -msgid "Caution: Configuration files will be erased" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:48 -msgid "Caution: System upgrade will be forced" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:234 -msgid "Chain" -msgstr "鏈" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:9 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:14 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:24 -msgid "Change login password" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:12 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -msgid "Changes" -msgstr "待修改" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:42 -msgid "Changes applied." -msgstr "修改已套用" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:156 -msgid "Changes have been reverted." -msgstr "設定值已還原." - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:30 -msgid "Changes the administrator password for accessing the device" -msgstr "修改管理員密碼" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:10 -msgid "Changing password…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:162 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:174 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "Channel" -msgstr "頻道" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:119 -msgid "" -"Channel %d is not available in the %s regulatory domain and has been auto-" -"adjusted to %d." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:229 -msgid "Check" -msgstr "檢查" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:65 -msgid "Check filesystems before mount" -msgstr "在掛載前先檢查檔案系統" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:47 -msgid "Check this option to delete the existing networks from this radio." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:27 -msgid "Checksum" -msgstr "效驗碼" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:70 -msgid "Choose mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:358 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:87 -msgid "" -"Choose the firewall zone you want to assign to this interface. Select " -"unspecified to remove the interface from the associated zone or " -"fill out the create field to define a new zone and attach the " -"interface to it." -msgstr "" -"選擇您要指定給這介面的防火牆區. 撿選unspecified以便從指定區域除這個" -"介面或者填寫create欄以便定義附加這個介面到一個新的區域上." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:403 -msgid "" -"Choose the network(s) you want to attach to this wireless interface or fill " -"out the create field to define a new network." -msgstr "" -"選擇您要附加到無線網路介面的多個網路或者填寫create 以便定義一個新的" -"網路." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 -msgid "Cipher" -msgstr "加密方式" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:61 -msgid "Cisco UDP encapsulation" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:18 -msgid "" -"Click \"Generate archive\" to download a tar archive of the current " -"configuration files." -msgstr "按下\"壓縮檔製作\"就能下載目前設定檔的tar格式的壓縮." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:65 -msgid "" -"Click \"Save mtdblock\" to download specified mtdblock file. (NOTE: THIS " -"FEATURE IS FOR PROFESSIONALS! )" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:369 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -msgid "Client" -msgstr "用戶端" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:55 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:52 -msgid "Client ID to send when requesting DHCP" -msgstr "當要求DHCP時要傳送的用戶識別碼ID" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:145 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:151 -msgid "Close" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:146 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:127 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:98 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:119 -msgid "" -"Close inactive connection after the given amount of seconds, use 0 to " -"persist connection" -msgstr "幾秒後關閉閒置的連線, 打0代表永遠連線" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "關閉清單" - -#: modules/luci-base/luasrc/view/lease_status.htm:77 -#: modules/luci-base/luasrc/view/lease_status.htm:98 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:118 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:24 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_status.htm:6 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:40 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:398 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:11 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:68 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:49 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:222 -msgid "Collecting data..." -msgstr "收集資料中..." - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:12 -msgid "Command" -msgstr "指令" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:64 -msgid "Comment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:185 -msgid "Common Configuration" -msgstr "一般設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1176 -msgid "" -"Complicates key reinstallation attacks on the client side by disabling " -"retransmission of EAPOL-Key frames that are used to install keys. This " -"workaround might cause interoperability issues and reduced robustness of key " -"negotiation especially in environments with heavy traffic load." -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:11 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:16 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/backupfiles.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:13 -msgid "Configuration" -msgstr "設定" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:63 -msgid "Configuration failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:42 -msgid "Configuration files will be kept" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:85 -msgid "Configuration has been applied." -msgstr "設定值已套用" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:43 -msgid "Configuration has been rolled back!" -msgstr "設定值已復原" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:43 -msgid "Confirmation" -msgstr "再確認" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Connect" -msgstr "連線" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:64 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:88 -msgid "Connected" -msgstr "已連線" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:338 -msgid "Connection Limit" -msgstr "連線限制" - -#: modules/luci-base/luasrc/model/network.lua:27 -msgid "Connection attempt failed" -msgstr "" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:32 -msgid "Connections" -msgstr "連線數" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:65 -msgid "" -"Could not regain access to the device after applying the configuration " -"changes. You might need to reconnect if you modified network related " -"settings such as the IP address or wireless security credentials." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:50 -msgid "Country" -msgstr "國別" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:337 -msgid "Country Code" -msgstr "國別碼" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:36 -msgid "Cover the following interface" -msgstr "覆蓋下列介面" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:43 -msgid "Cover the following interfaces" -msgstr "覆蓋下列這些介面" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:357 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:86 -msgid "Create / Assign firewall-zone" -msgstr "建立/指定防火牆作用區" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:9 -msgid "Create Interface" -msgstr "建立介面" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:33 -msgid "Create a bridge over multiple interfaces" -msgstr "在多個介面上建立橋接" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 -msgid "Critical" -msgstr "緊急" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 -msgid "Cron Log Level" -msgstr "Cron日誌等級" - -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:51 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:82 -#: modules/luci-base/luasrc/view/cbi/network_ifacelist.htm:83 -msgid "Custom Interface" -msgstr "自訂介面" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:40 -msgid "Custom delegated IPv6-prefix" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:53 -msgid "" -"Custom files (certificates, scripts) may remain on the system. To prevent " -"this, perform a factory-reset first." -msgstr "" -"已修改的檔案(如憑證和腳本)可能會殘留在系統中.如果要避免這項問題,您可以先行重" -"設裝置" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:52 -msgid "Custom flash interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:4 -msgid "" -"Customizes the behaviour of the device LEDs if possible." -msgstr "" -"如果可以的話,自訂這個設備的 LEDs ." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:799 -msgid "DAE-Client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "DAE-Port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:815 -msgid "DAE-Secret" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:448 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:459 -msgid "DHCP Server" -msgstr "DHCP伺服器" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:107 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:9 -msgid "DHCP and DNS" -msgstr "DHCP 和 DNS" - -#: modules/luci-base/luasrc/model/network.lua:968 -msgid "DHCP client" -msgstr "DHCP用戶端" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:513 -msgid "DHCP-Options" -msgstr "DHCP選項" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_dhcpv6.lua:7 -msgid "DHCPv6 client" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:540 -msgid "DHCPv6-Mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:529 -msgid "DHCPv6-Service" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:58 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:59 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:60 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:61 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:62 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:83 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:84 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:85 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:86 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:87 -msgid "DNS" -msgstr "網域名稱伺服器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:140 -msgid "DNS forwardings" -msgstr "DNS封包轉發" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:30 -msgid "DNS-Label / FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:90 -msgid "DNSSEC" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:94 -msgid "DNSSEC check unsigned" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:73 -msgid "DPD Idle Timeout" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:14 -msgid "DS-Lite AFTR address" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:92 -#: modules/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm:14 -msgid "DSL" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:97 -msgid "DSL Status" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:125 -msgid "DSL line mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "DTIM Interval" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:94 -msgid "DUID" -msgstr "DHCP獨立式別碼DUID " - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:104 -msgid "Data Rate" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 -msgid "Debug" -msgstr "除錯" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 -msgid "Default %d" -msgstr "預設 %d" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:82 -msgid "Default Route" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:81 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:32 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:67 -msgid "Default gateway" -msgstr "預設閘道" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:541 -msgid "Default is stateless + stateful" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:40 -msgid "Default state" -msgstr "預設狀態" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:503 -msgid "Define a name for this network." -msgstr "自訂這個網路名稱" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:514 -msgid "" -"Define additional DHCP options, for example " -"\"6,192.168.2.1,192.168.2.2\" which advertises different DNS " -"servers to clients." -msgstr "" -"定義額外的DHCP選項,例如\"6,192.168.2.1,192.168.2.2\"將會通告不同" -"的DNS伺服器到客戶端." - -#: modules/luci-base/luasrc/view/cbi/nsection.htm:11 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:162 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:16 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:41 -msgid "Delete" -msgstr "刪除" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -msgid "Delete key" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Delete this network" -msgstr "刪除這個網路" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:519 -msgid "Delivery Traffic Indication Message Interval" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:102 -msgid "Description" -msgstr "描述" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:62 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:392 -msgid "Destination" -msgstr "目的地" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:43 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:13 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:52 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:77 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:154 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:253 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:86 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:40 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:88 -msgid "Device" -msgstr "設備" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:138 -msgid "Device Configuration" -msgstr "設定設備" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:23 -msgid "Device is rebooting..." -msgstr "設備重新啟動中..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:64 -msgid "Device unreachable!" -msgstr "無法連線到設備!" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:49 -msgid "Device unreachable! Still waiting for device..." -msgstr "無法連線到設備! 正在持續等待設備回應..." - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:123 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:61 -msgid "Diagnostics" -msgstr "診斷" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:60 -msgid "Dial number" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:99 -msgid "Directory" -msgstr "目錄" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:131 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable" -msgstr "關閉" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:472 -msgid "" -"Disable DHCP for " -"this interface." -msgstr "" -" 對這介面關閉 DHCP" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:64 -msgid "Disable Encryption" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:530 -msgid "Disable Inactivity Polling" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:39 -msgid "Disable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:44 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:54 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:68 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:43 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:37 -msgid "Disabled" -msgstr "關閉" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 -msgid "Disabled (default)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -msgid "Disassociate On Low Acknowledgement" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:150 -msgid "Discard upstream RFC1918 responses" -msgstr "丟棄上游RFC1918 虛擬IP網路的回應" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:114 -msgid "Disconnect" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:64 -msgid "Disconnection attempt failed" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:46 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:17 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:28 -msgid "Dismiss" -msgstr "忽略" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:240 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:334 -msgid "Distance Optimization" -msgstr "最佳化距離" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:241 -msgid "Distance to farthest network member in meters." -msgstr "到最遠的網路距離以米表示." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:347 -msgid "Diversity" -msgstr "差異" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:10 -msgid "" -"Dnsmasq is a combined DHCP-Server and DNS-" -"Forwarder for NAT " -"firewalls" -msgstr "" -" Dnsmasq 是組合DHCP-伺服器 和 DNS-轉發給 NAT 防火牆用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:113 -msgid "Do not cache negative replies, e.g. for not existing domains" -msgstr "不快取拒絕的回應,例如.不存在的網域" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:79 -msgid "Do not forward requests that cannot be answered by public name servers" -msgstr "對不被公用名稱伺服器回應的請求不轉發" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:74 -msgid "Do not forward reverse lookups for local networks" -msgstr "對本地網域不轉發反解析鎖定" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 -msgid "Do you really want to delete the following SSH key?" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:25 -msgid "Domain required" -msgstr "網域必要的" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:163 -msgid "Domain whitelist" -msgstr "網域白名單" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Don't Fragment" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:26 -msgid "" -"Don't forward DNS-Requests without " -"DNS-Name" -msgstr "" -"若沒 DNS-名稱的話,不要轉發 DNS-請求" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Down" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:23 -msgid "Download backup" -msgstr "下載備份檔" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:87 -msgid "Download mtdblock" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:130 -msgid "Downstream SNR offset" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:9 -msgid "Dropbear Instance" -msgstr "Dropbear SSH例子" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:6 -msgid "" -"Dropbear offers SSH network shell access " -"and an integrated SCP server" -msgstr "" -"Dropbear 提供 SSH 網路shell命令存取和一個" -"整合的 SCP 伺服器" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:14 -msgid "Dual-Stack Lite (RFC6333)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:493 -msgid "Dynamic DHCP" -msgstr "動態 DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:40 -msgid "Dynamic tunnel" -msgstr "動態隧道" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:494 -msgid "" -"Dynamically allocate DHCP addresses for clients. If disabled, only clients " -"having static leases will be served." -msgstr "幫用戶端動態發配DHCP位址. 假如關閉的話,僅有有靜態位址的用戶端能被服務" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 -msgid "EA-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:990 -msgid "EAP-Method" -msgstr "EAP協定驗證方式" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:154 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:160 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit" -msgstr "編輯" - -#: modules/luci-base/luasrc/view/cbi/error.htm:13 -msgid "" -"Edit the raw configuration data above to fix any error and hit \"Save\" to " -"reload the page." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:38 -msgid "Edit this interface" -msgstr "修改這個介面" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:42 -msgid "Edit this network" -msgstr "修改這個網路" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 -msgid "Emergency" -msgstr "緊急" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:127 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable" -msgstr "啟用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:276 -msgid "" -"Enable IGMP " -"snooping" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:271 -msgid "Enable STP" -msgstr "啟用 STP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:41 -msgid "Enable HE.net dynamic endpoint update" -msgstr "啟用HE.net服務代管動態更新" - -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:51 -msgid "Enable IPv6 negotiation" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:23 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:35 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:41 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:35 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:37 -msgid "Enable IPv6 negotiation on the PPP link" -msgstr "啟用PPP連結上的IPv6交涉" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:143 -msgid "Enable Jumbo Frame passthrough" -msgstr "啟用超大訊框透穿" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 -msgid "Enable NTP client" -msgstr "啟用NTP同步功能" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:69 -msgid "Enable Single DES" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:226 -msgid "Enable TFTP server" -msgstr "啟用TFTP伺服器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:134 -msgid "Enable VLAN functionality" -msgstr "啟用VLAN功能" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1194 -msgid "Enable WPS pushbutton, requires WPA(2)-PSK" -msgstr "啟用 WPS 按鈕, 這需要 WPA(2)-PSK" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1175 -msgid "Enable key reinstallation (KRACK) countermeasures" -msgstr "啟用金鑰重新安裝攻擊 (KRACK) 因應對策" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:138 -msgid "Enable learning and aging" -msgstr "啟用智慧學習功能" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:150 -msgid "Enable mirroring of incoming packets" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:151 -msgid "Enable mirroring of outgoing packets" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:34 -msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:53 -msgid "Enable this mount" -msgstr "啟用掛載點" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:36 -msgid "Enable this network" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:37 -msgid "Enable this swap" -msgstr "啟用swap功能" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:37 -msgid "Enable/Disable" -msgstr "啟用/關閉" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:152 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:251 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:41 -msgid "Enabled" -msgstr "啟用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:277 -msgid "Enables IGMP snooping on this bridge" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 -msgid "" -"Enables fast roaming among access points that belong to the same Mobility " -"Domain" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:272 -msgid "Enables the Spanning Tree Protocol on this bridge" -msgstr "在橋接器上啟用802.1d Spanning Tree協定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:120 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:180 -msgid "Encapsulation mode" -msgstr "封裝模式" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:603 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:160 -msgid "Encryption" -msgstr "加密" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:155 -msgid "Endpoint Host" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:165 -msgid "Endpoint Port" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:47 -msgid "Enter custom value" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/dropdown.htm:46 -msgid "Enter custom values" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:273 -msgid "Erasing..." -msgstr "刪除中..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:106 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:110 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 -msgid "Error" -msgstr "錯誤" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 -msgid "Errored seconds (ES)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1432 -msgid "Ethernet Adapter" -msgstr "乙太網路卡" - -#: modules/luci-base/luasrc/model/network.lua:1422 -msgid "Ethernet Switch" -msgstr "乙太交換器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:263 -msgid "Exclude interfaces" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:108 -msgid "Expand hosts" -msgstr "延伸主機" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:278 -msgid "Expecting %s" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:63 -msgid "Expires" -msgstr "過期" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy -msgid "" -"Expiry time of leased addresses, minimum is 2 minutes (2m)." -msgstr "釋放位址的過期週期,最少兩分鐘 (2m)." - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:8 -msgid "External" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:971 -msgid "External R0 Key Holder List" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 -msgid "External R1 Key Holder List" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 -msgid "External system log server" -msgstr "外部系統日誌伺服器" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 -msgid "External system log server port" -msgstr "外部系統日誌伺服器埠號" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 -msgid "External system log server protocol" -msgstr "外部系統日誌伺服器通訊協定" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:18 -msgid "Extra SSH command options" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 -msgid "FT over DS" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:941 -msgid "FT over the Air" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:938 -msgid "FT protocol" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:38 -msgid "Failed to confirm apply within %ds, waiting for rollback…" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/filebrowser.htm:106 -msgid "File" -msgstr "檔案" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:239 -msgid "Filename of the boot image advertised to clients" -msgstr "開機影像檔通知給用戶端" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:98 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:199 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:126 -msgid "Filesystem" -msgstr "檔案系統" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:73 -msgid "Filter private" -msgstr "私人過濾器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:78 -msgid "Filter useless" -msgstr "無用過濾器" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:65 -msgid "Finalizing failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "" -"Find all currently attached filesystems and swap and replace configuration " -"with defaults based on what was detected" -msgstr "尋找所有目前已連接裝置中的檔案系統及swap分區,並覆蓋目前的設定" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Find and join network" -msgstr "搜尋並加入網路" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:9 -msgid "Finish" -msgstr "完成" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:10 -msgid "Firewall" -msgstr "防火牆" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:77 -msgid "Firewall Mark" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:193 -msgid "Firewall Settings" -msgstr "防火牆設定" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:44 -msgid "Firewall Status" -msgstr "防火牆狀況" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:137 -msgid "Firmware File" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:20 -msgid "Firmware Version" -msgstr "防火牆版本" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:183 -msgid "Fixed source port for outbound DNS queries" -msgstr "外發DNS請求的固定埠號" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Flash Firmware" -msgstr "韌體更新" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:127 -msgid "Flash image..." -msgstr "更新映像檔中..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:58 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:60 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:62 -msgid "Flash memory activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:99 -msgid "Flash new firmware image" -msgstr "更新新版韌體映像檔" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:9 -msgid "Flash operations" -msgstr "執行更新" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:194 -msgid "Flashing..." -msgstr "更新中..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:498 -msgid "Force" -msgstr "強制" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:258 -msgid "Force 40MHz mode" -msgstr "強制使用 40MHz 模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 -msgid "Force CCMP (AES)" -msgstr "強制使用CCMP (AES)加密" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:499 -msgid "Force DHCP on this network even if another server is detected." -msgstr "在網路上即使偵測到其它伺服器也強制採用DHCP的設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:623 -msgid "Force TKIP" -msgstr "強制使用TKIP加密" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:624 -msgid "Force TKIP and CCMP (AES)" -msgstr "強制使用TKIP+CCMP (AES)加密" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:257 -msgid "Force link" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:113 -msgid "Force upgrade" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:60 -msgid "Force use of NAT-T" -msgstr "" - -#: modules/luci-base/luasrc/view/csrftoken.htm:8 -msgid "Form token mismatch" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:34 -msgid "Forward DHCP traffic" -msgstr "轉發DHCP流量" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 -msgid "Forward Error Correction Seconds (FECS)" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:28 -msgid "Forward broadcast traffic" -msgstr "轉發廣播流量" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:375 -msgid "Forward mesh peer traffic" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:186 -msgid "Forwarding mode" -msgstr "轉發模式" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:596 -msgid "Fragmentation Threshold" -msgstr "分片閥值" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:332 -msgid "Frame Bursting" -msgstr "訊框爆速" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:17 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:28 -msgid "Free" -msgstr "空閒" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:91 -msgid "" -"Further information about WireGuard interfaces and peers at wireguard.com." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:45 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:87 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:169 -msgid "GHz" -msgstr "GHz" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:29 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:36 -msgid "GPRS only" -msgstr "僅用GPRS" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:57 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:82 -msgid "Gateway" -msgstr "閘道" - -#: modules/luci-base/luasrc/model/network.lua:29 -msgid "Gateway address is invalid" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:46 -msgid "Gateway ports" -msgstr "閘道埠號" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:49 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:33 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:22 -msgid "General Settings" -msgstr "一般設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:188 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:462 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:175 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:141 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:361 -msgid "General Setup" -msgstr "一般設置" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:41 -msgid "Generate Config" -msgstr "生成設定檔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 -msgid "Generate PMK locally" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:25 -msgid "Generate archive" -msgstr "製作壓縮檔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:63 -msgid "Generic 802.11%s Wireless Controller" -msgstr "通用 802.11%s 無線控制器" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:26 -msgid "Given password confirmation did not match, password not changed!" -msgstr "鍵入的密碼不吻合,密碼將不變更" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:37 -msgid "Global Settings" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:194 -msgid "Global network options" -msgstr "全域網路設定" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 -msgid "Go to password configuration..." -msgstr "前往密碼設定頁" - -#: modules/luci-base/luasrc/view/cbi/full_valueheader.htm:4 -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:58 -msgid "Go to relevant configuration page" -msgstr "到相應設定頁" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:38 -msgid "Group Password" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:11 -msgid "Guest" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:73 -msgid "HE.net password" -msgstr " HE.net密碼" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:60 -msgid "HE.net username" -msgstr "HE.net使用者名稱" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:310 -msgid "HT mode (802.11n)" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:16 -msgid "Hang Up" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:116 -msgid "Header Error Code Errors (HEC)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 -msgid "Heartbeat interval (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -msgid "" -"Here you can configure the basic aspects of your device like its hostname or " -"the timezone." -msgstr "在這裡設置基本設定值,如主機名稱或者時區...等" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 -msgid "Hide ESSID" -msgstr "隱藏 ESSID" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:61 -msgid "Hide empty chains" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:92 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:110 -msgid "Host" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:10 -msgid "Host entries" -msgstr "主機項目" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:48 -msgid "Host expiry timeout" -msgstr "過期主機" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -msgid "Host-IP or Network" -msgstr "主機-IP 或網路" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:118 -msgid "Host-Uniq tag content" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:71 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 -msgid "Hostname" -msgstr "主機名稱" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:12 -msgid "Hostname to send when requesting DHCP" -msgstr "當請求DHCP服務時傳送的主機名稱" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:112 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:8 -msgid "Hostnames" -msgstr "主機名稱" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:13 -msgid "Hybrid" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:45 -msgid "IKE DH Group" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:41 -msgid "IP Addresses" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:40 -msgid "IP Protocol" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:19 -msgid "IP address" -msgstr "IP位址" - -#: modules/luci-base/luasrc/model/network.lua:28 -msgid "IP address in invalid" -msgstr "IP位址不正確" - -#: modules/luci-base/luasrc/model/network.lua:31 -msgid "IP address is missing" -msgstr "缺少IP位址" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:18 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:19 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:20 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:22 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:89 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:91 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:92 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:93 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:73 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:88 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:42 -msgid "IPv4" -msgstr "IPv4版" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:49 -msgid "IPv4 Firewall" -msgstr "IPv4防火牆" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:48 -msgid "IPv4 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:57 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:84 -msgid "IPv4 address" -msgstr "IPv4位址" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:26 -msgid "IPv4 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:104 -msgid "IPv4 broadcast" -msgstr "IPv4廣播" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:100 -msgid "IPv4 gateway" -msgstr "IPv4閘道" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:92 -msgid "IPv4 netmask" -msgstr "IPv4網路遮罩" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:355 -msgid "IPv4 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:25 -msgid "IPv4 prefix" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:42 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:30 -msgid "IPv4 prefix length" -msgstr "IPv4前綴長度" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:43 -msgid "IPv4+IPv6" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:72 -msgid "IPv4-Address" -msgstr "IPv4-位址" - -#: protocols/luci-proto-ipip/luasrc/model/network/proto_ipip.lua:9 -msgid "IPv4-in-IPv4 (RFC2003)" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:23 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:25 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:26 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:27 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:28 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:29 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:30 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:31 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:32 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:94 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:95 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:96 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:97 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:99 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:100 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:102 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:103 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:74 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:89 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:44 -msgid "IPv6" -msgstr "IPv6版" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:52 -msgid "IPv6 Firewall" -msgstr "IPv6防火牆" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:128 -msgid "IPv6 Neighbours" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:464 -msgid "IPv6 Settings" -msgstr "IPv6 設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:195 -msgid "IPv6 ULA-Prefix" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:73 -msgid "IPv6 Upstream" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:127 -msgid "IPv6 address" -msgstr "IPv6位址" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:123 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:23 -msgid "IPv6 assignment hint" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:117 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:18 -msgid "IPv6 assignment length" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:133 -msgid "IPv6 gateway" -msgstr "IPv6閘道" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:360 -msgid "IPv6 network in address/netmask notation" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:37 -msgid "IPv6 prefix" -msgstr "IPv6字首" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:34 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:45 -msgid "IPv6 prefix length" -msgstr "IPv6字首長度" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:138 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:33 -msgid "IPv6 routed prefix" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:143 -msgid "IPv6 suffix" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:93 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:132 -msgid "IPv6-Address" -msgstr "IPv6-位址" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:33 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:104 -msgid "IPv6-PD" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:13 -msgid "IPv6-in-IPv4 (RFC4213)" -msgstr "IPv6包覆在IPv4內(RFC4213)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:17 -msgid "IPv6-over-IPv4 (6rd)" -msgstr "IPv6凌駕IPv4外(第6版)" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_6x4.lua:15 -msgid "IPv6-over-IPv4 (6to4)" -msgstr "IPv6凌駕IPv4外(6轉4)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1075 -msgid "Identity" -msgstr "特性" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:70 -msgid "If checked, 1DES is enabled" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:65 -msgid "If checked, encryption is disabled" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:57 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:48 -msgid "" -"If specified, mount the device by its UUID instead of a fixed device node" -msgstr "假若指定的話, 掛載設備的UUID獨立設備識別碼取代固定的設備節點" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:71 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:51 -msgid "" -"If specified, mount the device by the partition label instead of a fixed " -"device node" -msgstr "假若指定的話, 掛載設備的分割標籤取代固定的設備節點" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:27 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:71 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:82 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:52 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:17 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:29 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:68 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:85 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:32 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:45 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 -msgid "If unchecked, no default route is configured" -msgstr "如果沒打勾點選, 將不會設置預設路由" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:35 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:99 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:47 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:60 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:39 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:59 -msgid "If unchecked, the advertised DNS server addresses are ignored" -msgstr "如果沒打勾點選, 公告的DNS伺服器位址將被忽視" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "" -"If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable RAM. Be aware that swapping data is a very " -"slow process as the swap-device cannot be accessed with the high datarates " -"of the RAM." -msgstr "" -"如果您的物理內存不足時,未使用的數據可以是暫時交換到導致更高的交換設備量的可用" -"RAM內.請注意,交換數據是一個非常" -"緩慢的過程,作為交換裝置不能用高數據速率訪問該RAM" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:57 -msgid "Ignore /etc/hosts" -msgstr "不使用 /etc/hosts" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:471 -msgid "Ignore interface" -msgstr "被忽視的介面" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:46 -msgid "Ignore resolve file" -msgstr "不使用解析檔" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:124 -msgid "Image" -msgstr "映像檔" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:59 -msgid "In" -msgstr "輸入" - -#: modules/luci-base/luasrc/view/csrftoken.htm:13 -msgid "" -"In order to prevent unauthorized access to the system, your request has been " -"blocked. Click \"Continue »\" below to return to the previous page." -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:145 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:124 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:126 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:97 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:118 -msgid "Inactivity timeout" -msgstr "閒置過期" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:287 -msgid "Inbound:" -msgstr "輸入" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 -msgid "Info" -msgstr "訊息" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Information" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:67 -msgid "Initialization failure" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:34 -msgid "Initscript" -msgstr "初始化腳本" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "Initscripts" -msgstr "初始化腳本" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:98 -msgid "Install iputils-traceroute6 for IPv6 traceroute" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:223 -msgid "Install package %q" -msgstr "安裝軟體包 %q" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:120 -msgid "Install protocol extensions..." -msgstr "安裝延伸協定中..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:284 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:342 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:65 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:47 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:134 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:14 -msgid "Interface" -msgstr "介面" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:35 -msgid "Interface %q device auto-migrated from %q to %q." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:356 -msgid "Interface Configuration" -msgstr "介面設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:51 -msgid "Interface Overview" -msgstr "介面預覽" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:3 -msgid "Interface is reconnecting..." -msgstr "介面重連" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Interface name" -msgstr "界面名稱" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:131 -msgid "Interface not present or not connected yet." -msgstr "介面尚未出現或者還沒連上" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:88 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:11 -msgid "Interfaces" -msgstr "介面" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:9 -msgid "Internal" -msgstr "" - -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "內部伺服器發生錯誤" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:192 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:42 -msgid "Invalid" -msgstr "無效" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:311 -msgid "Invalid VLAN ID given! Only IDs between %d and %d are allowed." -msgstr "輸入的VLAN ID無效僅有介於 %d 和 %d的被允許" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:307 -msgid "Invalid VLAN ID given! Only unique IDs are allowed" -msgstr "輸入的是不正確的VLAN ID!僅允許獨一無二的IDs" - -#: modules/luci-base/luasrc/view/sysauth.htm:12 -msgid "Invalid username and/or password! Please try again." -msgstr "不正確的用戶名稱和/或者密碼!請再試一次." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:508 -msgid "Isolate Clients" -msgstr "隔離用戶端" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:18 -#, fuzzy -msgid "" -"It appears that you are trying to flash an image that does not fit into the " -"flash memory, please verify the image file!" -msgstr "它顯示您正嘗試更新不適用於這個flash記憶體的映像檔,請檢查確認這個映像檔" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:205 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 -msgid "JavaScript required!" -msgstr "需要Java腳本" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:52 -msgid "Join Network" -msgstr "加入網路" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:22 -msgid "Join Network: Wireless Scan" -msgstr "加入網路:無線網路掃描" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:19 -msgid "Joining Network: %q" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:106 -msgid "Keep settings" -msgstr "保留設定值" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:16 -#: modules/luci-mod-status/luasrc/view/admin_status/dmesg.htm:8 -msgid "Kernel Log" -msgstr "核心日誌" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:24 -msgid "Kernel Version" -msgstr "核心版本" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 -msgid "Key" -msgstr "密碼" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:852 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:853 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:870 -msgid "Key #%d" -msgstr "鑰匙 #%d" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "KiB" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:28 -msgid "Kill" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:21 -msgid "L2TP" -msgstr "L2TP" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:10 -msgid "L2TP Server" -msgstr "L2TP伺服器" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:100 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:80 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:74 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:53 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:73 -msgid "LCP echo failure threshold" -msgstr "LCP協定呼叫失敗次數門檻" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:118 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:95 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:89 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:68 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:91 -msgid "LCP echo interval" -msgstr "LCP協定呼叫間隔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:181 -msgid "LLC" -msgstr "LLC邏輯鏈結控制層" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:70 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:50 -msgid "Label" -msgstr "標籤" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 -msgid "Language" -msgstr "語言" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:24 -msgid "Language and Style" -msgstr "語言與主題" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:106 -msgid "Latency" -msgstr "" - -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:10 -msgid "Leaf" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:309 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:487 -msgid "Lease time" -msgstr "租賃時間長度" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:41 -msgid "Leasefile" -msgstr "租賃檔案" - -#: modules/luci-base/luasrc/view/lease_status.htm:74 -#: modules/luci-base/luasrc/view/lease_status.htm:95 -msgid "Leasetime remaining" -msgstr "租賃保留時間" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:20 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:27 -msgid "Leave empty to autodetect" -msgstr "保持空白以便自動偵測" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:21 -msgid "Leave empty to use the current WAN address" -msgstr "保持空白以便採用現今的寬頻位址" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:8 -msgid "Legend:" -msgstr "圖例:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:481 -msgid "Limit" -msgstr "限制" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:247 -msgid "Limit DNS service to subnets interfaces on which we are serving DNS." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:259 -msgid "Limit listening to these interfaces, and loopback." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:107 -msgid "Line Attenuation (LATN)" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:100 -msgid "Line Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:99 -msgid "Line State" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:101 -msgid "Line Uptime" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:118 -msgid "Link On" -msgstr "鏈接" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:141 -msgid "" -"List of DNS servers to forward " -"requests to" -msgstr "列出 DNS 伺服器以便轉發請求" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:972 -msgid "" -"List of R0KHs in the same Mobility Domain.
    Format: MAC-address,NAS-" -"Identifier,128-bit key as hex string.
    This list is used to map R0KH-ID " -"(NAS Identifier) to a destination MAC address when requesting PMK-R1 key " -"from the R0KH that the STA used during the Initial Mobility Domain " -"Association." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:981 -msgid "" -"List of R1KHs in the same Mobility Domain.
    Format: MAC-address,R1KH-ID " -"as 6 octets with colons,128-bit key as hex string.
    This list is used " -"to map R1KH-ID to a destination MAC address when sending PMK-R1 key from the " -"R0KH. This is also the list of authorized R1KHs in the MD that can request " -"PMK-R1 keys." -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:21 -msgid "List of SSH key files for auth" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:164 -msgid "List of domains to allow RFC1918 responses for" -msgstr "列出允許RFC1918文件虛擬IP回應的網域" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:130 -msgid "List of hosts that supply bogus NX domain results" -msgstr "列出供應偽裝NX網域成果的主機群" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:258 -msgid "Listen Interfaces" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:30 -msgid "Listen Port" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:15 -msgid "Listen only on the given interface or, if unspecified, on all" -msgstr "只許在給予的介面上聆聽, 如果未指定, 全都允許" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:174 -msgid "Listening port for inbound DNS queries" -msgstr "進入的DNS請求聆聽埠" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:21 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:221 -msgid "Load" -msgstr "掛載" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:27 -msgid "Load Average" -msgstr "平均掛載" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:33 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:45 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:22 -msgid "Loading" -msgstr "讀取中" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:35 -msgid "Loading SSH keys…" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:30 -msgid "Local IP address is invalid" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:25 -msgid "Local IP address to assign" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:10 -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:11 -msgid "Local IPv4 address" -msgstr "本地IPv4位址" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:20 -msgid "Local IPv6 address" -msgstr "本地IPv6位址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:246 -msgid "Local Service Only" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:81 -msgid "Local Startup" -msgstr "本地啟動" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 -msgid "Local Time" -msgstr "本地時間" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:104 -msgid "Local domain" -msgstr "本地網域" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:101 -#, fuzzy -msgid "" -"Local domain specification. Names matching this domain are never forwarded " -"and are resolved from DHCP or hosts files only" -msgstr "本地網域格式. 僅限符合從未從DHCP或hosts檔轉發和解析的網域" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:105 -msgid "Local domain suffix appended to DHCP names and hosts file entries" -msgstr "本地網域後綴附加倒DHCP名稱和hosts檔項目" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:100 -msgid "Local server" -msgstr "本地伺服器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:84 -msgid "" -"Localise hostname depending on the requesting subnet if multiple IPs are " -"available" -msgstr "若有多個IP可用, 本地化主機名稱端看請求的子網路而言." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:83 -msgid "Localise queries" -msgstr "本地化網路請求" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:175 -msgid "Locked to channel %s used by: %s" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -msgid "Log output level" -msgstr "日誌輸出等級" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:137 -msgid "Log queries" -msgstr "日誌查詢" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:23 -msgid "Logging" -msgstr "系統日誌" - -#: modules/luci-base/luasrc/view/sysauth.htm:38 -msgid "Login" -msgstr "登入" - -#: modules/luci-base/luasrc/controller/admin/index.lua:92 -msgid "Logout" -msgstr "登出" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 -msgid "Loss of Signal Seconds (LOSS)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 -msgid "Lowest leased address as offset from the network address." -msgstr "最低的釋放位址從這網路位址的偏移計算" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:15 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:86 -msgid "MAC" -msgstr "" - -#: modules/luci-base/luasrc/view/lease_status.htm:73 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:109 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:53 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:78 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:133 -msgid "MAC-Address" -msgstr "MAC-位址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:457 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 -msgid "MAC-Address Filter" -msgstr "MAC-位址過濾" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:142 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:363 -msgid "MAC-Filter" -msgstr "MAC-過濾" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:464 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:590 -msgid "MAC-List" -msgstr "MAC-清單" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:16 -msgid "MAP / LW4over6" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:62 -msgid "MAP rule is invalid" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:70 -msgid "MB/s" -msgstr "MB/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:28 -msgid "MD5" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -msgid "MHz" -msgstr "MHz" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:82 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:29 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:66 -msgid "MTU" -msgstr "最大傳輸單位MTU" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:121 -msgid "" -"Make sure to clone the root filesystem using something like the commands " -"below:" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:55 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:69 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:26 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:38 -msgid "Manual" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:105 -msgid "Max. Attainable Data Rate (ATTNDR)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:539 -msgid "Maximum allowed Listen Interval" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:193 -msgid "Maximum allowed number of active DHCP leases" -msgstr "允許啟用DHCP釋放的最大數量" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:212 -msgid "Maximum allowed number of concurrent DNS queries" -msgstr "允許同時齊發的DNS請求的最大數量" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:203 -msgid "Maximum allowed size of EDNS.0 UDP packets" -msgstr "允許EDNS.0 協定的UDP封包最大數量" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:63 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:77 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:57 -msgid "Maximum amount of seconds to wait for the modem to become ready" -msgstr "等待數據機待命的最大秒數" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:27 -msgid "" -"Maximum length of the name is 15 characters including the automatic protocol/" -"bridge prefix (br-, 6in4-, pppoe- etc.)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 -msgid "Maximum number of leased addresses." -msgstr "釋放出的位址群最大數量" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:21 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:49 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:170 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:79 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:284 -msgid "Mbit/s" -msgstr "Mbit/s" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -msgid "Medium" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:13 -msgid "Memory" -msgstr "記憶體" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:14 -msgid "Memory usage (%)" -msgstr "記憶體使用 (%)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:372 -msgid "Mesh Id" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:76 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:104 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:54 -msgid "Metric" -msgstr "公測單位" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:154 -msgid "Mirror monitor port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:153 -msgid "Mirror source port" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:408 -msgid "Missing protocol extension for proto %q" -msgstr "協定 %q 漏失的延伸協定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:923 -msgid "Mobility Domain" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:154 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:41 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:74 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:366 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:31 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 -msgid "Mode" -msgstr "模式" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:18 -msgid "Model" -msgstr "型號" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:31 -msgid "Modem default" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:11 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:19 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:11 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:10 -msgid "Modem device" -msgstr "數據機設備" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:66 -msgid "Modem information query failed" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:62 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:76 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:56 -msgid "Modem init timeout" -msgstr "數據機初始化終結時間" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 -msgid "Monitor" -msgstr "監視" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -msgid "More Characters" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:45 -msgid "Mount Entry" -msgstr "掛載項目" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:100 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:190 -msgid "Mount Point" -msgstr "掛載點" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:28 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:36 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "Mount Points" -msgstr "掛載設定" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:35 -msgid "Mount Points - Mount Entry" -msgstr "掛載各點 - 掛載項目" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:20 -msgid "Mount Points - Swap Entry" -msgstr "掛載各點 - 交換項目" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:137 -msgid "" -"Mount Points define at which point a memory device will be attached to the " -"filesystem" -msgstr "掛載各點定義所指定到記憶體設備將會被附載到檔案系統上" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:53 -msgid "Mount filesystems not specifically configured" -msgstr "自動掛載沒有預先設定的檔案系統" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:147 -msgid "Mount options" -msgstr "掛載選項" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:102 -msgid "Mount point" -msgstr "掛載點" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:49 -msgid "Mount swap not specifically configured" -msgstr "自動掛載沒有預先設定的swap分區" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:96 -msgid "Mounted file systems" -msgstr "已掛載檔案系統" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:152 -msgid "Move down" -msgstr "往下移" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Move up" -msgstr "往上移" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 -msgid "NAS ID" -msgstr " 網路附存伺服器ID" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:57 -msgid "NAT-T Mode" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:9 -msgid "NAT64 Prefix" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:26 -msgid "NCM" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:535 -msgid "NDP-Proxy" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:43 -msgid "NT Domain" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 -msgid "NTP server candidates" -msgstr "NTP伺服器備選" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:27 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:502 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:32 -msgid "Name" -msgstr "名稱" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:17 -msgid "Name of the new interface" -msgstr "新介面的名稱" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:76 -msgid "Name of the new network" -msgstr "新網路的名稱" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:217 -msgid "Navigation" -msgstr "導覽" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:56 -msgid "Netmask" -msgstr "網路遮罩" - -#: modules/luci-base/luasrc/controller/admin/index.lua:62 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:402 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:389 -#: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:101 -msgid "Network" -msgstr "網路" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:64 -msgid "Network Utilities" -msgstr "網路多項工具" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:238 -msgid "Network boot image" -msgstr "網路開機映像檔" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:54 -msgid "Network device activity (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:33 -msgid "Network device is not present" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:126 -msgid "Network without interfaces." -msgstr "尚無任何介面的網路." - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:11 -msgid "Next »" -msgstr "下一個 »" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:84 -msgid "No" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:453 -msgid "No DHCP Server configured for this interface" -msgstr "在這個介面尚無DHCP伺服器" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:59 -msgid "No NAT-T" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "尚未發現任何檔案" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:100 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:174 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:180 -msgid "No information available" -msgstr "尚無可運用資訊" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:63 -msgid "No matching prefix delegation" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:112 -msgid "No negative cache" -msgstr "拒絕無效網域的快取" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:53 -msgid "No network configured on this device" -msgstr "尚無網路設定在這個介面上" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:65 -msgid "No network name specified" -msgstr "尚未指定網路名稱" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:195 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 -msgid "No password set!" -msgstr "尚未設定密碼!" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 -msgid "No public keys present yet." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 -msgid "No rules in this chain." -msgstr "尚無規則在這個鏈接上" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 -msgid "No scan results available yet..." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "No zone assigned" -msgstr "尚未指定區碼" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -msgid "Noise" -msgstr "雜訊比" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:109 -msgid "Noise Margin (SNR)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:340 -msgid "Noise:" -msgstr "雜訊比:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 -msgid "Non Pre-emtive CRC errors (CRC_P)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:252 -msgid "Non-wildcard" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -msgid "None" -msgstr "無" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 -msgid "Normal" -msgstr "正常" - -#: modules/luci-base/luasrc/view/error404.htm:8 -msgid "Not Found" -msgstr "尚未發現" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:27 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_status.htm:5 -msgid "Not associated" -msgstr "尚未關聯" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -msgid "Not connected" -msgstr "尚未連線" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:105 -msgid "Not started on boot" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:26 -msgid "Note: interface name length" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -msgid "Notice" -msgstr "通知" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:104 -msgid "Nslookup" -msgstr "DNS偵錯Nslookup" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:220 -msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" -msgstr "快取DNS項目數量(最大值為10000,輸入0代表不快取)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "Number of parallel threads used for compression" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:40 -msgid "Obfuscated Group Password" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:35 -msgid "Obfuscated Password" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:40 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:34 -msgid "Obtain IPv6-Address" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:84 -msgid "Off-State Delay" -msgstr "熄滅狀態間隔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:16 -msgid "" -"On this page you can configure the network interfaces. You can bridge " -"several interfaces by ticking the \"bridge interfaces\" field and enter the " -"names of several network interfaces separated by spaces. You can also use " -"VLAN notation " -"INTERFACE.VLANNR (e.g.: " -"eth0.1)." -msgstr "" -"在這個頁面您可以設定網路介面. 只要點下這個\"介面群橋接\"而且打入數個以空格分" -"開網路介面的名稱就可以橋接數個介面群. 您也可以使用VLAN 符號INTERFACE.VLANNR (例.如: eth0.1)." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:81 -msgid "On-State Delay" -msgstr "點亮狀態間隔" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:338 -msgid "One of hostname or mac address must be specified!" -msgstr "主機名稱或mac位址任選一個被指定" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:17 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:22 -msgid "One or more fields contain invalid values!" -msgstr "有一個以上的欄位包含無效數值!" - -#: modules/luci-base/luasrc/view/cbi/map.htm:31 -msgid "One or more invalid/required values on tab" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/nullsection.htm:19 -#: modules/luci-base/luasrc/view/cbi/ucisection.htm:24 -msgid "One or more required fields have no value!" -msgstr "有一個以上的欄位缺乏任何數值!" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 -msgid "Open list..." -msgstr "開啟清單" - -#: protocols/luci-proto-openconnect/luasrc/model/network/proto_openconnect.lua:9 -msgid "OpenConnect (CISCO AnyConnect)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:178 -msgid "Operating frequency" -msgstr "操作頻率" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:12 -msgid "Option changed" -msgstr "選項已變更" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:13 -msgid "Option removed" -msgstr "選項已移除" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 -msgid "Optional" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:78 -msgid "" -"Optional. 32-bit mark for outgoing encrypted packets. Enter value in hex, " -"starting with 0x." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:144 -msgid "" -"Optional. Allowed values: 'eui64', 'random', fixed value like '::1' or " -"'::1:2'. When IPv6 prefix (like 'a:b:c:d::') is received from a delegating " -"server, use the suffix (like '::1') to form the IPv6 address ('a:b:c:d::1') " -"for the interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:123 -msgid "" -"Optional. Base64-encoded preshared key. Adds in an additional layer of " -"symmetric-key cryptography for post-quantum resistance." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:148 -msgid "Optional. Create routes for Allowed IPs for this peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:103 -msgid "Optional. Description of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:156 -msgid "" -"Optional. Host of peer. Names are resolved prior to bringing up the " -"interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:67 -msgid "Optional. Maximum Transmission Unit of tunnel interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:166 -msgid "Optional. Port of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:175 -msgid "" -"Optional. Seconds between keep alive messages. Default is 0 (disabled). " -"Recommended value if this device is behind a NAT is 25." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:31 -msgid "Optional. UDP port used for outgoing and incoming packets." -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:63 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:212 -msgid "Options" -msgstr "選項" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:374 -msgid "Other:" -msgstr "其它:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:60 -msgid "Out" -msgstr "出" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:297 -msgid "Outbound:" -msgstr "外連:" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:26 -msgid "Output Interface" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:63 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:155 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:33 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:54 -msgid "Override MAC address" -msgstr "覆蓋MAC位址" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:66 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:158 -#: protocols/luci-proto-hnet/luasrc/model/cbi/admin_network/proto_hnet.lua:35 -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:56 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:88 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:125 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:131 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:133 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:104 -msgid "Override MTU" -msgstr "覆蓋MTU數值" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Override TOS" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "Override TTL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:513 -msgid "Override default interface name" -msgstr "" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:41 -msgid "Override the gateway in DHCP responses" -msgstr "在DHCP回應中覆蓋閘道" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:507 -msgid "" -"Override the netmask sent to clients. Normally it is calculated from the " -"subnet that is served." -msgstr "覆蓋傳送到客戶端的子網路遮罩. 正常來說它會計算來自於已存在的子網路." - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:65 -msgid "Override the table used for internal routes" -msgstr "覆蓋之前內部使用的路由表" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:8 -msgid "Overview" -msgstr "預覽" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:11 -msgid "Owner" -msgstr "持有者" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:42 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:56 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:17 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:28 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:34 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:18 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:43 -msgid "PAP/CHAP password" -msgstr "PAP/CHAP驗證密碼" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:39 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:14 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:25 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:11 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:15 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:37 -msgid "PAP/CHAP username" -msgstr "PAP/CHAP驗證用戶名" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:10 -msgid "PID" -msgstr "PID碼" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:36 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:50 -#: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:26 -msgid "PIN" -msgstr "PIN碼" - -#: modules/luci-base/luasrc/model/network.lua:39 -msgid "PIN code rejected" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:966 -msgid "PMK R1 Push" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:13 -msgid "PPP" -msgstr "PPP協定" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:11 -msgid "PPPoA Encapsulation" -msgstr "PPPoA配置" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:19 -msgid "PPPoATM" -msgstr "PPPoATM" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:17 -msgid "PPPoE" -msgstr "PPPoE" - -#: protocols/luci-proto-pppossh/luasrc/model/network/proto_pppossh.lua:9 -msgid "PPPoSSH" -msgstr "" - -#: protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua:15 -msgid "PPtP" -msgstr "PPtP點對點VPN虛擬私人隧道協定" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 -msgid "PSID offset" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 -msgid "PSID-bits length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 -msgid "PTM/EFM (Packet Transfer Mode)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:78 -msgid "Package libiwinfo required!" -msgstr "軟體包必需有libiwinfo!" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Packets" -msgstr "封包" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 -msgid "Part of zone %q" -msgstr "區域 %q 的部分 " - -#: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1111 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:35 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 -msgid "Password" -msgstr "密碼" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:29 -msgid "Password authentication" -msgstr "密碼驗證" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1019 -msgid "Password of Private Key" -msgstr "私人金鑰密碼" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1067 -msgid "Password of inner Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:18 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Password strength" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:44 -msgid "Password2" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:37 -msgid "Paste or drag SSH key file…" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1000 -msgid "Path to CA-Certificate" -msgstr "CA-證書的路徑" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 -msgid "Path to Client-Certificate" -msgstr "用戶端-證書的路徑" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1013 -msgid "Path to Private Key" -msgstr "私人金鑰的路徑" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1049 -msgid "Path to inner CA-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 -msgid "Path to inner Client-Certificate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1061 -msgid "Path to inner Private Key" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:293 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:303 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:370 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:380 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:258 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:268 -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:278 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:336 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:346 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:365 -msgid "Peak:" -msgstr "峰值:" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:28 -msgid "Peer IP address to assign" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:32 -msgid "Peer address is missing" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:90 -msgid "Peers" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:50 -msgid "Perfect Forward Secrecy" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:19 -msgid "Perform reboot" -msgstr "重新開機" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Perform reset" -msgstr "執行重置" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:174 -msgid "Persistent Keep Alive" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:359 -msgid "Phy Rate:" -msgstr "傳輸率:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:190 -msgid "Physical Settings" -msgstr "實體設置" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:77 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:79 -msgid "Ping" -msgstr "Ping" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:55 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:176 -msgid "Pkts." -msgstr "封包數." - -#: modules/luci-base/luasrc/view/sysauth.htm:19 -msgid "Please enter your username and password." -msgstr "請輸入您的用戶名稱和密碼" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -msgid "Policy" -msgstr "策略" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 -msgid "Polling interval" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 -msgid "Polling interval for status queries in seconds" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 -msgid "Port" -msgstr "埠" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:18 -msgid "Port status:" -msgstr "埠狀態:" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:120 -msgid "Power Management Mode" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:118 -msgid "Pre-emtive CRC errors (CRCP_P)" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:32 -msgid "Prefer LTE" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:33 -msgid "Prefer UMTS" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:80 -msgid "Prefix Delegated" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:122 -msgid "Preshared Key" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:101 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:81 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:75 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:54 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:74 -msgid "" -"Presume peer to be dead after given amount of LCP echo failures, use 0 to " -"ignore failures" -msgstr "假若在給于多次的 LCP 呼叫失敗後終點將死, 使用0忽略失敗" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:264 -msgid "Prevent listening on these interfaces." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:562 -msgid "Prevents client-to-client communication" -msgstr "防止用戶端對用戶端的通訊" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:18 -msgid "Private Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:61 -msgid "Proceed" -msgstr "前進" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:17 -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "Processes" -msgstr "執行緒" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:103 -msgid "Profile" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:58 -msgid "Prot." -msgstr "協定." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:84 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:216 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:54 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:79 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:390 -msgid "Protocol" -msgstr "協定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:31 -msgid "Protocol of the new interface" -msgstr "新介面的協定家族" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:222 -msgid "Protocol support is not installed" -msgstr "支援的協定尚未安裝" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 -msgid "Provide NTP server" -msgstr "啟用NTP伺服器" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:16 -msgid "Provide new network" -msgstr "提供新網路" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -msgid "Pseudo Ad-Hoc (ahdemo)" -msgstr "偽裝Ad-Hoc (ahdemo模式)" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:112 -msgid "Public Key" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:30 -msgid "" -"Public keys allow for the passwordless SSH logins with a higher security " -"compared to the use of plain passwords. In order to upload a new key to the " -"device, paste an OpenSSH compatible public key line or drag a .pub file into the input field." -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 -msgid "Public prefix routed to this device for distribution to clients." -msgstr "" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:9 -msgid "QMI Cellular" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Quality" -msgstr "品質" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:127 -msgid "" -"Query all available upstream DNS " -"servers" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "R0 Key Lifetime" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:959 -msgid "R1 Key Holder" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:58 -msgid "RFC3947 NAT-T mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 -msgid "RSSI threshold for joining" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:256 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:597 -msgid "RTS/CTS Threshold" -msgstr "RTS/CTS門檻" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:16 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:36 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:87 -msgid "RX" -msgstr "接收" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "RX Rate" -msgstr "接收速率" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:783 -msgid "Radius-Accounting-Port" -msgstr "Radius-驗証帳號-埠" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:791 -msgid "Radius-Accounting-Secret" -msgstr "Radius-合法帳號-密碼" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:775 -msgid "Radius-Accounting-Server" -msgstr "Radius-合法帳號-伺服器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:759 -msgid "Radius-Authentication-Port" -msgstr "Radius-驗証-埠" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:767 -msgid "Radius-Authentication-Secret" -msgstr "Radius-驗証-密碼" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:751 -msgid "Radius-Authentication-Server" -msgstr "Radius-驗証-伺服器" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:119 -msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:37 -msgid "" -"Read /etc/ethers to configure the DHCP-Server" -msgstr "" -" 讀取/etc/ethers 以便設置DHCP-伺服器" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:8 -msgid "" -"Really delete this interface? The deletion cannot be undone! You might lose " -"access to this device if you are connected via this interface" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2 -msgid "" -"Really delete this wireless network? The deletion cannot be undone! You " -"might lose access to this device if you are connected via this network." -msgstr "" -"真的要刪除這個無線網路?無法復原的刪除!\n" -"假如您是透過這個網路連線您可能會無法存取這個設備." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:40 -msgid "Really reset all changes?" -msgstr "確定要回復原廠設定?" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:237 -msgid "Really switch protocol?" -msgstr "確定要更換協定?" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:341 -msgid "Realtime Connections" -msgstr "即時連線" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:19 -msgid "Realtime Graphs" -msgstr "即時圖表" - -#: modules/luci-mod-status/luasrc/view/admin_status/load.htm:244 -msgid "Realtime Load" -msgstr "即時負載" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:273 -msgid "Realtime Traffic" -msgstr "即時流量" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:316 -msgid "Realtime Wireless" -msgstr "即時無線網路" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:931 -msgid "Reassociation Deadline" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 -msgid "Rebind protection" -msgstr "重新綁護" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:48 -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:9 -msgid "Reboot" -msgstr "重開機" - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:9 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "Rebooting..." -msgstr "重新啟動中..." - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:11 -msgid "Reboots the operating system of your device" -msgstr "重啟您設備的作業系統" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:120 -msgid "Receive" -msgstr "接收" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:325 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:350 -msgid "Receiver Antenna" -msgstr "接收天線" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:42 -msgid "Recommended. IP addresses of the WireGuard interface." -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:32 -msgid "Reconnect this interface" -msgstr "重新連接這個介面" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:48 -msgid "References" -msgstr "引用" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:153 -msgid "Relay" -msgstr "延遲" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:157 -msgid "Relay Bridge" -msgstr "橋接延遲" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:17 -msgid "Relay between networks" -msgstr "網路間的延遲" - -#: protocols/luci-proto-relay/luasrc/model/network/proto_relay.lua:12 -msgid "Relay bridge" -msgstr "橋接延遲" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:18 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:18 -msgid "Remote IPv4 address" -msgstr "遠端IPv4位址" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "Remote IPv4 address or FQDN" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:45 -msgid "Remove" -msgstr "移除" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:53 -msgid "Repeat scan" -msgstr "再次掃描" - -#: modules/luci-base/luasrc/view/cbi/upload.htm:11 -msgid "Replace entry" -msgstr "替代項目" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:51 -msgid "Replace wireless configuration" -msgstr "替代性無線設定" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:8 -msgid "Request IPv6-address" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:16 -msgid "Request IPv6-prefix of length" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1141 -msgid "Required" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:20 -msgid "Required for certain ISPs, e.g. Charter with DOCSIS 3" -msgstr "對特定的ISP需要,例如.DOCSIS 3 加速有線電視寬頻網路" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:19 -msgid "Required. Base64-encoded private key for this interface." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:113 -msgid "Required. Base64-encoded public key of peer." -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:136 -msgid "" -"Required. IP addresses and prefixes that this peer is allowed to use inside " -"the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " -"routes through the tunnel." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1134 -msgid "" -"Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"
    (as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 -msgid "" -"Requires upstream supports DNSSEC; verify unsigned domain responses really " -"come from unsigned domains" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:30 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:66 -#: modules/luci-base/luasrc/view/sysauth.htm:39 -msgid "Reset" -msgstr "重置" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:62 -msgid "Reset Counters" -msgstr "重置計數器" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:38 -msgid "Reset to defaults" -msgstr "回復預設值" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:20 -msgid "Resolv and Hosts Files" -msgstr "解析和Hosts檔案" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:49 -msgid "Resolve file" -msgstr "解析檔" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:28 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:71 -msgid "Restart" -msgstr "重啟" - -#: modules/luci-mod-status/luasrc/view/admin_status/iptables.htm:63 -msgid "Restart Firewall" -msgstr "重啟防火牆" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:14 -msgid "Restart radio interface" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:31 -msgid "Restore" -msgstr "還原" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:47 -msgid "Restore backup" -msgstr "還原之前備份設定" - -#: modules/luci-base/luasrc/view/cbi/value.htm:24 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:38 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:46 -msgid "Reveal/hide password" -msgstr "明示/隱藏 密碼" - -#: modules/luci-base/luasrc/controller/admin/uci.lua:13 -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:41 -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:16 -msgid "Revert" -msgstr "回溯" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:47 -msgid "Revert changes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:166 -msgid "Revert request failed with status %h" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:152 -msgid "Reverting configuration…" -msgstr "正在還原設定值..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:217 -msgid "Root" -msgstr "根" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:230 -msgid "Root directory for files served via TFTP" -msgstr "透過TFTP存取根目錄檔案" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:109 -msgid "Root preparation" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:147 -msgid "Route Allowed IPs" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:46 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:88 -msgid "Route type" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:523 -msgid "Router Advertisement-Service" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:15 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:27 -msgid "Router Password" -msgstr "路由器密碼" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:8 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:14 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:37 -msgid "Routes" -msgstr "路由" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:9 -msgid "" -"Routes specify over which interface and gateway a certain host or network " -"can be reached." -msgstr "路由器指定介面導出到特定主機或者能夠到達的網路." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:240 -msgid "Rule" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:155 -msgid "Run a filesystem check before mounting the device" -msgstr "掛載這個設備前先跑系統檢查" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:154 -msgid "Run filesystem check" -msgstr "執行系統檢查" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:29 -msgid "SHA256" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -msgid "SNR" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:19 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:5 -msgid "SSH Access" -msgstr "SSH存取" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:10 -msgid "SSH server address" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:13 -msgid "SSH server port" -msgstr "" - -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:8 -msgid "SSH username" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:20 -#: modules/luci-mod-system/luasrc/view/admin_system/sshkeys.htm:27 -msgid "SSH-Keys" -msgstr "SSH-金鑰" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:42 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:73 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:29 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:157 -msgid "SSID" -msgstr "基地台服務設定識別碼SSID" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:236 -msgid "SWAP" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:17 -#: modules/luci-base/luasrc/view/cbi/footer.htm:26 -#: modules/luci-base/luasrc/view/cbi/header.htm:17 -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:54 -msgid "Save" -msgstr "保存" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:36 -#: modules/luci-base/luasrc/view/cbi/footer.htm:22 -msgid "Save & Apply" -msgstr "保存並啟用" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:89 -msgid "Save mtdblock" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:64 -msgid "Save mtdblock contents" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 -msgid "Saving keys…" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 -msgid "Scan" -msgstr "掃描" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:109 -msgid "Scan request failed" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:8 -msgid "Scheduled Tasks" -msgstr "排程任務" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:10 -msgid "Section added" -msgstr "新增的區段" - -#: modules/luci-base/luasrc/view/admin_uci/changelog.htm:11 -msgid "Section removed" -msgstr "區段移除" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:148 -msgid "See \"mount\" manpage for details" -msgstr "查看\"mount\"主頁獲取進階資訊" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:119 -msgid "" -"Select 'Force upgrade' to flash the image even if the image format check " -"fails. Use only if you are sure that the firmware is correct and meant for " -"your device!" -msgstr "" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:119 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:96 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:90 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:69 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:92 -msgid "" -"Send LCP echo requests at the given interval in seconds, only effective in " -"conjunction with failure threshold" -msgstr "傳送LCP呼叫請求在這個給予的秒數間隔內, 僅影響關聯到失敗門檻" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:561 -msgid "Separate Clients" -msgstr "分隔用戶端" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:15 -msgid "Server Settings" -msgstr "伺服器設定值" - -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:26 -msgid "Service Name" -msgstr "服務名稱" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:25 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:30 -msgid "Service Type" -msgstr "服務型態" - -#: modules/luci-base/luasrc/controller/admin/index.lua:55 -msgid "Services" -msgstr "各服務" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:37 -msgid "Session expired" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:83 -msgid "Set VPN as Default Route" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:258 -msgid "" -"Set interface properties regardless of the link carrier (If set, carrier " -"sense events do not invoke hotplug handlers)." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 -#, fuzzy -msgid "Set up Time Synchronization" -msgstr "安裝校時同步" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:55 -msgid "Setting PLMN failed" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:68 -msgid "Setting operation mode failed" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:454 -msgid "Setup DHCP Server" -msgstr "安裝DHCP伺服器" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:113 -msgid "Severely Errored Seconds (SES)" -msgstr "" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 -msgid "Short GI" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:516 -msgid "Short Preamble" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 -msgid "Show current backup file list" -msgstr "顯示現今的備份檔清單" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:99 -msgid "Show empty chains" -msgstr "" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -msgid "Shutdown this interface" -msgstr "關閉這個介面" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:111 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:28 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:156 -msgid "Signal" -msgstr "信號" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:108 -msgid "Signal Attenuation (SATN)" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:330 -msgid "Signal:" -msgstr "信號:" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:30 -msgid "Size" -msgstr "大小" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:219 -msgid "Size of DNS query cache" -msgstr "DNS請求快取大小" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "Size of the ZRam device in megabytes" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/footer.htm:18 -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:57 -msgid "Skip" -msgstr "跳過" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:213 -msgid "Skip to content" -msgstr "跳到內容" - -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:212 -msgid "Skip to navigation" -msgstr "跳到導覽" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:335 -msgid "Slot time" -msgstr "插槽時間" - -#: modules/luci-base/luasrc/model/network.lua:1427 -msgid "Software VLAN" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/header.htm:2 -msgid "Some fields are invalid, cannot save values!" -msgstr "有些欄位失效, 無法儲存數值!" - -#: modules/luci-base/luasrc/view/error404.htm:9 -msgid "Sorry, the object you requested was not found." -msgstr "抱歉, 您請求的這物件尚無發現." - -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "抱歉, 伺服器遭遇非預期的錯誤." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:133 -msgid "" -"Sorry, there is no sysupgrade support present; a new firmware image must be " -"flashed manually. Please refer to the wiki for device specific install " -"instructions." -msgstr "" -"抱歉, 沒有sysupgrade支援出現, 新版韌體映像檔必須手動更新. 請回歸wiki找尋特定" -"設備安裝指引." - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:391 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:103 -msgid "Source" -msgstr "來源" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:103 -msgid "Specifies the directory the device is attached to" -msgstr "指定這個設備被附掛到那個目錄" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:23 -msgid "Specifies the listening port of this Dropbear instance" -msgstr "指定這個 Dropbear的監聽埠" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:57 -msgid "" -"Specifies the maximum amount of failed ARP requests until hosts are presumed " -"to be dead" -msgstr "指定失敗ARP可請求的最大數量直到駭客主機死亡為止" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:49 -msgid "" -"Specifies the maximum amount of seconds after which hosts are presumed to be " -"dead" -msgstr "指定可請求的最大秒數直到駭客主機死亡為止" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 -msgid "Specify a TOS (Type of Service)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 -msgid "" -"Specify a TTL (Time to Live) for the encapsulating packet other than the " -"default (64)." -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 -msgid "" -"Specify an MTU (Maximum Transmission Unit) other than the default (1280 " -"bytes)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 -msgid "Specify the secret encryption key here." -msgstr "指定加密金鑰在此." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:475 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:64 -msgid "Start" -msgstr "啟用" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:33 -msgid "Start priority" -msgstr "啟用優先權順序" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:125 -msgid "Starting configuration apply…" -msgstr "開始套用設定值..." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:105 -msgid "Starting wireless scan..." -msgstr "開始無線掃描..." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:24 -msgid "Startup" -msgstr "開機自動執行" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:12 -msgid "Static IPv4 Routes" -msgstr "靜態IPv4路由" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:59 -msgid "Static IPv6 Routes" -msgstr "靜態IPv6路由" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:269 -msgid "Static Leases" -msgstr "靜態租約" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:118 -msgid "Static Routes" -msgstr "靜態路由" - -#: modules/luci-base/luasrc/model/network.lua:966 -msgid "Static address" -msgstr "靜態位址" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:270 -msgid "" -"Static leases are used to assign fixed IP addresses and symbolic hostnames " -"to DHCP clients. They are also required for non-dynamic interface " -"configurations where only hosts with a corresponding lease are served." -msgstr "" -"靜態租約是用來指定固定的IP位址和表示的主機名稱給予DHCP用戶端. 它們也需要非動" -"態介面設定值以便獲取相應租約的主機服務." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "Station inactivity limit" -msgstr "" - -#: modules/luci-base/luasrc/controller/admin/index.lua:40 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:197 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:145 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:129 -msgid "Status" -msgstr "狀態" - -#: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:35 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:75 -msgid "Stop" -msgstr "停止" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:121 -msgid "Strict order" -msgstr "嚴謹順序" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:16 -msgid "Strong" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/simpleform.htm:61 -msgid "Submit" -msgstr "提交" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:63 -msgid "Suppress logging" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:64 -msgid "Suppress logging of the routine operation of these protocols" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:24 -msgid "Swap" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:29 -msgid "Swap Entry" -msgstr "Swap交換頁項目" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:23 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "Switch" -msgstr "交換器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:129 -msgid "Switch %q" -msgstr "交換器 %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:128 -msgid "Switch %q (%s)" -msgstr "交換器 %q (%s)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:66 -msgid "" -"Switch %q has an unknown topology - the VLAN settings might not be accurate." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:185 -msgid "Switch Port Mask" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:1425 -msgid "Switch VLAN" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:238 -msgid "Switch protocol" -msgstr "切換協定" - -#: modules/luci-base/luasrc/view/cbi/ipaddr.htm:26 -msgid "Switch to CIDR list notation" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:64 -msgid "Switchport activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:53 -msgid "Sync with NTP-Server" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:25 -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:50 -msgid "Sync with browser" -msgstr "與瀏覽器同步時間" - -#: modules/luci-mod-system/luasrc/view/admin_system/clock_status.htm:18 -msgid "Synchronizing..." -msgstr "同步中..." - -#: modules/luci-base/luasrc/controller/admin/index.lua:47 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:14 -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:10 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:14 -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:39 -msgid "System" -msgstr "系統" - -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:15 -#: modules/luci-mod-status/luasrc/view/admin_status/syslog.htm:8 -msgid "System Log" -msgstr "系統日誌" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:18 -msgid "System Properties" -msgstr "系統屬性" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 -msgid "System log buffer size" -msgstr "系統日誌緩衝大小" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:364 -msgid "TCP:" -msgstr "TCP:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:21 -msgid "TFTP Settings" -msgstr "TFTP設定" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:229 -msgid "TFTP server root" -msgstr "TFTP 伺服器根" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:17 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:37 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:88 -msgid "TX" -msgstr "傳送" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:112 -msgid "TX Rate" -msgstr "傳送速度" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:8 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:77 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:105 -msgid "Table" -msgstr "表格" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:21 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:68 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:57 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:102 -msgid "Target" -msgstr "目標" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:77 -msgid "Target network" -msgstr "" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:22 -msgid "Terminate" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy -msgid "" -"The Device Configuration section covers physical settings of the " -"radio hardware such as channel, transmit power or antenna selection which " -"are shared among all defined wireless networks (if the radio hardware is " -"multi-SSID capable). Per network settings like encryption or operation mode " -"are grouped in the Interface Configuration." -msgstr "" -"這個Device Configuration欄位會覆蓋無線射頻硬體的物理設定值,如通道、" -"傳送功率或者天線分享道所有定義的無線網路(假如這個無線射頻硬體是多工-SSID能力" -"的). 每個網路設定像加密或操作模式是被分群在Interface Configuration" -"中." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:79 -msgid "" -"The libiwinfo-lua package is not installed. You must install this " -"component for working wireless configuration!" -msgstr "" -"這 libiwinfo-lua 軟體包尚未安裝. 您必須安裝這個元件以便無線網路設定" -"有作用." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:66 -msgid "" -"The HE.net endpoint update configuration changed, you must now use the plain " -"username instead of the user ID!" -msgstr "" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 -msgid "" -"The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 -msgid "" -"The IPv6 prefix assigned to the provider, usually ends with ::" -msgstr "指定到這供應商的IPv6字首, 通常用 ::結尾" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:18 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:77 -msgid "" -"The allowed characters are: A-Z, a-z, 0-9 and _" -msgstr "" -"所允許的字元是: A-Z, a-z, 0-9 and " -"_" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:59 -msgid "The backup archive does not appear to be a valid gzip file." -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/error.htm:6 -msgid "The configuration file could not be loaded due to the following error:" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:44 -msgid "" -"The device could not be reached within %d seconds after applying the pending " -"changes, which caused the configuration to be rolled back for safety " -"reasons. If you believe that the configuration changes are correct " -"nonetheless, proceed by applying anyway. Alternatively, you can dismiss this " -"warning and edit changes before attempting to apply again, or revert all " -"pending changes to keep the currently working configuration state." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 -msgid "" -"The device file of the memory or partition (e.g." -" /dev/sda1)" -msgstr "" -"記憶體的設備檔或者分割區 (e.g. /dev/" -"sda1)" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:127 -msgid "" -"The filesystem that was used to format the memory (e.g. ext3)" -msgstr "" -"這檔案系統適用來格式化記憶體(例.如. " -"ext3)" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:11 -msgid "" -"The flash image was uploaded. Below is the checksum and file size listed, " -"compare them with the original file to ensure data integrity.
    Click " -"\"Proceed\" below to start the flash procedure." -msgstr "" -"即將刷入的映像檔已上傳.下面是這個校驗碼和檔案大小詳細資訊, 用原始檔比對他們以" -"確保資料完整性.
    按下面的\"繼續\"便可以開始更新程序." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:19 -msgid "The following changes have been reverted" -msgstr "接下來的修改已經被回復" - -#: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:38 -msgid "The following rules are currently active on this system." -msgstr "以下的規則現正作用在系統中." - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:144 -msgid "The given SSH public key has already been added." -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:150 -msgid "" -"The given SSH public key is invalid. Please supply proper public RSA or " -"ECDSA keys." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 -msgid "The given network name is not unique" -msgstr "輸入的網路名稱非唯一" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy -msgid "" -"The hardware is not multi-SSID capable and the existing configuration will " -"be replaced if you proceed." -msgstr "如果您繼續的話.這硬體並非多SSID工能並且已存的設定將會被覆蓋." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:43 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:31 -msgid "" -"The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " -"addresses." -msgstr "這IPv4開頭以位元計的長度, 剩餘部分將會延用在IPv6位址中." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 -msgid "The length of the IPv6 prefix in bits" -msgstr "這IPv6開頭以位元計的長度" - -#: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 -msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 -msgid "" -"The network ports on this device can be combined to several VLANs in which computers can " -"communicate directly with each other. VLANs are often used to separate different network " -"segments. Often there is by default one Uplink port for a connection to the " -"next greater network like the internet and other ports for a local network." -msgstr "" -"這設備的網路埠可以被組合到數個 VLAN群, 以便在內的電腦可以直接跟別人互通. VLAN群經常用來分割網路區段. 預設經常會有一個上傳" -"埠來連接到下一個大型網路類似Intenet而其它埠則用來本地區網使用." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:77 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:395 -msgid "The selected protocol needs a device assigned" -msgstr "選到的協定需要指定到設備上" - -#: modules/luci-base/luasrc/view/csrftoken.htm:11 -msgid "The submitted security token is invalid or already expired!" -msgstr "" - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:274 -msgid "" -"The system is erasing the configuration partition now and will reboot itself " -"when finished." -msgstr "系統正在刪除設定分割並且當完成時將自行重開." - -#: modules/luci-mod-system/luasrc/controller/admin/system.lua:195 -#, fuzzy -msgid "" -"The system is flashing now.
    DO NOT POWER OFF THE DEVICE!
    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." -msgstr "" -"系統正在刷機中.
    請勿關閉設備!
    請等待數分鐘直到您重新連線. 可能需" -"要更新您電腦的位址以便再次連接設備, 端看您的設定. " - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:15 -msgid "The system password has been successfully changed." -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:118 -msgid "" -"The uploaded image file does not contain a supported format. Make sure that " -"you choose the generic image format for your platform." -msgstr "" -"以上傳的映像檔不包含支援格式. 請確認您選擇的是針對您的平台採用的通用映像檔." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 -msgid "Theme" -msgstr "主題" - -#: modules/luci-base/luasrc/view/lease_status.htm:29 -#: modules/luci-base/luasrc/view/lease_status.htm:61 -msgid "There are no active leases." -msgstr "租賃尚未啟動." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:135 -msgid "There are no changes to apply." -msgstr "無任何設定待套用." - -#: modules/luci-base/luasrc/view/admin_uci/revert.htm:22 -msgid "There are no pending changes to revert!" -msgstr "尚無暫存的修改等待復原!" - -#: modules/luci-base/luasrc/view/admin_uci/changes.htm:21 -msgid "There are no pending changes!" -msgstr "無暫存的修改!" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:204 -msgid "" -"There is no device assigned yet, please attach a network device in the " -"\"Physical Settings\" tab" -msgstr "尚未指定設備, 請接上一個網路設備在這\"實體設置\"標籤內" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:196 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 -msgid "" -"There is no password set on this router. Please configure a root password to " -"protect the web interface and enable SSH." -msgstr "路由器尚未設密碼. 請設定root密碼以便保護web介面及啟用SSH." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:19 -msgid "This IPv4 address of the relay" -msgstr "IPv4位址的轉驛" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:117 -msgid "" -"This file may contain lines like 'server=/domain/1.2.3.4' or " -"'server=1.2.3.4' fordomain-specific or full upstream DNS servers." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 -msgid "" -"This is a list of shell glob patterns for matching files and directories to " -"include during sysupgrade. Modified files in /etc/config/ and certain other " -"configurations are automatically preserved." -msgstr "" -"這是shell通用模式清單用來在系統更新時匹配包括的檔案和目錄. 在/etc/config/ 修" -"改檔案和特定其它設定檔將會被自動保留." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:74 -msgid "" -"This is either the \"Update Key\" configured for the tunnel or the account " -"password if no update key has been configured" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:82 -msgid "" -"This is the content of /etc/rc.local. Insert your own commands here (in " -"front of 'exit 0') to execute them at the end of the boot process." -msgstr "" -"這是 /etc/rc.local 內容. 在這插入自己的指令 (在 'exit 0' 前面)以便在開機流程" -"結尾執行它們." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:27 -msgid "" -"This is the local endpoint address assigned by the tunnel broker, it usually " -"ends with ...:2/64" -msgstr "這是由通道代理人指定的本地終端位址, 通常用 ...:2/64結尾." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:31 -msgid "" -"This is the only DHCP in the local network" -msgstr "" -"在本地網路中 這是唯一的 DHCP" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:61 -msgid "This is the plain username for logging into the account" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:34 -msgid "" -"This is the prefix routed to you by the tunnel broker for use by clients" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/crontab.lua:9 -msgid "This is the system crontab in which scheduled tasks can be defined." -msgstr "這是系統預設的例行性工作排程." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:19 -msgid "" -"This is usually the address of the nearest PoP operated by the tunnel broker" -msgstr "這是由通道代理人操作的近端PoP通用位址" - -#: modules/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua:5 -msgid "" -"This list gives an overview over currently running system processes and " -"their status." -msgstr "這清單提供目前正在執行的系統的執行緒和狀態的預覽." - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:343 -msgid "This page gives an overview over currently active network connections." -msgstr "這一頁提供目前正在活動中網路連線的預覽." - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:172 -#: modules/luci-base/luasrc/view/cbi/tsection.htm:32 -msgid "This section contains no values yet" -msgstr "這部分尚未有任何設定值." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 -msgid "Time Synchronization" -msgstr "校時同步" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 -msgid "Time Synchronization is not configured yet." -msgstr "校時同步尚未設定." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -msgid "Time interval for rekeying GTK" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 -msgid "Timezone" -msgstr "時區" - -#: modules/luci-base/htdocs/luci-static/resources/xhr.js:47 -msgid "To login…" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:32 -msgid "" -"To restore configuration files, you can upload a previously generated backup " -"archive here. To reset the firmware to its initial state, click \"Perform " -"reset\" (only possible with squashfs images)." -msgstr "" -"要復原設定檔, 可以上傳之前製作的備份壓縮檔放這. 要重置回復出廠值,按下\"執行還" -"原\"(可能只對squashfs影像檔有效)" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:112 -msgid "Tone" -msgstr "" - -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:16 -#: modules/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm:27 -msgid "Total Available" -msgstr "全部可用" - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:92 -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:94 -msgid "Traceroute" -msgstr "路由追蹤" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:45 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:56 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:24 -msgid "Traffic" -msgstr "流量" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:393 -msgid "Transfer" -msgstr "傳輸" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 -msgid "Transmission Rate" -msgstr "傳輸速率" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:119 -msgid "Transmit" -msgstr "射頻" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:211 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:273 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:345 -msgid "Transmit Power" -msgstr "射頻功率" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:318 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:349 -msgid "Transmitter Antenna" -msgstr "射頻天線" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:43 -msgid "Trigger" -msgstr "觸發" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:115 -msgid "Trigger Mode" -msgstr "觸發模式" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:54 -msgid "Tunnel ID" -msgstr "通道ID" - -#: modules/luci-base/luasrc/model/network.lua:1430 -msgid "Tunnel Interface" -msgstr "通道介面" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:11 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:26 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:61 -msgid "Tunnel Link" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -msgid "Tx-Power" -msgstr "傳送-功率" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:32 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:168 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:11 -msgid "Type" -msgstr "型態" - -#: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:354 -msgid "UDP:" -msgstr "UDP:" - -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:28 -msgid "UMTS only" -msgstr "只用3G UMTS" - -#: protocols/luci-proto-3g/luasrc/model/network/proto_3g.lua:10 -msgid "UMTS/GPRS/EV-DO" -msgstr "UMTS/GPRS/EV-DO" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:123 -msgid "USB Device" -msgstr "USB設備" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:144 -msgid "USB Ports" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:56 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:47 -msgid "UUID" -msgstr "設備通用唯一識別碼UUID" - -#: modules/luci-base/luasrc/model/network.lua:34 -#: modules/luci-base/luasrc/model/network.lua:35 -msgid "Unable to determine device name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:36 -msgid "Unable to determine external IP address" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:37 -msgid "Unable to determine upstream interface" -msgstr "" - -#: modules/luci-base/luasrc/view/error404.htm:10 -msgid "Unable to dispatch" -msgstr "無法發送" - -#: protocols/luci-proto-qmi/luasrc/model/network/proto_qmi.lua:54 -msgid "Unable to obtain client ID" -msgstr "" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:61 -msgid "Unable to resolve AFTR host name" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:38 -msgid "Unable to resolve peer host name" -msgstr "" - -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:115 -msgid "Unavailable Seconds (UAS)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:970 -msgid "Unknown" -msgstr "未知" - -#: modules/luci-base/luasrc/model/network.lua:1137 -msgid "Unknown error (%s)" -msgstr "" - -#: modules/luci-base/luasrc/model/network.lua:964 -msgid "Unmanaged" -msgstr "未託管" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:119 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:125 -msgid "Unmount" -msgstr "" - -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:107 -msgid "Unnamed key" -msgstr "" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:148 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:172 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:141 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:189 -msgid "Unsaved Changes" -msgstr "尚未存檔的修改" - -#: protocols/luci-proto-ipv6/luasrc/model/network/proto_4x6.lua:64 -msgid "Unsupported MAP type" -msgstr "" - -#: protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua:69 -msgid "Unsupported modem" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:119 -msgid "Unsupported protocol type." -msgstr "不支援的協定型態" - -#: modules/luci-base/luasrc/view/cbi/tblsection.htm:151 -msgid "Up" -msgstr "" - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:103 -msgid "" -"Upload a sysupgrade-compatible image here to replace the running firmware. " -"Check \"Keep settings\" to retain the current configuration (requires a " -"compatible firmware image)." -msgstr "" -"上傳一個sysupgrade-相容的映像檔在這以便替代正執行中的韌體. 勾選\"保持設定\"以" -"保留目前設定值(必須要是OpenWrt相容性韌體映像檔)." - -#: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 -msgid "Upload archive..." -msgstr "上傳壓縮檔..." - -#: modules/luci-base/luasrc/view/cbi/upload.htm:8 -msgid "Uploaded File" -msgstr "檔案已上傳" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js:14 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:85 -#: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:26 -msgid "Uptime" -msgstr "上傳花費時間" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:36 -msgid "Use /etc/ethers" -msgstr "採用 /etc/ethers" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:40 -msgid "Use DHCP gateway" -msgstr "使用DHCP的閘道" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:33 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:85 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:34 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:98 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:46 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:65 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:59 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:38 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:58 -msgid "Use DNS servers advertised by peer" -msgstr "使用終端發布的DNS伺服器" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:227 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:233 -msgid "Use ISO/IEC 3166 alpha2 country codes." -msgstr "使用Use ISO/IEC 3166 alpha2 國碼." - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:31 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:100 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:35 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:51 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:86 -msgid "Use MTU on tunnel interface" -msgstr "在通道介面上使用的MTU數值" - -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:95 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:65 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:30 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:46 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:81 -msgid "Use TTL on tunnel interface" -msgstr "在通道介面上使用的TTL存活時間" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:106 -msgid "Use as external overlay (/overlay)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:105 -msgid "Use as root filesystem (/)" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:19 -msgid "Use broadcast flag" -msgstr "當作廣播旗標" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:253 -msgid "Use builtin IPv6-management" -msgstr "使用內建的IPv6管理功能" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:40 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:109 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:92 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:45 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:105 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:53 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:72 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:66 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:45 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:65 -msgid "Use custom DNS servers" -msgstr "使用自定的DNS伺服器" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:26 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:70 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:16 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:28 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:84 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:24 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:50 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:44 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:23 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:43 -msgid "Use default gateway" -msgstr "使用預設閘道" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:48 -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:164 -#: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:77 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_464xlat.lua:24 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6in4.lua:88 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:58 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6to4.lua:23 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dslite.lua:39 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:74 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:90 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:31 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_l2tp.lua:38 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_ppp.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoa.lua:57 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:51 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:30 -#: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:50 -msgid "Use gateway metric" -msgstr "使用閘道公測數" - -#: protocols/luci-proto-relay/luasrc/model/cbi/admin_network/proto_relay.lua:64 -msgid "Use routing table" -msgstr "使用路由表" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:273 -msgid "" -"Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed " -"address to use, and the Hostname is assigned as a symbolic name to " -"the requesting host. The optional Lease time can be used to set non-" -"standard host-specific lease time, e.g. 12h, 3d or infinite." -msgstr "" -"使用 Add 鍵以便新增一個租賃的項目. 這個 MAC-Address 標誌這" -"個主機, the IPv4-Address 指定固定位址以便使用,Hostname 備指" -"定當作象徵名稱到請求的主機上." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:111 -msgid "Used" -msgstr "已使用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:848 -msgid "Used Key Slot" -msgstr "已使用的關鍵插槽" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:913 -msgid "" -"Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " -"needed with normal WPA(2)-PSK." -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:48 -msgid "User certificate (PEM encoded)" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:61 -msgid "User key (PEM encoded)" -msgstr "" - -#: modules/luci-base/luasrc/view/sysauth.htm:23 -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:41 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:32 -msgid "Username" -msgstr "用戶名稱" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:182 -msgid "VC-Mux" -msgstr "虛擬電路多工器VC-Mux" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:128 -msgid "VDSL" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:172 -msgid "VLANs on %q" -msgstr "VLAN 在 %q" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:171 -msgid "VLANs on %q (%s)" -msgstr "VLAN 在 %q (%s)" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:18 -msgid "VPN Local address" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:22 -msgid "VPN Local port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:15 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:11 -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:15 -msgid "VPN Server" -msgstr "VPN伺服器" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:18 -msgid "VPN Server port" -msgstr "" - -#: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:37 -msgid "VPN Server's certificate SHA1 hash" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/network/proto_vpnc.lua:9 -msgid "VPNC (CISCO 3000 (and others) VPN)" -msgstr "" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:44 -msgid "Vendor" -msgstr "" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:60 -msgid "Vendor Class to send when requesting DHCP" -msgstr "當請求DHCP封包時要傳送的製造商類別碼" - -#: modules/luci-mod-system/luasrc/view/admin_system/upgrade.htm:9 -msgid "Verify" -msgstr "確認" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:76 -msgid "Virtual dynamic interface" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:470 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:471 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:553 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 -msgid "WDS" -msgstr "無線分散系統WDS" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:667 -msgid "WEP Open System" -msgstr "WEP 開放系統" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:668 -msgid "WEP Shared Key" -msgstr "WEP 共享金鑰" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:59 -msgid "WEP passphrase" -msgstr "WEP通關密碼" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 -msgid "WMM Mode" -msgstr "無線多媒體機制" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:68 -msgid "WPA passphrase" -msgstr "WPA 密碼" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:716 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:735 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:740 -msgid "" -"WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " -"and ad-hoc mode) to be installed." -msgstr "" -"WPA-加密需要 wpa_supplican(終端模式)或者hostapd熱點(對AP或者是 ad-hoc模式)已" -"被安裝." - -#: modules/luci-mod-system/luasrc/view/admin_system/applyreboot.htm:46 -msgid "Waiting for changes to be applied..." -msgstr "等待修改被啟用..." - -#: modules/luci-mod-network/luasrc/view/admin_network/diagnostics.htm:34 -msgid "Waiting for command to complete..." -msgstr "等待完整性指令..." - -#: modules/luci-base/luasrc/view/cbi/apply_widget.htm:109 -msgid "Waiting for configuration to be applied… %ds" -msgstr "正在等候設定值套用完畢… %ds" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:56 -msgid "Waiting for device..." -msgstr "正在等待裝置..." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 -msgid "Warning" -msgstr "警告" - -#: modules/luci-mod-system/luasrc/view/admin_system/reboot.htm:14 -msgid "Warning: There are unsaved changes that will get lost on reboot!" -msgstr "警告: 目前存在未儲存的設定,這些設定將會在裝置重啟後遺失!" - -#: modules/luci-mod-system/luasrc/view/admin_system/password.htm:20 -msgid "Weak" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 -msgid "" -"When using a PSK, the PMK can be automatically generated. When enabled, the " -"R0/R1 key options below are not applied. Disable this to use the R0 and R1 " -"key options." -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:74 -msgid "Wi-Fi activity (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:70 -msgid "Wi-Fi client association (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:66 -msgid "Wi-Fi data reception (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:68 -msgid "Wi-Fi data transmission (%s)" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:72 -msgid "Wi-Fi on (%s)" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/wireless_modefreq.htm:166 -msgid "Width" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/network/proto_wireguard.lua:9 -msgid "WireGuard VPN" -msgstr "" - -#: modules/luci-mod-network/luasrc/controller/admin/network.lua:58 -#: modules/luci-mod-status/luasrc/controller/admin/status.lua:28 -#: modules/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm:14 -msgid "Wireless" -msgstr "無線網路" - -#: modules/luci-base/luasrc/model/network.lua:1418 -msgid "Wireless Adapter" -msgstr "無線網卡" - -#: modules/luci-base/luasrc/model/network.lua:1404 -#: modules/luci-base/luasrc/model/network.lua:1865 -msgid "Wireless Network" -msgstr "無線網路" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua:68 -msgid "Wireless Overview" -msgstr "無線預覽" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:362 -msgid "Wireless Security" -msgstr "無線安全" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:30 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is disabled" -msgstr "無線被關閉" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:54 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:77 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:162 -msgid "Wireless is not associated" -msgstr "無線網路未連結" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:15 -msgid "Wireless is restarting..." -msgstr "無線網路重啟中..." - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:126 -msgid "Wireless network is disabled" -msgstr "無線網路已停用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:130 -msgid "Wireless network is enabled" -msgstr "無線網路已啟用" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:138 -msgid "Write received DNS requests to syslog" -msgstr "寫入已接收的DNS請求到系統日誌中" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 -msgid "Write system log to file" -msgstr "將系統日誌寫入檔案" - -#: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:85 -msgid "Yes" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/startup.lua:26 -msgid "" -"You can enable or disable installed init scripts here. Changes will applied " -"after a device reboot.
    Warning: If you disable essential init " -"scripts like \"network\", your device might become inaccessible!" -msgstr "" -"您可以開啟或關閉初始化指令在這. 修改將會在設備重開後被啟用.
    警" -"告: 假如您關閉必要的初始化腳本像\"網路\", 您的設備將可能無法存取!" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:206 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 -msgid "" -"You must enable JavaScript in your browser or LuCI will not work properly." -msgstr "在瀏覽器您必須啟用JavaScript否則LuCI無法正常運作." - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 -msgid "ZRam Compression Algorithm" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 -msgid "ZRam Compression Streams" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 -msgid "ZRam Settings" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 -msgid "ZRam Size" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:187 -msgid "any" -msgstr "任意" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:113 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:121 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:126 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:218 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:282 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:321 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:328 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 -#: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 -#: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:121 -msgid "auto" -msgstr "自動" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:45 -msgid "baseT" -msgstr "baseT" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:187 -msgid "bridged" -msgstr "已橋接" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:35 -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:99 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:31 -msgid "create" -msgstr "" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:69 -msgid "create:" -msgstr "建立:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 -msgid "creates a bridge over specified interface(s)" -msgstr "在指定的介面群上建立橋接" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -msgid "dB" -msgstr "dB" - -#: modules/luci-base/luasrc/view/wifi_assoclist.htm:77 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:34 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:35 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:46 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:47 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:48 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:69 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:279 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:331 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:334 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:337 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:341 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:344 -#: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:347 -msgid "dBm" -msgstr "dBm" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 -msgid "disable" -msgstr "關閉" - -#: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:119 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:524 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:530 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:536 -#: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_dhcpv6.lua:18 -msgid "disabled" -msgstr "已停用" - -#: modules/luci-base/luasrc/view/lease_status.htm:17 -#: modules/luci-base/luasrc/view/lease_status.htm:46 -msgid "expired" -msgstr "過期" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:42 -msgid "" -"file where given DHCP-leases will be stored" -msgstr "" -"當給予DHCP-租賃將" -"會被存檔" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:61 -msgid "forward" -msgstr "轉發" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "full-duplex" -msgstr "全雙工" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:47 -msgid "half-duplex" -msgstr "半雙工" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:621 -msgid "hexadecimal encoded value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:137 -msgid "hidden" -msgstr "隱藏" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:527 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:533 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:538 -msgid "hybrid mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:25 -msgid "if target is a network" -msgstr "假如目標是某個網路" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "input" -msgstr "輸入" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:65 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kB/s" -msgstr "kB/s" - -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:74 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:288 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:291 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:294 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:298 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:301 -#: modules/luci-mod-status/luasrc/view/admin_status/bandwidth.htm:304 -msgid "kbit/s" -msgstr "kbit/s" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:459 -msgid "key between 8 and 63 characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:471 -msgid "key with either 5 or 13 characters" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:50 -msgid "local DNS file" -msgstr "本地DNS 檔案" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 -msgid "minutes" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:43 -msgid "mixed WPA/WPA2" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:225 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "no" -msgstr "無" - -#: modules/luci-mod-network/luasrc/view/admin_network/switch_status.htm:54 -msgid "no link" -msgstr "無連線" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:273 -msgid "non-empty value" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:166 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:176 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:186 -msgid "not present" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:363 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:185 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 -msgid "off" -msgstr "關閉" - -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:184 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 -#: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 -msgid "on" -msgstr "開啟" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:525 -msgid "one of: - %s" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "open" -msgstr "打開" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:46 -msgid "output" -msgstr "" - -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:223 -msgid "overlay" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:305 -msgid "positive decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:297 -msgid "positive integer value" -msgstr "" - -#: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:34 -msgid "random" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:526 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:532 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:537 -msgid "relay mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:188 -msgid "routed" -msgstr "路由" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 -msgid "sec" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:525 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:531 -msgid "server mode" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:544 -msgid "stateful-only" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:542 -msgid "stateless" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:543 -msgid "stateless + stateful" -msgstr "" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:369 -msgid "tagged" -msgstr "標籤" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 -msgid "time units (TUs / 1.024 ms) [1000-65535]" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:611 -msgid "unique value" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:46 -msgid "unknown" -msgstr "未知" - -#: modules/luci-base/luasrc/view/lease_status.htm:15 -#: modules/luci-base/luasrc/view/lease_status.htm:44 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:197 -msgid "unlimited" -msgstr "無限" - -#: modules/luci-base/luasrc/view/cbi/firewall_zonelist.htm:53 -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:38 -msgid "unspecified" -msgstr "尚未指定" - -#: modules/luci-base/luasrc/view/cbi/network_netlist.htm:71 -msgid "unspecified -or- create:" -msgstr "尚未指定 - 或 -建立:" - -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:366 -msgid "untagged" -msgstr "尚未標籤" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 -msgid "valid IP address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 -msgid "valid IPv4 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 -msgid "valid IPv4 address or network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 -msgid "valid IPv4 address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 -msgid "valid IPv4 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 -msgid "valid IPv4 or IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 -msgid "valid IPv4 prefix value (0-32)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 -msgid "valid IPv6 CIDR" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 -msgid "valid IPv6 address or prefix" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 -msgid "valid IPv6 host id" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 -msgid "valid IPv6 network" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 -msgid "valid IPv6 prefix value (0-128)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 -msgid "valid MAC address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 -msgid "valid UCI identifier" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 -msgid "valid UCI identifier, hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 -msgid "valid address:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 -msgid "valid date (YYYY-MM-DD)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 -msgid "valid decimal value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 -msgid "valid hexadecimal WEP key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 -msgid "valid hexadecimal WPA key" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 -msgid "valid host:port" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 -msgid "valid hostname" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 -msgid "valid hostname or IP address" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 -msgid "valid integer value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 -msgid "valid network in address/netmask notation" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 -msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 -msgid "valid port or port range (port1-port2)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 -msgid "valid port value" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 -msgid "valid time (HH:MM:SS)" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 -msgid "value between %d and %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:480 -msgid "value between %f and %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:484 -msgid "value greater or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:488 -msgid "value smaller or equal to %f" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:499 -msgid "value with at least %d characters" -msgstr "" - -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:504 -msgid "value with at most %d characters" -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:34 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:221 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab.lua:232 -msgid "yes" -msgstr "是的" - -#: modules/luci-base/luasrc/view/cbi/delegator.htm:20 -msgid "« Back" -msgstr "« 倒退" - -#~ msgid "kB" -#~ msgstr "kB" - -#~ msgid "" -#~ "Here you can paste public SSH-Keys (one per line) for SSH public-key " -#~ "authentication." -#~ msgstr "在這裡貼上公用SSH-Keys (每行一個)以便驗證" - -#~ msgid "Password successfully changed!" -#~ msgstr "密碼已變更成功!" - -#~ msgid "Unknown Error, password not changed!" -#~ msgstr "未知錯誤, 密碼尚未改變!" - -#~ msgid "Design" -#~ msgstr "設計規劃" - -#~ msgid "Available packages" -#~ msgstr "可用軟體包" - -#~ msgid "Displaying only packages containing" -#~ msgstr "僅顯示內含的軟體" - -#~ msgid "Download and install package" -#~ msgstr "下載並安裝軟體包" - -#~ msgid "Filter" -#~ msgstr "過濾器" - -#~ msgid "Find package" -#~ msgstr "搜尋軟體包" - -#~ msgid "Free space" -#~ msgstr "剩餘空間" - -#~ msgid "Install" -#~ msgstr "安裝" - -#~ msgid "Installed packages" -#~ msgstr "安裝軟體包" - -#~ msgid "No package lists available" -#~ msgstr "尚無軟體包列表可使用" - -#~ msgid "OK" -#~ msgstr "行" - -#~ msgid "OPKG-Configuration" -#~ msgstr "OPKG-設定值" - -#~ msgid "Package lists are older than 24 hours" -#~ msgstr "軟體包列表過期已超過24小時" - -#~ msgid "Package name" -#~ msgstr "軟體包名稱" - -#~ msgid "Software" -#~ msgstr "軟體" - -#~ msgid "Update lists" -#~ msgstr "上傳清單" - -#~ msgid "Version" -#~ msgstr "版本" - -#~ msgid "none" -#~ msgstr "無" - -#~ msgid "Disable DNS setup" -#~ msgstr "關閉DNS設置" - -#~ msgid "IPv4 and IPv6" -#~ msgstr "IPv4和IPv6" - -#~ msgid "IPv4 only" -#~ msgstr "僅用IPv4" - -#~ msgid "IPv6 only" -#~ msgstr "僅用IPv6" - -#~ msgid "Lease validity time" -#~ msgstr "租賃有效時間" - -#~ msgid "Multicast address" -#~ msgstr "多點群播位址" - -#~ msgid "Protocol family" -#~ msgstr "協定家族" - -#~ msgid "No chains in this table" -#~ msgstr "尚未綁在這個表格中" - -#~ msgid "Configuration files will be kept." -#~ msgstr "設定檔將被存檔" - -#~ msgid "Note: Configuration files will be erased." -#~ msgstr "注意:設定檔將被刪除." - -#~ msgid "%s - %s" -#~ msgstr "%s - %s" - -#~ msgid "Activate this network" -#~ msgstr "啟用此網路" - -#~ msgid "Hermes 802.11b Wireless Controller" -#~ msgstr "Hermes 802.11b 無線網路控制器" - -#~ msgid "Interface is shutting down..." -#~ msgstr "介面正在關閉中..." - -#~ msgid "Interface reconnected" -#~ msgstr "介面已重新連線" - -#~ msgid "Interface shut down" -#~ msgstr "介面關閉" - -#~ msgid "Prism2/2.5/3 802.11b Wireless Controller" -#~ msgstr "Prism2/2.5/3 802.11b 無線控制器" - -#~ msgid "RaLink 802.11%s Wireless Controller" -#~ msgstr "RaLink 802.11%s 無線控制器" - -#~ msgid "" -#~ "Really shutdown interface \"%s\"? You might lose access to this device if " -#~ "you are connected via this interface." -#~ msgstr "" -#~ "真的要關閉這個介面 \"%s\" ?!\n" -#~ "假如您要透過這個介面連線您可能會無法存取這個設備." - -#~ msgid "Reconnecting interface" -#~ msgstr "重連這個介面中" - -#~ msgid "Shutdown this network" -#~ msgstr "關閉這個網路" - -#~ msgid "Wireless restarted" -#~ msgstr "無線網路已重啟" - -#~ msgid "Wireless shut down" -#~ msgstr "無線網路關閉" - -#~ msgid "DHCP Leases" -#~ msgstr "DHCP的釋放週期" - -#~ msgid "DHCPv6 Leases" -#~ msgstr "DHCPv6版釋放時間週期" - -#~ msgid "" -#~ "Really delete this interface? The deletion cannot be undone! You might " -#~ "lose access to this device if you are connected via this interface." -#~ msgstr "" -#~ "您真的要刪除這個介面?您將無法復原這項刪除!\n" -#~ "假如您要透過這個介面連線您可能會無法存取這個設備." - -#, fuzzy -#~ msgid "" -#~ "Really shut down network? You might lose access to this device if you are " -#~ "connected via this interface." -#~ msgstr "" -#~ "真的要刪除這個網路 ?\n" -#~ "假如您是透過這個介面連線您可能會無法存取這個設備." - -#~ msgid "Sort" -#~ msgstr "分類" - -#~ msgid "help" -#~ msgstr "幫助" - -#~ msgid "IPv4 WAN Status" -#~ msgstr "IPv4寬頻連線狀態" - -#~ msgid "IPv6 WAN Status" -#~ msgstr "IPv6寬頻連線狀態" - -#~ msgid "Apply" -#~ msgstr "套用" - -#~ msgid "Applying changes" -#~ msgstr "正在套用變更" - -#~ msgid "Configuration applied." -#~ msgstr "啟用設定" - -#~ msgid "Save & Apply" -#~ msgstr "保存 & 啟用" - -#~ msgid "The following changes have been committed" -#~ msgstr "下列的修改已經被提交" - -#~ msgid "There are no pending changes to apply!" -#~ msgstr "尚無暫存的修改等待套用" - -#~ msgid "Action" -#~ msgstr "動作" - -#~ msgid "Buttons" -#~ msgstr "按鈕" - -#~ msgid "Handler" -#~ msgstr "多執行緒" - -#~ msgid "Maximum hold time" -#~ msgstr "可持有最長時間" - -#~ msgid "Minimum hold time" -#~ msgstr "可持有的最低時間" - -#~ msgid "Path to executable which handles the button event" -#~ msgstr "處理按鍵效果可執行檔路徑" - -#~ msgid "Specifies the button state to handle" -#~ msgstr "指定這個按鈕狀態以便操作" - -#~ msgid "This page allows the configuration of custom button actions" -#~ msgstr "這一頁允許客製化按鍵動作的設定" - -#~ msgid "Leasetime" -#~ msgstr "租賃時間" - -#~ msgid "AR Support" -#~ msgstr "AR支援" - -#~ msgid "Atheros 802.11%s Wireless Controller" -#~ msgstr "Atheros 802.11%s 無線控制器" - -#~ msgid "Background Scan" -#~ msgstr "背景搜尋" - -#~ msgid "Compression" -#~ msgstr "壓縮" - -#~ msgid "Disable HW-Beacon timer" -#~ msgstr "關閉硬體燈號計時器" - -#~ msgid "Do not send probe responses" -#~ msgstr "不傳送探測回應" - -#~ msgid "Fast Frames" -#~ msgstr "快速迅框群" - -#~ msgid "Maximum Rate" -#~ msgstr "最快速度" - -#~ msgid "Minimum Rate" -#~ msgstr "最低速度" - -#~ msgid "Multicast Rate" -#~ msgstr "多點群播速度" - -#~ msgid "Outdoor Channels" -#~ msgstr "室外通道" - -#~ msgid "Regulatory Domain" -#~ msgstr "監管網域" - -#~ msgid "Separate WDS" -#~ msgstr "分隔WDS中繼" - -#~ msgid "Static WDS" -#~ msgstr "靜態WDS" - -#~ msgid "Turbo Mode" -#~ msgstr "渦輪爆衝模式" - -#~ msgid "XR Support" -#~ msgstr "支援XR無線陣列" - -#~ msgid "An additional network will be created if you leave this unchecked." -#~ msgstr "取消選取將會另外建立一個新網路,而不會覆蓋目前的網路設定" - -#~ msgid "Join Network: Settings" -#~ msgstr "加入網路的設定" - -#~ msgid "CPU" -#~ msgstr "CPU" - -#~ msgid "Port %d" -#~ msgstr "埠 %d" - -#~ msgid "Port %d is untagged in multiple VLANs!" -#~ msgstr "埠 %d 尚未標記在多個VLANs中!" - -#~ msgid "VLAN Interface" -#~ msgstr "VLAN介面" diff --git a/luci-base/root/etc/config/luci b/luci-base/root/etc/config/luci deleted file mode 100644 index 82c2230e5..000000000 --- a/luci-base/root/etc/config/luci +++ /dev/null @@ -1,30 +0,0 @@ -config core main - option lang auto - option mediaurlbase /luci-static/bootstrap - option resourcebase /luci-static/resources - -config extern flash_keep - option uci "/etc/config/" - option dropbear "/etc/dropbear/" - option openvpn "/etc/openvpn/" - option passwd "/etc/passwd" - option opkg "/etc/opkg.conf" - option firewall "/etc/firewall.user" - option uploads "/lib/uci/upload/" - -config internal languages - -config internal sauth - option sessionpath "/tmp/luci-sessions" - option sessiontime 3600 - -config internal ccache - option enable 1 - -config internal themes - -config internal apply - option rollback 30 - option holdoff 4 - option timeout 5 - option display 1.5 diff --git a/luci-base/root/etc/config/ucitrack b/luci-base/root/etc/config/ucitrack deleted file mode 100644 index e63986630..000000000 --- a/luci-base/root/etc/config/ucitrack +++ /dev/null @@ -1,56 +0,0 @@ -config network - option init network - list affects dhcp - list affects radvd - -config wireless - list affects network - -config firewall - option init firewall - list affects luci-splash - list affects qos - list affects miniupnpd - -config olsr - option init olsrd - -config dhcp - option init dnsmasq - list affects odhcpd - -config odhcpd - option init odhcpd - -config dropbear - option init dropbear - -config httpd - option init httpd - -config fstab - option exec '/sbin/block mount' - -config qos - option init qos - -config system - option init led - option exec '/etc/init.d/log reload' - list affects luci_statistics - list affects dhcp - -config luci_splash - option init luci_splash - -config upnpd - option init miniupnpd - -config ntpclient - option init ntpclient - -config samba - option init samba - -config tinyproxy - option init tinyproxy diff --git a/luci-base/root/etc/init.d/ucitrack b/luci-base/root/etc/init.d/ucitrack deleted file mode 100755 index 27d34fa29..000000000 --- a/luci-base/root/etc/init.d/ucitrack +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/sh /etc/rc.common - -START=80 -USE_PROCD=1 - -register_init() { - local config="$1" - local init="$2" - shift; shift - - if [ -x "$init" ] && "$init" enabled && ! grep -sqE 'USE_PROCD=.' "$init"; then - logger -t "ucitrack" "Setting up /etc/config/$config reload trigger for non-procd $init" - procd_add_config_trigger "config.change" "$config" "$init" "$@" - fi -} - -register_trigger() { - local sid="$1" - local config init exec affects affected - - config_get config "$sid" TYPE - config_get init "$sid" init - config_get exec "$sid" exec - config_get affects "$sid" affects - - if [ -n "$init" ]; then - register_init "$config" "/etc/init.d/$init" "reload" - fi - - if [ -n "$exec" ]; then - case "$exec" in - /etc/init.d/*) - set -- $exec - register_init "$config" "$@" - ;; - *) - logger -t "ucitrack" "Setting up non-init /etc/config/$config reload handler: $exec" - procd_add_config_trigger "config.change" "$config" "$exec" - ;; - esac - fi - - for affected in $affects; do - logger -t "ucitrack" "Setting up /etc/config/$config reload dependency on /etc/config/$affected" - procd_add_config_trigger "config.change" "$affected" \ - ubus call service event \ - "$(printf '{"type":"config.change","data":{"package":"%s"}}' $config)" - done -} - -service_triggers() { - config_foreach register_trigger -} - -start_service() { - config_load ucitrack -} diff --git a/luci-base/root/etc/luci-uploads/.placeholder b/luci-base/root/etc/luci-uploads/.placeholder deleted file mode 100644 index e69de29bb..000000000 diff --git a/luci-base/root/sbin/luci-reload b/luci-base/root/sbin/luci-reload deleted file mode 100755 index cc41da2bb..000000000 --- a/luci-base/root/sbin/luci-reload +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh -. /lib/functions.sh - -apply_config() { - config_get init "$1" init - config_get exec "$1" exec - config_get test "$1" test - - echo "$2" > "/var/run/luci-reload-status" - - [ -n "$init" ] && reload_init "$2" "$init" "$test" - [ -n "$exec" ] && reload_exec "$2" "$exec" "$test" -} - -reload_exec() { - local service="$1" - local ok="$3" - set -- $2 - local cmd="$1"; shift - - [ -x "$cmd" ] && { - echo "Reloading $service... " - ( $cmd "$@" ) 2>/dev/null 1>&2 - [ -n "$ok" -a "$?" != "$ok" ] && echo '!!! Failed to reload' $service '!!!' - } -} - -reload_init() { - [ -x /etc/init.d/$2 ] && /etc/init.d/$2 enabled && { - echo "Reloading $1... " - /etc/init.d/$2 reload >/dev/null 2>&1 - [ -n "$3" -a "$?" != "$3" ] && echo '!!! Failed to reload' $1 '!!!' - } -} - -lock "/var/run/luci-reload" - -config_load ucitrack - -for i in $*; do - config_foreach apply_config $i $i -done - -rm -f "/var/run/luci-reload-status" -lock -u "/var/run/luci-reload" diff --git a/luci-base/root/usr/libexec/rpcd/luci b/luci-base/root/usr/libexec/rpcd/luci deleted file mode 100755 index b89501373..000000000 --- a/luci-base/root/usr/libexec/rpcd/luci +++ /dev/null @@ -1,472 +0,0 @@ -#!/usr/bin/env lua - -local json = require "luci.jsonc" -local fs = require "nixio.fs" - -local function readfile(path) - local s = fs.readfile(path) - return s and (s:gsub("^%s+", ""):gsub("%s+$", "")) -end - -local methods = { - getInitList = { - args = { name = "name" }, - call = function(args) - local sys = require "luci.sys" - local _, name, scripts = nil, nil, {} - for _, name in ipairs(args.name and { args.name } or sys.init.names()) do - local index = sys.init.index(name) - if index then - scripts[name] = { index = index, enabled = sys.init.enabled(name) } - else - return { error = "No such init script" } - end - end - return scripts - end - }, - - setInitAction = { - args = { name = "name", action = "action" }, - call = function(args) - local sys = require "luci.sys" - if type(sys.init[args.action]) ~= "function" then - return { error = "Invalid action" } - end - return { result = sys.init[args.action](args.name) } - end - }, - - getLocaltime = { - call = function(args) - return { result = os.time() } - end - }, - - setLocaltime = { - args = { localtime = 0 }, - call = function(args) - local sys = require "luci.sys" - local date = os.date("*t", args.localtime) - if date then - sys.call("date -s '%04d-%02d-%02d %02d:%02d:%02d' >/dev/null" %{ date.year, date.month, date.day, date.hour, date.min, date.sec }) - sys.call("/etc/init.d/sysfixtime restart >/dev/null") - end - return { result = args.localtime } - end - }, - - getTimezones = { - call = function(args) - local util = require "luci.util" - local zones = require "luci.sys.zoneinfo" - - local tz = readfile("/etc/TZ") - local res = util.ubus("uci", "get", { - config = "system", - section = "@system[0]", - option = "zonename" - }) - - local result = {} - local _, zone - for _, zone in ipairs(zones.TZ) do - result[zone[1]] = { - tzstring = zone[2], - active = (res and res.value == zone[1]) and true or nil - } - end - return result - end - }, - - getLEDs = { - call = function() - local iter = fs.dir("/sys/class/leds") - local result = { } - - if iter then - local led - for led in iter do - local m, s - - result[led] = { triggers = {} } - - s = readfile("/sys/class/leds/"..led.."/trigger") - for s in (s or ""):gmatch("%S+") do - m = s:match("^%[(.+)%]$") - result[led].triggers[#result[led].triggers+1] = m or s - result[led].active_trigger = m or result[led].active_trigger - end - - s = readfile("/sys/class/leds/"..led.."/brightness") - if s then - result[led].brightness = tonumber(s) - end - - s = readfile("/sys/class/leds/"..led.."/max_brightness") - if s then - result[led].max_brightness = tonumber(s) - end - end - end - - return result - end - }, - - getUSBDevices = { - call = function() - local fs = require "nixio.fs" - local iter = fs.glob("/sys/bus/usb/devices/[0-9]*/manufacturer") - local result = { } - - if iter then - result.devices = {} - - local p - for p in iter do - local id = p:match("/([^/]+)/manufacturer$") - - result.devices[#result.devices+1] = { - id = id, - vid = readfile("/sys/bus/usb/devices/"..id.."/idVendor"), - pid = readfile("/sys/bus/usb/devices/"..id.."/idProduct"), - vendor = readfile("/sys/bus/usb/devices/"..id.."/manufacturer"), - product = readfile("/sys/bus/usb/devices/"..id.."/product"), - speed = tonumber((readfile("/sys/bus/usb/devices/"..id.."/product"))) - } - end - end - - iter = fs.glob("/sys/bus/usb/devices/*/*-port[0-9]*") - - if iter then - result.ports = {} - - local p - for p in iter do - local port = p:match("([^/]+)$") - local link = fs.readlink(p.."/device") - - result.ports[#result.ports+1] = { - port = port, - device = link and fs.basename(link) - } - end - end - - return result - end - }, - - getIfaddrs = { - call = function() - return { result = nixio.getifaddrs() } - end - }, - - getHostHints = { - call = function() - local sys = require "luci.sys" - return sys.net.host_hints() - end - }, - - getDUIDHints = { - call = function() - local fp = io.open('/var/hosts/odhcpd') - local result = { } - if fp then - for line in fp:lines() do - local dev, duid, name = string.match(line, '# (%S+)%s+(%S+)%s+%d+%s+(%S+)') - if dev and duid and name then - result[duid] = { - name = (name ~= "-") and name or nil, - device = dev - } - end - end - fp:close() - end - return result - end - }, - - getDHCPLeases = { - args = { family = 0 }, - call = function(args) - local s = require "luci.tools.status" - - if args.family == 4 then - return { dhcp_leases = s.dhcp_leases() } - elseif args.family == 6 then - return { dhcp6_leases = s.dhcp6_leases() } - else - return { - dhcp_leases = s.dhcp_leases(), - dhcp6_leases = s.dhcp6_leases() - } - end - end - }, - - getNetworkDevices = { - call = function(args) - local dir = fs.dir("/sys/class/net") - local result = { } - if dir then - local dev - for dev in dir do - if not result[dev] then - result[dev] = { name = dev } - end - - if fs.access("/sys/class/net/"..dev.."/master") then - local brname = fs.basename(fs.readlink("/sys/class/net/"..dev.."/master")) - if not result[brname] then - result[brname] = { name = brname } - end - - if not result[brname].ports then - result[brname].ports = { } - end - - result[brname].ports[#result[brname].ports+1] = dev - elseif fs.access("/sys/class/net/"..dev.."/bridge") then - if not result[dev].ports then - result[dev].ports = { } - end - - result[dev].id = readfile("/sys/class/net/"..dev.."/bridge/bridge_id") - result[dev].stp = (readfile("/sys/class/net/"..dev.."/bridge/stp_state") ~= "0") - result[dev].bridge = true - end - - local opr = readfile("/sys/class/net/"..dev.."/operstate") - - result[dev].up = (opr == "up" or opr == "unknown") - result[dev].type = tonumber(readfile("/sys/class/net/"..dev.."/type")) - result[dev].name = dev - - local mtu = tonumber(readfile("/sys/class/net/"..dev.."/mtu")) - if mtu and mtu > 0 then - result[dev].mtu = mtu - end - - local qlen = tonumber(readfile("/sys/class/net/"..dev.."/tx_queue_len")) - if qlen and qlen > 0 then - result[dev].qlen = qlen - end - - local master = fs.readlink("/sys/class/net/"..dev.."/master") - if master then - result[dev].master = fs.basename(master) - end - - local mac = readfile("/sys/class/net/"..dev.."/address") - if mac and #mac == 17 then - result[dev].mac = mac - end - end - end - return result - end - }, - - getBoardJSON = { - call = function(args) - local jsc = require "luci.jsonc" - return jsc.parse(fs.readfile("/etc/board.json") or "") - end - }, - - getConntrackHelpers = { - call = function() - local ok, fd = pcall(io.open, "/usr/share/fw3/helpers.conf", "r") - local rv = {} - - if ok then - local entry - - while true do - local line = fd:read("*l") - if not line then - break - end - - if line:match("^%s*config%s") then - if entry then - rv[#rv+1] = entry - end - entry = {} - else - local opt, val = line:match("^%s*option%s+(%S+)%s+(%S.*)$") - if opt and val then - opt = opt:gsub("^'(.+)'$", "%1"):gsub('^"(.+)"$', "%1") - val = val:gsub("^'(.+)'$", "%1"):gsub('^"(.+)"$', "%1") - entry[opt] = val - end - end - end - - if entry then - rv[#rv+1] = entry - end - - fd:close() - end - - return { result = rv } - end - }, - - getFeatures = { - call = function() - local fs = require "nixio.fs" - local rv = {} - local ok, fd - - rv.firewall = fs.access("/sbin/fw3") - rv.opkg = fs.access("/bin/opkg") - rv.offloading = fs.access("/sys/module/xt_FLOWOFFLOAD/refcnt") - rv.br2684ctl = fs.access("/usr/sbin/br2684ctl") - rv.swconfig = fs.access("/sbin/swconfig") - rv.odhcpd = fs.access("/usr/sbin/odhcpd") - rv.zram = fs.access("/sys/class/zram-control") - rv.sysntpd = fs.readlink("/usr/sbin/ntpd") and true - - local wifi_features = { "eap", "11n", "11ac", "11r", "11w", "acs", "sae", "owe", "suiteb192" } - - if fs.access("/usr/sbin/hostapd") then - rv.hostapd = {} - - local _, feature - for _, feature in ipairs(wifi_features) do - rv.hostapd[feature] = - (os.execute(string.format("/usr/sbin/hostapd -v%s >/dev/null 2>/dev/null", feature)) == 0) - end - end - - if fs.access("/usr/sbin/wpa_supplicant") then - rv.wpasupplicant = {} - - local _, feature - for _, feature in ipairs(wifi_features) do - rv.wpasupplicant[feature] = - (os.execute(string.format("/usr/sbin/wpa_supplicant -v%s >/dev/null 2>/dev/null", feature)) == 0) - end - end - - ok, fd = pcall(io.popen, "dnsmasq --version 2>/dev/null") - if ok then - rv.dnsmasq = {} - - while true do - local line = fd:read("*l") - if not line then - break - end - - local opts = line:match("^Compile time options: (.+)$") - if opts then - local opt - for opt in opts:gmatch("%S+") do - local no = opt:match("^no%-(%S+)$") - rv.dnsmasq[string.lower(no or opt)] = not no - end - break - end - end - - fd:close() - end - - ok, fd = pcall(io.popen, "ipset --help 2>/dev/null") - if ok then - rv.ipset = {} - - local sets = false - - while true do - local line = fd:read("*l") - if not line then - break - elseif line:match("^Supported set types:") then - sets = true - elseif sets then - local set, ver = line:match("^%s+(%S+)%s+(%d+)") - if set and not rv.ipset[set] then - rv.ipset[set] = tonumber(ver) - end - end - end - - fd:close() - end - - return rv - end - } -} - -local function parseInput() - local parse = json.new() - local done, err - - while true do - local chunk = io.read(4096) - if not chunk then - break - elseif not done and not err then - done, err = parse:parse(chunk) - end - end - - if not done then - print(json.stringify({ error = err or "Incomplete input" })) - os.exit(1) - end - - return parse:get() -end - -local function validateArgs(func, uargs) - local method = methods[func] - if not method then - print(json.stringify({ error = "Method not found" })) - os.exit(1) - end - - if type(uargs) ~= "table" then - print(json.stringify({ error = "Invalid arguments" })) - os.exit(1) - end - - uargs.ubus_rpc_session = nil - - local k, v - local margs = method.args or {} - for k, v in pairs(uargs) do - if margs[k] == nil or - (v ~= nil and type(v) ~= type(margs[k])) - then - print(json.stringify({ error = "Invalid arguments" })) - os.exit(1) - end - end - - return method -end - -if arg[1] == "list" then - local _, method, rv = nil, nil, {} - for _, method in pairs(methods) do rv[_] = method.args or {} end - print((json.stringify(rv):gsub(":%[%]", ":{}"))) -elseif arg[1] == "call" then - local args = parseInput() - local method = validateArgs(arg[2], args) - local result, code = method.call(args) - print((json.stringify(result):gsub("^%[%]$", "{}"))) - os.exit(code or 0) -end diff --git a/luci-base/root/usr/share/acl.d/luci-base.json b/luci-base/root/usr/share/acl.d/luci-base.json deleted file mode 100644 index 5ffcbdc2e..000000000 --- a/luci-base/root/usr/share/acl.d/luci-base.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "unauthenticated": { - "description": "Allow system feature probing", - "read": { - "ubus": { - "luci": [ "getFeatures" ] - } - } - }, - - "uci-access": { - "description": "Grant uci write access to all configurations", - "read": { - "uci": [ "*" ] - }, - "write": { - "uci": [ "*" ] - } - }, - "luci-access": { - "description": "Grant access to basic LuCI procedures", - "read": { - "ubus": { - "iwinfo": [ "info" ], - "luci": [ "getBoardJSON", "getDUIDHints", "getHostHints", "getIfaddrs", "getInitList", "getLocaltime", "getTimezones", "getDHCPLeases", "getLEDs", "getNetworkDevices", "getUSBDevices" ], - "network.device": [ "status" ], - "network.interface": [ "dump" ], - "network.wireless": [ "status" ], - "network": [ "get_proto_handlers" ], - "uci": [ "changes", "get" ] - }, - "uci": [ "*" ] - }, - "write": { - "ubus": { - "luci": [ "setInitAction", "setLocaltime" ], - "uci": [ "add", "apply", "confirm", "delete", "order", "set" ] - }, - "uci": [ "*" ] - } - }, - "luci-app-firewall": { - "description": "Grant access to firewall procedures", - "read": { - "ubus": { - "luci": [ "getConntrackHelpers" ] - }, - "uci": [ "firewall" ] - }, - "write": { - "uci": [ "firewall" ] - } - } -} diff --git a/luci-base/root/usr/share/rpcd/acl.d/luci-base.json b/luci-base/root/usr/share/rpcd/acl.d/luci-base.json deleted file mode 100644 index 5ffcbdc2e..000000000 --- a/luci-base/root/usr/share/rpcd/acl.d/luci-base.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "unauthenticated": { - "description": "Allow system feature probing", - "read": { - "ubus": { - "luci": [ "getFeatures" ] - } - } - }, - - "uci-access": { - "description": "Grant uci write access to all configurations", - "read": { - "uci": [ "*" ] - }, - "write": { - "uci": [ "*" ] - } - }, - "luci-access": { - "description": "Grant access to basic LuCI procedures", - "read": { - "ubus": { - "iwinfo": [ "info" ], - "luci": [ "getBoardJSON", "getDUIDHints", "getHostHints", "getIfaddrs", "getInitList", "getLocaltime", "getTimezones", "getDHCPLeases", "getLEDs", "getNetworkDevices", "getUSBDevices" ], - "network.device": [ "status" ], - "network.interface": [ "dump" ], - "network.wireless": [ "status" ], - "network": [ "get_proto_handlers" ], - "uci": [ "changes", "get" ] - }, - "uci": [ "*" ] - }, - "write": { - "ubus": { - "luci": [ "setInitAction", "setLocaltime" ], - "uci": [ "add", "apply", "confirm", "delete", "order", "set" ] - }, - "uci": [ "*" ] - } - }, - "luci-app-firewall": { - "description": "Grant access to firewall procedures", - "read": { - "ubus": { - "luci": [ "getConntrackHelpers" ] - }, - "uci": [ "firewall" ] - }, - "write": { - "uci": [ "firewall" ] - } - } -} diff --git a/luci-base/root/www/index.html b/luci-base/root/www/index.html deleted file mode 100644 index 6899820a4..000000000 --- a/luci-base/root/www/index.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - - -LuCI - Lua Configuration Interface - - diff --git a/luci-base/src/Makefile b/luci-base/src/Makefile deleted file mode 100644 index 3e6ead108..000000000 --- a/luci-base/src/Makefile +++ /dev/null @@ -1,24 +0,0 @@ -%.o: %.c - $(CC) $(CPPFLAGS) $(CFLAGS) $(FPIC) -c -o $@ $< - -clean: - rm -f po2lmo parser.so version.lua *.o - -jsmin: jsmin.o - $(CC) $(LDFLAGS) -o $@ $^ - -po2lmo: po2lmo.o template_lmo.o - $(CC) $(LDFLAGS) -o $@ $^ - -parser.so: template_parser.o template_utils.o template_lmo.o template_lualib.o - $(CC) $(LDFLAGS) -shared -o $@ $^ - -version.lua: - ./mkversion.sh $@ $(LUCI_VERSION) "$(LUCI_GITBRANCH)" - -compile: parser.so version.lua - -install: compile - mkdir -p $(DESTDIR)/usr/lib/lua/luci/template - cp parser.so $(DESTDIR)/usr/lib/lua/luci/template/parser.so - cp version.lua $(DESTDIR)/usr/lib/lua/luci/version.lua diff --git a/luci-base/src/jsmin.c b/luci-base/src/jsmin.c deleted file mode 100644 index d23718df3..000000000 --- a/luci-base/src/jsmin.c +++ /dev/null @@ -1,292 +0,0 @@ -/* jsmin.c - 2011-09-30 - -Copyright (c) 2002 Douglas Crockford (www.crockford.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the "Software"), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies -of the Software, and to permit persons to whom the Software is furnished to do -so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -The Software shall be used for Good, not Evil. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. -*/ - -#include -#include - -static int theA; -static int theB; -static int theLookahead = EOF; - - -/* isAlphanum -- return true if the character is a letter, digit, underscore, - dollar sign, or non-ASCII character. -*/ - -static int -isAlphanum(int c) -{ - return ((c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || - (c >= 'A' && c <= 'Z') || c == '_' || c == '$' || c == '\\' || - c > 126); -} - - -/* get -- return the next character from stdin. Watch out for lookahead. If - the character is a control character, translate it to a space or - linefeed. -*/ - -static int -get() -{ - int c = theLookahead; - theLookahead = EOF; - if (c == EOF) { - c = getc(stdin); - } - if (c >= ' ' || c == '\n' || c == EOF) { - return c; - } - if (c == '\r') { - return '\n'; - } - return ' '; -} - - -/* peek -- get the next character without getting it. -*/ - -static int -peek() -{ - theLookahead = get(); - return theLookahead; -} - - -/* next -- get the next character, excluding comments. peek() is used to see - if a '/' is followed by a '/' or '*'. -*/ - -static int -next() -{ - int c = get(); - if (c == '/') { - switch (peek()) { - case '/': - for (;;) { - c = get(); - if (c <= '\n') { - return c; - } - } - case '*': - get(); - for (;;) { - switch (get()) { - case '*': - if (peek() == '/') { - get(); - return ' '; - } - break; - case EOF: - fprintf(stderr, "Error: JSMIN Unterminated comment.\n"); - exit(1); - } - } - default: - return c; - } - } - return c; -} - - -/* action -- do something! What you do is determined by the argument: - 1 Output A. Copy B to A. Get the next B. - 2 Copy B to A. Get the next B. (Delete A). - 3 Get the next B. (Delete B). - action treats a string as a single character. Wow! - action recognizes a regular expression if it is preceded by ( or , or =. -*/ - -static void -action(int d) -{ - switch (d) { - case 1: - putc(theA, stdout); - case 2: - theA = theB; - if (theA == '\'' || theA == '"' || theA == '`') { - for (;;) { - putc(theA, stdout); - theA = get(); - if (theA == theB) { - break; - } - if (theA == '\\') { - putc(theA, stdout); - theA = get(); - } - if (theA == EOF) { - fprintf(stderr, "Error: JSMIN unterminated string literal."); - exit(1); - } - } - } - case 3: - theB = next(); - if (theB == '/' && (theA == '(' || theA == ',' || theA == '=' || - theA == ':' || theA == '[' || theA == '!' || - theA == '&' || theA == '|' || theA == '?' || - theA == '{' || theA == '}' || theA == ';' || - theA == '\n')) { - putc(theA, stdout); - putc(theB, stdout); - for (;;) { - theA = get(); - if (theA == '[') { - for (;;) { - putc(theA, stdout); - theA = get(); - if (theA == ']') { - break; - } - if (theA == '\\') { - putc(theA, stdout); - theA = get(); - } - if (theA == EOF) { - fprintf(stderr, - "Error: JSMIN unterminated set in Regular Expression literal.\n"); - exit(1); - } - } - } else if (theA == '/') { - break; - } else if (theA =='\\') { - putc(theA, stdout); - theA = get(); - } - if (theA == EOF) { - fprintf(stderr, - "Error: JSMIN unterminated Regular Expression literal.\n"); - exit(1); - } - putc(theA, stdout); - } - theB = next(); - } - } -} - - -/* jsmin -- Copy the input to the output, deleting the characters which are - insignificant to JavaScript. Comments will be removed. Tabs will be - replaced with spaces. Carriage returns will be replaced with linefeeds. - Most spaces and linefeeds will be removed. -*/ - -static void -jsmin() -{ - theA = '\n'; - action(3); - while (theA != EOF) { - switch (theA) { - case ' ': - if (isAlphanum(theB)) { - action(1); - } else { - action(2); - } - break; - case '\n': - switch (theB) { - case '{': - case '[': - case '(': - case '+': - case '-': - action(1); - break; - case ' ': - action(3); - break; - default: - if (isAlphanum(theB)) { - action(1); - } else { - action(2); - } - } - break; - default: - switch (theB) { - case ' ': - if (isAlphanum(theA)) { - action(1); - break; - } - action(3); - break; - case '\n': - switch (theA) { - case '}': - case ']': - case ')': - case '+': - case '-': - case '"': - case '\'': - case '`': - action(1); - break; - default: - if (isAlphanum(theA)) { - action(1); - } else { - action(3); - } - } - break; - default: - action(1); - break; - } - } - } -} - - -/* main -- Output any command line arguments as comments - and then minify the input. -*/ -extern int -main(int argc, char* argv[]) -{ - int i; - for (i = 1; i < argc; i += 1) { - fprintf(stdout, "// %s\n", argv[i]); - } - jsmin(); - return 0; -} diff --git a/luci-base/src/mkversion.sh b/luci-base/src/mkversion.sh deleted file mode 100755 index e2d02c1c7..000000000 --- a/luci-base/src/mkversion.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -cat < $1 -local pcall, dofile, _G = pcall, dofile, _G - -module "luci.version" - -if pcall(dofile, "/etc/openwrt_release") and _G.DISTRIB_DESCRIPTION then - distname = "" - distversion = _G.DISTRIB_DESCRIPTION - if _G.DISTRIB_REVISION then - distrevision = _G.DISTRIB_REVISION - if not distversion:find(distrevision,1,true) then - distversion = distversion .. " " .. distrevision - end - end -else - distname = "OpenWrt" - distversion = "Development Snapshot" -end - -luciname = "${3:-LuCI}" -luciversion = "${2:-Git}" -EOF diff --git a/luci-base/src/po2lmo.c b/luci-base/src/po2lmo.c deleted file mode 100644 index fd927cb52..000000000 --- a/luci-base/src/po2lmo.c +++ /dev/null @@ -1,247 +0,0 @@ -/* - * lmo - Lua Machine Objects - PO to LMO conversion tool - * - * Copyright (C) 2009-2012 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "template_lmo.h" - -static void die(const char *msg) -{ - fprintf(stderr, "Error: %s\n", msg); - exit(1); -} - -static void usage(const char *name) -{ - fprintf(stderr, "Usage: %s input.po output.lmo\n", name); - exit(1); -} - -static void print(const void *ptr, size_t size, size_t nmemb, FILE *stream) -{ - if( fwrite(ptr, size, nmemb, stream) == 0 ) - die("Failed to write stdout"); -} - -static int extract_string(const char *src, char *dest, int len) -{ - int pos = 0; - int esc = 0; - int off = -1; - - for( pos = 0; (pos < strlen(src)) && (pos < len); pos++ ) - { - if( (off == -1) && (src[pos] == '"') ) - { - off = pos + 1; - } - else if( off >= 0 ) - { - if( esc == 1 ) - { - switch (src[pos]) - { - case '"': - case '\\': - off++; - break; - } - dest[pos-off] = src[pos]; - esc = 0; - } - else if( src[pos] == '\\' ) - { - dest[pos-off] = src[pos]; - esc = 1; - } - else if( src[pos] != '"' ) - { - dest[pos-off] = src[pos]; - } - else - { - dest[pos-off] = '\0'; - break; - } - } - } - - return (off > -1) ? strlen(dest) : -1; -} - -static int cmp_index(const void *a, const void *b) -{ - uint32_t x = ((const lmo_entry_t *)a)->key_id; - uint32_t y = ((const lmo_entry_t *)b)->key_id; - - if (x < y) - return -1; - else if (x > y) - return 1; - - return 0; -} - -static void print_uint32(uint32_t x, FILE *out) -{ - uint32_t y = htonl(x); - print(&y, sizeof(uint32_t), 1, out); -} - -static void print_index(void *array, int n, FILE *out) -{ - lmo_entry_t *e; - - qsort(array, n, sizeof(*e), cmp_index); - - for (e = array; n > 0; n--, e++) - { - print_uint32(e->key_id, out); - print_uint32(e->val_id, out); - print_uint32(e->offset, out); - print_uint32(e->length, out); - } -} - -int main(int argc, char *argv[]) -{ - char line[4096]; - char key[4096]; - char val[4096]; - char tmp[4096]; - int state = 0; - int offset = 0; - int length = 0; - int n_entries = 0; - void *array = NULL; - lmo_entry_t *entry = NULL; - uint32_t key_id, val_id; - - FILE *in; - FILE *out; - - if( (argc != 3) || ((in = fopen(argv[1], "r")) == NULL) || ((out = fopen(argv[2], "w")) == NULL) ) - usage(argv[0]); - - memset(line, 0, sizeof(key)); - memset(key, 0, sizeof(val)); - memset(val, 0, sizeof(val)); - - while( (NULL != fgets(line, sizeof(line), in)) || (state >= 2 && feof(in)) ) - { - if( state == 0 && strstr(line, "msgid \"") == line ) - { - switch(extract_string(line, key, sizeof(key))) - { - case -1: - die("Syntax error in msgid"); - case 0: - state = 1; - break; - default: - state = 2; - } - } - else if( state == 1 || state == 2 ) - { - if( strstr(line, "msgstr \"") == line || state == 2 ) - { - switch(extract_string(line, val, sizeof(val))) - { - case -1: - state = 4; - break; - default: - state = 3; - } - } - else - { - switch(extract_string(line, tmp, sizeof(tmp))) - { - case -1: - state = 2; - break; - default: - strcat(key, tmp); - } - } - } - else if( state == 3 ) - { - switch(extract_string(line, tmp, sizeof(tmp))) - { - case -1: - state = 4; - break; - default: - strcat(val, tmp); - } - } - - if( state == 4 ) - { - if( strlen(key) > 0 && strlen(val) > 0 ) - { - key_id = sfh_hash(key, strlen(key)); - val_id = sfh_hash(val, strlen(val)); - - if( key_id != val_id ) - { - n_entries++; - array = realloc(array, n_entries * sizeof(lmo_entry_t)); - entry = (lmo_entry_t *)array + n_entries - 1; - - if (!array) - die("Out of memory"); - - entry->key_id = key_id; - entry->val_id = val_id; - entry->offset = offset; - entry->length = strlen(val); - - length = strlen(val) + ((4 - (strlen(val) % 4)) % 4); - - print(val, length, 1, out); - offset += length; - } - } - - state = 0; - memset(key, 0, sizeof(key)); - memset(val, 0, sizeof(val)); - } - - memset(line, 0, sizeof(line)); - } - - print_index(array, n_entries, out); - - if( offset > 0 ) - { - print_uint32(offset, out); - fsync(fileno(out)); - fclose(out); - } - else - { - fclose(out); - unlink(argv[2]); - } - - fclose(in); - return(0); -} diff --git a/luci-base/src/template_lmo.c b/luci-base/src/template_lmo.c deleted file mode 100644 index f7a118c9b..000000000 --- a/luci-base/src/template_lmo.c +++ /dev/null @@ -1,342 +0,0 @@ -/* - * lmo - Lua Machine Objects - Base functions - * - * Copyright (C) 2009-2010 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "template_lmo.h" - -/* - * Hash function from http://www.azillionmonkeys.com/qed/hash.html - * Copyright (C) 2004-2008 by Paul Hsieh - */ - -uint32_t sfh_hash(const char *data, int len) -{ - uint32_t hash = len, tmp; - int rem; - - if (len <= 0 || data == NULL) return 0; - - rem = len & 3; - len >>= 2; - - /* Main loop */ - for (;len > 0; len--) { - hash += sfh_get16(data); - tmp = (sfh_get16(data+2) << 11) ^ hash; - hash = (hash << 16) ^ tmp; - data += 2*sizeof(uint16_t); - hash += hash >> 11; - } - - /* Handle end cases */ - switch (rem) { - case 3: hash += sfh_get16(data); - hash ^= hash << 16; - hash ^= (signed char)data[sizeof(uint16_t)] << 18; - hash += hash >> 11; - break; - case 2: hash += sfh_get16(data); - hash ^= hash << 11; - hash += hash >> 17; - break; - case 1: hash += (signed char)*data; - hash ^= hash << 10; - hash += hash >> 1; - } - - /* Force "avalanching" of final 127 bits */ - hash ^= hash << 3; - hash += hash >> 5; - hash ^= hash << 4; - hash += hash >> 17; - hash ^= hash << 25; - hash += hash >> 6; - - return hash; -} - -uint32_t lmo_canon_hash(const char *str, int len) -{ - char res[4096]; - char *ptr, prev; - int off; - - if (!str || len >= sizeof(res)) - return 0; - - for (prev = ' ', ptr = res, off = 0; off < len; prev = *str, off++, str++) - { - if (isspace(*str)) - { - if (!isspace(prev)) - *ptr++ = ' '; - } - else - { - *ptr++ = *str; - } - } - - if ((ptr > res) && isspace(*(ptr-1))) - ptr--; - - return sfh_hash(res, ptr - res); -} - -lmo_archive_t * lmo_open(const char *file) -{ - int in = -1; - uint32_t idx_offset = 0; - struct stat s; - - lmo_archive_t *ar = NULL; - - if (stat(file, &s) == -1) - goto err; - - if ((in = open(file, O_RDONLY)) == -1) - goto err; - - if ((ar = (lmo_archive_t *)malloc(sizeof(*ar))) != NULL) - { - memset(ar, 0, sizeof(*ar)); - - ar->fd = in; - ar->size = s.st_size; - - fcntl(ar->fd, F_SETFD, fcntl(ar->fd, F_GETFD) | FD_CLOEXEC); - - if ((ar->mmap = mmap(NULL, ar->size, PROT_READ, MAP_SHARED, ar->fd, 0)) == MAP_FAILED) - goto err; - - idx_offset = ntohl(*((const uint32_t *) - (ar->mmap + ar->size - sizeof(uint32_t)))); - - if (idx_offset >= ar->size) - goto err; - - ar->index = (lmo_entry_t *)(ar->mmap + idx_offset); - ar->length = (ar->size - idx_offset - sizeof(uint32_t)) / sizeof(lmo_entry_t); - ar->end = ar->mmap + ar->size; - - return ar; - } - -err: - if (in > -1) - close(in); - - if (ar != NULL) - { - if ((ar->mmap != NULL) && (ar->mmap != MAP_FAILED)) - munmap(ar->mmap, ar->size); - - free(ar); - } - - return NULL; -} - -void lmo_close(lmo_archive_t *ar) -{ - if (ar != NULL) - { - if ((ar->mmap != NULL) && (ar->mmap != MAP_FAILED)) - munmap(ar->mmap, ar->size); - - close(ar->fd); - free(ar); - - ar = NULL; - } -} - - -lmo_catalog_t *_lmo_catalogs = NULL; -lmo_catalog_t *_lmo_active_catalog = NULL; - -int lmo_load_catalog(const char *lang, const char *dir) -{ - DIR *dh = NULL; - char pattern[16]; - char path[PATH_MAX]; - struct dirent *de = NULL; - - lmo_archive_t *ar = NULL; - lmo_catalog_t *cat = NULL; - - if (!lmo_change_catalog(lang)) - return 0; - - if (!dir || !(dh = opendir(dir))) - goto err; - - if (!(cat = malloc(sizeof(*cat)))) - goto err; - - memset(cat, 0, sizeof(*cat)); - - snprintf(cat->lang, sizeof(cat->lang), "%s", lang); - snprintf(pattern, sizeof(pattern), "*.%s.lmo", lang); - - while ((de = readdir(dh)) != NULL) - { - if (!fnmatch(pattern, de->d_name, 0)) - { - snprintf(path, sizeof(path), "%s/%s", dir, de->d_name); - ar = lmo_open(path); - - if (ar) - { - ar->next = cat->archives; - cat->archives = ar; - } - } - } - - closedir(dh); - - cat->next = _lmo_catalogs; - _lmo_catalogs = cat; - - if (!_lmo_active_catalog) - _lmo_active_catalog = cat; - - return cat->archives ? 0 : -1; - -err: - if (dh) closedir(dh); - if (cat) free(cat); - - return -1; -} - -int lmo_change_catalog(const char *lang) -{ - lmo_catalog_t *cat; - - for (cat = _lmo_catalogs; cat; cat = cat->next) - { - if (!strncmp(cat->lang, lang, sizeof(cat->lang))) - { - _lmo_active_catalog = cat; - return 0; - } - } - - return -1; -} - -static lmo_entry_t * lmo_find_entry(lmo_archive_t *ar, uint32_t hash) -{ - unsigned int m, l, r; - uint32_t k; - - l = 0; - r = ar->length - 1; - - while (1) - { - m = l + ((r - l) / 2); - - if (r < l) - break; - - k = ntohl(ar->index[m].key_id); - - if (k == hash) - return &ar->index[m]; - - if (k > hash) - { - if (!m) - break; - - r = m - 1; - } - else - { - l = m + 1; - } - } - - return NULL; -} - -int lmo_translate(const char *key, int keylen, char **out, int *outlen) -{ - uint32_t hash; - lmo_entry_t *e; - lmo_archive_t *ar; - - if (!key || !_lmo_active_catalog) - return -2; - - hash = lmo_canon_hash(key, keylen); - - for (ar = _lmo_active_catalog->archives; ar; ar = ar->next) - { - if ((e = lmo_find_entry(ar, hash)) != NULL) - { - *out = ar->mmap + ntohl(e->offset); - *outlen = ntohl(e->length); - return 0; - } - } - - return -1; -} - -void lmo_iterate(lmo_iterate_cb_t cb, void *priv) -{ - unsigned int i; - lmo_entry_t *e; - lmo_archive_t *ar; - - if (!_lmo_active_catalog) - return; - - for (ar = _lmo_active_catalog->archives; ar; ar = ar->next) - for (i = 0, e = &ar->index[0]; i < ar->length; e = &ar->index[++i]) - cb(ntohl(e->key_id), ar->mmap + ntohl(e->offset), ntohl(e->length), priv); -} - -void lmo_close_catalog(const char *lang) -{ - lmo_archive_t *ar, *next; - lmo_catalog_t *cat, *prev; - - for (prev = NULL, cat = _lmo_catalogs; cat; prev = cat, cat = cat->next) - { - if (!strncmp(cat->lang, lang, sizeof(cat->lang))) - { - if (prev) - prev->next = cat->next; - else - _lmo_catalogs = cat->next; - - for (ar = cat->archives; ar; ar = next) - { - next = ar->next; - lmo_close(ar); - } - - free(cat); - break; - } - } -} diff --git a/luci-base/src/template_lmo.h b/luci-base/src/template_lmo.h deleted file mode 100644 index 587884ea3..000000000 --- a/luci-base/src/template_lmo.h +++ /dev/null @@ -1,94 +0,0 @@ -/* - * lmo - Lua Machine Objects - General header - * - * Copyright (C) 2009-2012 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef _TEMPLATE_LMO_H_ -#define _TEMPLATE_LMO_H_ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#if (defined(__GNUC__) && defined(__i386__)) -#define sfh_get16(d) (*((const uint16_t *) (d))) -#else -#define sfh_get16(d) ((((uint32_t)(((const uint8_t *)(d))[1])) << 8)\ - +(uint32_t)(((const uint8_t *)(d))[0]) ) -#endif - - -struct lmo_entry { - uint32_t key_id; - uint32_t val_id; - uint32_t offset; - uint32_t length; -} __attribute__((packed)); - -typedef struct lmo_entry lmo_entry_t; - - -struct lmo_archive { - int fd; - int length; - uint32_t size; - lmo_entry_t *index; - char *mmap; - char *end; - struct lmo_archive *next; -}; - -typedef struct lmo_archive lmo_archive_t; - - -struct lmo_catalog { - char lang[6]; - struct lmo_archive *archives; - struct lmo_catalog *next; -}; - -typedef struct lmo_catalog lmo_catalog_t; - -typedef void (*lmo_iterate_cb_t)(uint32_t, const char *, int, void *); - -uint32_t sfh_hash(const char *data, int len); -uint32_t lmo_canon_hash(const char *data, int len); - -lmo_archive_t * lmo_open(const char *file); -void lmo_close(lmo_archive_t *ar); - - -extern lmo_catalog_t *_lmo_catalogs; -extern lmo_catalog_t *_lmo_active_catalog; - -int lmo_load_catalog(const char *lang, const char *dir); -int lmo_change_catalog(const char *lang); -int lmo_translate(const char *key, int keylen, char **out, int *outlen); -void lmo_iterate(lmo_iterate_cb_t cb, void *priv); -void lmo_close_catalog(const char *lang); - -#endif diff --git a/luci-base/src/template_lualib.c b/luci-base/src/template_lualib.c deleted file mode 100644 index fbab2ccf6..000000000 --- a/luci-base/src/template_lualib.c +++ /dev/null @@ -1,198 +0,0 @@ -/* - * LuCI Template - Lua binding - * - * Copyright (C) 2009 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "template_lualib.h" - -static int template_L_do_parse(lua_State *L, struct template_parser *parser, const char *chunkname) -{ - int lua_status, rv; - - if (!parser) - { - lua_pushnil(L); - lua_pushinteger(L, errno); - lua_pushstring(L, strerror(errno)); - return 3; - } - - lua_status = lua_load(L, template_reader, parser, chunkname); - - if (lua_status == 0) - rv = 1; - else - rv = template_error(L, parser); - - template_close(parser); - - return rv; -} - -int template_L_parse(lua_State *L) -{ - const char *file = luaL_checkstring(L, 1); - struct template_parser *parser = template_open(file); - - return template_L_do_parse(L, parser, file); -} - -int template_L_parse_string(lua_State *L) -{ - size_t len; - const char *str = luaL_checklstring(L, 1, &len); - struct template_parser *parser = template_string(str, len); - - return template_L_do_parse(L, parser, "[string]"); -} - -int template_L_utf8(lua_State *L) -{ - size_t len = 0; - const char *str = luaL_checklstring(L, 1, &len); - char *res = utf8(str, len); - - if (res != NULL) - { - lua_pushstring(L, res); - free(res); - - return 1; - } - - return 0; -} - -int template_L_pcdata(lua_State *L) -{ - size_t len = 0; - const char *str = luaL_checklstring(L, 1, &len); - char *res = pcdata(str, len); - - if (res != NULL) - { - lua_pushstring(L, res); - free(res); - - return 1; - } - - return 0; -} - -int template_L_striptags(lua_State *L) -{ - size_t len = 0; - const char *str = luaL_checklstring(L, 1, &len); - char *res = striptags(str, len); - - if (res != NULL) - { - lua_pushstring(L, res); - free(res); - - return 1; - } - - return 0; -} - -static int template_L_load_catalog(lua_State *L) { - const char *lang = luaL_optstring(L, 1, "en"); - const char *dir = luaL_optstring(L, 2, NULL); - lua_pushboolean(L, !lmo_load_catalog(lang, dir)); - return 1; -} - -static int template_L_close_catalog(lua_State *L) { - const char *lang = luaL_optstring(L, 1, "en"); - lmo_close_catalog(lang); - return 0; -} - -static int template_L_change_catalog(lua_State *L) { - const char *lang = luaL_optstring(L, 1, "en"); - lua_pushboolean(L, !lmo_change_catalog(lang)); - return 1; -} - -static void template_L_get_translations_cb(uint32_t key, const char *val, int len, void *priv) { - lua_State *L = priv; - char hex[9]; - - luaL_checktype(L, 1, LUA_TFUNCTION); - snprintf(hex, sizeof(hex), "%08x", key); - - lua_pushvalue(L, 1); - lua_pushstring(L, hex); - lua_pushlstring(L, val, len); - lua_call(L, 2, 0); -} - -static int template_L_get_translations(lua_State *L) { - lmo_iterate(template_L_get_translations_cb, L); - return 0; -} - -static int template_L_translate(lua_State *L) { - size_t len; - char *tr; - int trlen; - const char *key = luaL_checklstring(L, 1, &len); - - switch (lmo_translate(key, len, &tr, &trlen)) - { - case 0: - lua_pushlstring(L, tr, trlen); - return 1; - - case -1: - return 0; - } - - lua_pushnil(L); - lua_pushstring(L, "no catalog loaded"); - return 2; -} - -static int template_L_hash(lua_State *L) { - size_t len; - const char *key = luaL_checklstring(L, 1, &len); - lua_pushinteger(L, sfh_hash(key, len)); - return 1; -} - - -/* module table */ -static const luaL_reg R[] = { - { "parse", template_L_parse }, - { "parse_string", template_L_parse_string }, - { "utf8", template_L_utf8 }, - { "pcdata", template_L_pcdata }, - { "striptags", template_L_striptags }, - { "load_catalog", template_L_load_catalog }, - { "close_catalog", template_L_close_catalog }, - { "change_catalog", template_L_change_catalog }, - { "get_translations", template_L_get_translations }, - { "translate", template_L_translate }, - { "hash", template_L_hash }, - { NULL, NULL } -}; - -LUALIB_API int luaopen_luci_template_parser(lua_State *L) { - luaL_register(L, TEMPLATE_LUALIB_META, R); - return 1; -} diff --git a/luci-base/src/template_lualib.h b/luci-base/src/template_lualib.h deleted file mode 100644 index ff7746d15..000000000 --- a/luci-base/src/template_lualib.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * LuCI Template - Lua library header - * - * Copyright (C) 2009 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef _TEMPLATE_LUALIB_H_ -#define _TEMPLATE_LUALIB_H_ - -#include "template_parser.h" -#include "template_utils.h" -#include "template_lmo.h" - -#define TEMPLATE_LUALIB_META "template.parser" - -LUALIB_API int luaopen_luci_template_parser(lua_State *L); - -#endif diff --git a/luci-base/src/template_parser.c b/luci-base/src/template_parser.c deleted file mode 100644 index 0ef08c63d..000000000 --- a/luci-base/src/template_parser.c +++ /dev/null @@ -1,419 +0,0 @@ -/* - * LuCI Template - Parser implementation - * - * Copyright (C) 2009-2012 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "template_parser.h" -#include "template_utils.h" -#include "template_lmo.h" - - -/* leading and trailing code for different types */ -const char *gen_code[9][2] = { - { NULL, NULL }, - { "write(\"", "\")" }, - { NULL, NULL }, - { "write(tostring(", " or \"\"))" }, - { "include(\"", "\")" }, - { "write(\"", "\")" }, - { "write(\"", "\")" }, - { NULL, " " }, - { NULL, NULL }, -}; - -/* Simple strstr() like function that takes len arguments for both haystack and needle. */ -static char *strfind(char *haystack, int hslen, const char *needle, int ndlen) -{ - int match = 0; - int i, j; - - for( i = 0; i < hslen; i++ ) - { - if( haystack[i] == needle[0] ) - { - match = ((ndlen == 1) || ((i + ndlen) <= hslen)); - - for( j = 1; (j < ndlen) && ((i + j) < hslen); j++ ) - { - if( haystack[i+j] != needle[j] ) - { - match = 0; - break; - } - } - - if( match ) - return &haystack[i]; - } - } - - return NULL; -} - -struct template_parser * template_open(const char *file) -{ - struct stat s; - struct template_parser *parser; - - if (!(parser = malloc(sizeof(*parser)))) - goto err; - - memset(parser, 0, sizeof(*parser)); - parser->fd = -1; - parser->file = file; - - if (stat(file, &s)) - goto err; - - if ((parser->fd = open(file, O_RDONLY)) < 0) - goto err; - - parser->size = s.st_size; - parser->data = mmap(NULL, parser->size, PROT_READ, MAP_PRIVATE, - parser->fd, 0); - - if (parser->data != MAP_FAILED) - { - parser->off = parser->data; - parser->cur_chunk.type = T_TYPE_INIT; - parser->cur_chunk.s = parser->data; - parser->cur_chunk.e = parser->data; - - return parser; - } - -err: - template_close(parser); - return NULL; -} - -struct template_parser * template_string(const char *str, uint32_t len) -{ - struct template_parser *parser; - - if (!str) { - errno = EINVAL; - goto err; - } - - if (!(parser = malloc(sizeof(*parser)))) - goto err; - - memset(parser, 0, sizeof(*parser)); - parser->fd = -1; - - parser->size = len; - parser->data = (char*)str; - - parser->off = parser->data; - parser->cur_chunk.type = T_TYPE_INIT; - parser->cur_chunk.s = parser->data; - parser->cur_chunk.e = parser->data; - - return parser; - -err: - template_close(parser); - return NULL; -} - -void template_close(struct template_parser *parser) -{ - if (!parser) - return; - - if (parser->gc != NULL) - free(parser->gc); - - /* if file is not set, we were parsing a string */ - if (parser->file) { - if ((parser->data != NULL) && (parser->data != MAP_FAILED)) - munmap(parser->data, parser->size); - - if (parser->fd >= 0) - close(parser->fd); - } - - free(parser); -} - -void template_text(struct template_parser *parser, const char *e) -{ - const char *s = parser->off; - - if (s < (parser->data + parser->size)) - { - if (parser->strip_after) - { - while ((s <= e) && isspace(*s)) - s++; - } - - parser->cur_chunk.type = T_TYPE_TEXT; - } - else - { - parser->cur_chunk.type = T_TYPE_EOF; - } - - parser->cur_chunk.line = parser->line; - parser->cur_chunk.s = s; - parser->cur_chunk.e = e; -} - -void template_code(struct template_parser *parser, const char *e) -{ - const char *s = parser->off; - - parser->strip_before = 0; - parser->strip_after = 0; - - if (*s == '-') - { - parser->strip_before = 1; - for (s++; (s <= e) && (*s == ' ' || *s == '\t'); s++); - } - - if (*(e-1) == '-') - { - parser->strip_after = 1; - for (e--; (e >= s) && (*e == ' ' || *e == '\t'); e--); - } - - switch (*s) - { - /* comment */ - case '#': - s++; - parser->cur_chunk.type = T_TYPE_COMMENT; - break; - - /* include */ - case '+': - s++; - parser->cur_chunk.type = T_TYPE_INCLUDE; - break; - - /* translate */ - case ':': - s++; - parser->cur_chunk.type = T_TYPE_I18N; - break; - - /* translate raw */ - case '_': - s++; - parser->cur_chunk.type = T_TYPE_I18N_RAW; - break; - - /* expr */ - case '=': - s++; - parser->cur_chunk.type = T_TYPE_EXPR; - break; - - /* code */ - default: - parser->cur_chunk.type = T_TYPE_CODE; - break; - } - - parser->cur_chunk.line = parser->line; - parser->cur_chunk.s = s; - parser->cur_chunk.e = e; -} - -static const char * -template_format_chunk(struct template_parser *parser, size_t *sz) -{ - const char *s, *p; - const char *head, *tail; - struct template_chunk *c = &parser->prv_chunk; - struct template_buffer *buf; - - *sz = 0; - s = parser->gc = NULL; - - if (parser->strip_before && c->type == T_TYPE_TEXT) - { - while ((c->e > c->s) && isspace(*(c->e - 1))) - c->e--; - } - - /* empty chunk */ - if (c->s == c->e) - { - if (c->type == T_TYPE_EOF) - { - *sz = 0; - s = NULL; - } - else - { - *sz = 1; - s = " "; - } - } - - /* format chunk */ - else if ((buf = buf_init(c->e - c->s)) != NULL) - { - if ((head = gen_code[c->type][0]) != NULL) - buf_append(buf, head, strlen(head)); - - switch (c->type) - { - case T_TYPE_TEXT: - luastr_escape(buf, c->s, c->e - c->s, 0); - break; - - case T_TYPE_EXPR: - buf_append(buf, c->s, c->e - c->s); - for (p = c->s; p < c->e; p++) - parser->line += (*p == '\n'); - break; - - case T_TYPE_INCLUDE: - luastr_escape(buf, c->s, c->e - c->s, 0); - break; - - case T_TYPE_I18N: - luastr_translate(buf, c->s, c->e - c->s, 1); - break; - - case T_TYPE_I18N_RAW: - luastr_translate(buf, c->s, c->e - c->s, 0); - break; - - case T_TYPE_CODE: - buf_append(buf, c->s, c->e - c->s); - for (p = c->s; p < c->e; p++) - parser->line += (*p == '\n'); - break; - } - - if ((tail = gen_code[c->type][1]) != NULL) - buf_append(buf, tail, strlen(tail)); - - *sz = buf_length(buf); - s = parser->gc = buf_destroy(buf); - - if (!*sz) - { - *sz = 1; - s = " "; - } - } - - return s; -} - -const char *template_reader(lua_State *L, void *ud, size_t *sz) -{ - struct template_parser *parser = ud; - int rem = parser->size - (parser->off - parser->data); - char *tag; - - parser->prv_chunk = parser->cur_chunk; - - /* free previous string */ - if (parser->gc) - { - free(parser->gc); - parser->gc = NULL; - } - - /* before tag */ - if (!parser->in_expr) - { - if ((tag = strfind(parser->off, rem, "<%", 2)) != NULL) - { - template_text(parser, tag); - parser->off = tag + 2; - parser->in_expr = 1; - } - else - { - template_text(parser, parser->data + parser->size); - parser->off = parser->data + parser->size; - } - } - - /* inside tag */ - else - { - if ((tag = strfind(parser->off, rem, "%>", 2)) != NULL) - { - template_code(parser, tag); - parser->off = tag + 2; - parser->in_expr = 0; - } - else - { - /* unexpected EOF */ - template_code(parser, parser->data + parser->size); - - *sz = 1; - return "\033"; - } - } - - return template_format_chunk(parser, sz); -} - -int template_error(lua_State *L, struct template_parser *parser) -{ - const char *err = luaL_checkstring(L, -1); - const char *off = parser->prv_chunk.s; - const char *ptr; - char msg[1024]; - int line = 0; - int chunkline = 0; - - if ((ptr = strfind((char *)err, strlen(err), "]:", 2)) != NULL) - { - chunkline = atoi(ptr + 2) - parser->prv_chunk.line; - - while (*ptr) - { - if (*ptr++ == ' ') - { - err = ptr; - break; - } - } - } - - if (strfind((char *)err, strlen(err), "'char(27)'", 10) != NULL) - { - off = parser->data + parser->size; - err = "'%>' expected before end of file"; - chunkline = 0; - } - - for (ptr = parser->data; ptr < off; ptr++) - if (*ptr == '\n') - line++; - - snprintf(msg, sizeof(msg), "Syntax error in %s:%d: %s", - parser->file ? parser->file : "[string]", line + chunkline, err ? err : "(unknown error)"); - - lua_pushnil(L); - lua_pushinteger(L, line + chunkline); - lua_pushstring(L, msg); - - return 3; -} diff --git a/luci-base/src/template_parser.h b/luci-base/src/template_parser.h deleted file mode 100644 index 2415e8707..000000000 --- a/luci-base/src/template_parser.h +++ /dev/null @@ -1,80 +0,0 @@ -/* - * LuCI Template - Parser header - * - * Copyright (C) 2009 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef _TEMPLATE_PARSER_H_ -#define _TEMPLATE_PARSER_H_ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - - -/* code types */ -#define T_TYPE_INIT 0 -#define T_TYPE_TEXT 1 -#define T_TYPE_COMMENT 2 -#define T_TYPE_EXPR 3 -#define T_TYPE_INCLUDE 4 -#define T_TYPE_I18N 5 -#define T_TYPE_I18N_RAW 6 -#define T_TYPE_CODE 7 -#define T_TYPE_EOF 8 - - -struct template_chunk { - const char *s; - const char *e; - int type; - int line; -}; - -/* parser state */ -struct template_parser { - int fd; - uint32_t size; - char *data; - char *off; - char *gc; - int line; - int in_expr; - int strip_before; - int strip_after; - struct template_chunk prv_chunk; - struct template_chunk cur_chunk; - const char *file; -}; - -struct template_parser * template_open(const char *file); -struct template_parser * template_string(const char *str, uint32_t len); -void template_close(struct template_parser *parser); - -const char *template_reader(lua_State *L, void *ud, size_t *sz); -int template_error(lua_State *L, struct template_parser *parser); - -#endif diff --git a/luci-base/src/template_utils.c b/luci-base/src/template_utils.c deleted file mode 100644 index 0411932ce..000000000 --- a/luci-base/src/template_utils.c +++ /dev/null @@ -1,484 +0,0 @@ -/* - * LuCI Template - Utility functions - * - * Copyright (C) 2010 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "template_utils.h" -#include "template_lmo.h" - -/* initialize a buffer object */ -struct template_buffer * buf_init(int size) -{ - struct template_buffer *buf; - - if (size <= 0) - size = 1024; - - buf = (struct template_buffer *)malloc(sizeof(struct template_buffer)); - - if (buf != NULL) - { - buf->fill = 0; - buf->size = size; - buf->data = malloc(buf->size); - - if (buf->data != NULL) - { - buf->dptr = buf->data; - buf->data[0] = 0; - - return buf; - } - - free(buf); - } - - return NULL; -} - -/* grow buffer */ -int buf_grow(struct template_buffer *buf, int size) -{ - unsigned int off = (buf->dptr - buf->data); - char *data; - - if (size <= 0) - size = 1024; - - data = realloc(buf->data, buf->size + size); - - if (data != NULL) - { - buf->data = data; - buf->dptr = data + off; - buf->size += size; - - return buf->size; - } - - return 0; -} - -/* put one char into buffer object */ -int buf_putchar(struct template_buffer *buf, char c) -{ - if( ((buf->fill + 1) >= buf->size) && !buf_grow(buf, 0) ) - return 0; - - *(buf->dptr++) = c; - *(buf->dptr) = 0; - - buf->fill++; - return 1; -} - -/* append data to buffer */ -int buf_append(struct template_buffer *buf, const char *s, int len) -{ - if ((buf->fill + len + 1) >= buf->size) - { - if (!buf_grow(buf, len + 1)) - return 0; - } - - memcpy(buf->dptr, s, len); - buf->fill += len; - buf->dptr += len; - - *(buf->dptr) = 0; - - return len; -} - -/* read buffer length */ -int buf_length(struct template_buffer *buf) -{ - return buf->fill; -} - -/* destroy buffer object and return pointer to data */ -char * buf_destroy(struct template_buffer *buf) -{ - char *data = buf->data; - - free(buf); - return data; -} - - -/* calculate the number of expected continuation chars */ -static inline int mb_num_chars(unsigned char c) -{ - if ((c & 0xE0) == 0xC0) - return 2; - else if ((c & 0xF0) == 0xE0) - return 3; - else if ((c & 0xF8) == 0xF0) - return 4; - else if ((c & 0xFC) == 0xF8) - return 5; - else if ((c & 0xFE) == 0xFC) - return 6; - - return 1; -} - -/* test whether the given byte is a valid continuation char */ -static inline int mb_is_cont(unsigned char c) -{ - return ((c >= 0x80) && (c <= 0xBF)); -} - -/* test whether the byte sequence at the given pointer with the given - * length is the shortest possible representation of the code point */ -static inline int mb_is_shortest(unsigned char *s, int n) -{ - switch (n) - { - case 2: - /* 1100000x (10xxxxxx) */ - return !(((*s >> 1) == 0x60) && - ((*(s+1) >> 6) == 0x02)); - - case 3: - /* 11100000 100xxxxx (10xxxxxx) */ - return !((*s == 0xE0) && - ((*(s+1) >> 5) == 0x04) && - ((*(s+2) >> 6) == 0x02)); - - case 4: - /* 11110000 1000xxxx (10xxxxxx 10xxxxxx) */ - return !((*s == 0xF0) && - ((*(s+1) >> 4) == 0x08) && - ((*(s+2) >> 6) == 0x02) && - ((*(s+3) >> 6) == 0x02)); - - case 5: - /* 11111000 10000xxx (10xxxxxx 10xxxxxx 10xxxxxx) */ - return !((*s == 0xF8) && - ((*(s+1) >> 3) == 0x10) && - ((*(s+2) >> 6) == 0x02) && - ((*(s+3) >> 6) == 0x02) && - ((*(s+4) >> 6) == 0x02)); - - case 6: - /* 11111100 100000xx (10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx) */ - return !((*s == 0xF8) && - ((*(s+1) >> 2) == 0x20) && - ((*(s+2) >> 6) == 0x02) && - ((*(s+3) >> 6) == 0x02) && - ((*(s+4) >> 6) == 0x02) && - ((*(s+5) >> 6) == 0x02)); - } - - return 1; -} - -/* test whether the byte sequence at the given pointer with the given - * length is an UTF-16 surrogate */ -static inline int mb_is_surrogate(unsigned char *s, int n) -{ - return ((n == 3) && (*s == 0xED) && (*(s+1) >= 0xA0) && (*(s+1) <= 0xBF)); -} - -/* test whether the byte sequence at the given pointer with the given - * length is an illegal UTF-8 code point */ -static inline int mb_is_illegal(unsigned char *s, int n) -{ - return ((n == 3) && (*s == 0xEF) && (*(s+1) == 0xBF) && - (*(s+2) >= 0xBE) && (*(s+2) <= 0xBF)); -} - - -/* scan given source string, validate UTF-8 sequence and store result - * in given buffer object */ -static int _validate_utf8(unsigned char **s, int l, struct template_buffer *buf) -{ - unsigned char *ptr = *s; - unsigned int o = 0, v, n; - - /* ascii byte without null */ - if ((*(ptr+0) >= 0x01) && (*(ptr+0) <= 0x7F)) - { - if (!buf_putchar(buf, *ptr++)) - return 0; - - o = 1; - } - - /* multi byte sequence */ - else if ((n = mb_num_chars(*ptr)) > 1) - { - /* count valid chars */ - for (v = 1; (v <= n) && ((o+v) < l) && mb_is_cont(*(ptr+v)); v++); - - switch (n) - { - case 6: - case 5: - /* five and six byte sequences are always invalid */ - if (!buf_putchar(buf, '?')) - return 0; - - break; - - default: - /* if the number of valid continuation bytes matches the - * expected number and if the sequence is legal, copy - * the bytes to the destination buffer */ - if ((v == n) && mb_is_shortest(ptr, n) && - !mb_is_surrogate(ptr, n) && !mb_is_illegal(ptr, n)) - { - /* copy sequence */ - if (!buf_append(buf, (char *)ptr, n)) - return 0; - } - - /* the found sequence is illegal, skip it */ - else - { - /* invalid sequence */ - if (!buf_putchar(buf, '?')) - return 0; - } - - break; - } - - /* advance beyond the last found valid continuation char */ - o = v; - ptr += v; - } - - /* invalid byte (0x00) */ - else - { - if (!buf_putchar(buf, '?')) /* or 0xEF, 0xBF, 0xBD */ - return 0; - - o = 1; - ptr++; - } - - *s = ptr; - return o; -} - -/* sanitize given string and replace all invalid UTF-8 sequences with "?" */ -char * utf8(const char *s, unsigned int l) -{ - struct template_buffer *buf = buf_init(l); - unsigned char *ptr = (unsigned char *)s; - unsigned int v, o; - - if (!buf) - return NULL; - - for (o = 0; o < l; o++) - { - /* ascii char */ - if ((*ptr >= 0x01) && (*ptr <= 0x7F)) - { - if (!buf_putchar(buf, (char)*ptr++)) - break; - } - - /* invalid byte or multi byte sequence */ - else - { - if (!(v = _validate_utf8(&ptr, l - o, buf))) - break; - - o += (v - 1); - } - } - - return buf_destroy(buf); -} - -/* Sanitize given string and strip all invalid XML bytes - * Validate UTF-8 sequences - * Escape XML control chars */ -char * pcdata(const char *s, unsigned int l) -{ - struct template_buffer *buf = buf_init(l); - unsigned char *ptr = (unsigned char *)s; - unsigned int o, v; - char esq[8]; - int esl; - - if (!buf) - return NULL; - - for (o = 0; o < l; o++) - { - /* Invalid XML bytes */ - if (((*ptr >= 0x00) && (*ptr <= 0x08)) || - ((*ptr >= 0x0B) && (*ptr <= 0x0C)) || - ((*ptr >= 0x0E) && (*ptr <= 0x1F)) || - (*ptr == 0x7F)) - { - ptr++; - } - - /* Escapes */ - else if ((*ptr == 0x26) || - (*ptr == 0x27) || - (*ptr == 0x22) || - (*ptr == 0x3C) || - (*ptr == 0x3E)) - { - esl = snprintf(esq, sizeof(esq), "&#%i;", *ptr); - - if (!buf_append(buf, esq, esl)) - break; - - ptr++; - } - - /* ascii char */ - else if (*ptr <= 0x7F) - { - buf_putchar(buf, (char)*ptr++); - } - - /* multi byte sequence */ - else - { - if (!(v = _validate_utf8(&ptr, l - o, buf))) - break; - - o += (v - 1); - } - } - - return buf_destroy(buf); -} - -char * striptags(const char *s, unsigned int l) -{ - struct template_buffer *buf = buf_init(l); - unsigned char *ptr = (unsigned char *)s; - unsigned char *end = ptr + l; - unsigned char *tag; - unsigned char prev; - char esq[8]; - int esl; - - for (prev = ' '; ptr < end; ptr++) - { - if ((*ptr == '<') && ((ptr + 2) < end) && - ((*(ptr + 1) == '/') || isalpha(*(ptr + 1)))) - { - for (tag = ptr; tag < end; tag++) - { - if (*tag == '>') - { - if (!isspace(prev)) - buf_putchar(buf, ' '); - - ptr = tag; - prev = ' '; - break; - } - } - } - else if (isspace(*ptr)) - { - if (!isspace(prev)) - buf_putchar(buf, *ptr); - - prev = *ptr; - } - else - { - switch(*ptr) - { - case '"': - case '\'': - case '<': - case '>': - case '&': - esl = snprintf(esq, sizeof(esq), "&#%i;", *ptr); - buf_append(buf, esq, esl); - break; - - default: - buf_putchar(buf, *ptr); - break; - } - - prev = *ptr; - } - } - - return buf_destroy(buf); -} - -void luastr_escape(struct template_buffer *out, const char *s, unsigned int l, - int escape_xml) -{ - int esl; - char esq[8]; - char *ptr; - - for (ptr = (char *)s; ptr < (s + l); ptr++) - { - switch (*ptr) - { - case '\\': - buf_append(out, "\\\\", 2); - break; - - case '"': - if (escape_xml) - buf_append(out, """, 5); - else - buf_append(out, "\\\"", 2); - break; - - case '\n': - buf_append(out, "\\n", 2); - break; - - case '\'': - case '&': - case '<': - case '>': - if (escape_xml) - { - esl = snprintf(esq, sizeof(esq), "&#%i;", *ptr); - buf_append(out, esq, esl); - break; - } - - default: - buf_putchar(out, *ptr); - } - } -} - -void luastr_translate(struct template_buffer *out, const char *s, unsigned int l, - int escape_xml) -{ - char *tr; - int trlen; - - if (!lmo_translate(s, l, &tr, &trlen)) - luastr_escape(out, tr, trlen, escape_xml); - else - luastr_escape(out, s, l, escape_xml); -} diff --git a/luci-base/src/template_utils.h b/luci-base/src/template_utils.h deleted file mode 100644 index 32a79f93b..000000000 --- a/luci-base/src/template_utils.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - * LuCI Template - Utility header - * - * Copyright (C) 2010-2012 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef _TEMPLATE_UTILS_H_ -#define _TEMPLATE_UTILS_H_ - -#include -#include -#include - - -/* buffer object */ -struct template_buffer { - char *data; - char *dptr; - unsigned int size; - unsigned int fill; -}; - -struct template_buffer * buf_init(int size); -int buf_grow(struct template_buffer *buf, int size); -int buf_putchar(struct template_buffer *buf, char c); -int buf_append(struct template_buffer *buf, const char *s, int len); -int buf_length(struct template_buffer *buf); -char * buf_destroy(struct template_buffer *buf); - -char * utf8(const char *s, unsigned int l); -char * pcdata(const char *s, unsigned int l); -char * striptags(const char *s, unsigned int l); - -void luastr_escape(struct template_buffer *out, const char *s, unsigned int l, int escape_xml); -void luastr_translate(struct template_buffer *out, const char *s, unsigned int l, int escape_xml); - -#endif diff --git a/luci-mod-admin-full/Makefile b/luci-mod-admin-full/Makefile deleted file mode 100644 index e246860ff..000000000 --- a/luci-mod-admin-full/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# -# Copyright (C) 2008-2014 The LuCI Team -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=LuCI Administration - full-featured for full control -LUCI_DEPENDS:=+luci-base +luci-mod-status +luci-mod-system +luci-mod-network - -PKG_LICENSE:=Apache-2.0 - -include ../luci/luci.mk - -# call BuildPackage - OpenWrt buildroot signature - diff --git a/luci-mod-admin-full/luasrc/controller/admin/filebrowser.lua b/luci-mod-admin-full/luasrc/controller/admin/filebrowser.lua deleted file mode 100644 index 257261513..000000000 --- a/luci-mod-admin-full/luasrc/controller/admin/filebrowser.lua +++ /dev/null @@ -1,9 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2008 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.admin.filebrowser", package.seeall) - -function index() - entry( {"admin", "filebrowser"}, template("cbi/filebrowser") ).leaf = true -end diff --git a/luci-mod-network/Makefile b/luci-mod-network/Makefile deleted file mode 100644 index a087218f0..000000000 --- a/luci-mod-network/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -# -# Copyright (C) 2008-2014 The LuCI Team -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=LuCI Network Administration -LUCI_DEPENDS:=+luci-base +libiwinfo-lua - -PKG_LICENSE:=Apache-2.0 - -include ../luci/luci.mk - -# call BuildPackage - OpenWrt buildroot signature - diff --git a/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js b/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js deleted file mode 100644 index e8ad28208..000000000 --- a/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js +++ /dev/null @@ -1,419 +0,0 @@ -'use strict'; -'require rpc'; -'require uci'; -'require form'; - -var callHostHints, callDUIDHints, callDHCPLeases, CBILeaseStatus; - -callHostHints = rpc.declare({ - object: 'luci', - method: 'getHostHints', - expect: { '': {} } -}); - -callDUIDHints = rpc.declare({ - object: 'luci', - method: 'getDUIDHints', - expect: { '': {} } -}); - -callDHCPLeases = rpc.declare({ - object: 'luci', - method: 'getDHCPLeases', - params: [ 'family' ], - expect: { dhcp_leases: [] } -}); - -CBILeaseStatus = form.DummyValue.extend({ - renderWidget: function(section_id, option_id, cfgvalue) { - return E([ - E('h4', _('Active DHCP Leases')), - E('div', { 'id': 'lease_status_table', 'class': 'table' }, [ - E('div', { 'class': 'tr table-titles' }, [ - E('div', { 'class': 'th' }, _('Hostname')), - E('div', { 'class': 'th' }, _('IPv4-Address')), - E('div', { 'class': 'th' }, _('MAC-Address')), - E('div', { 'class': 'th' }, _('Leasetime remaining')) - ]), - E('div', { 'class': 'tr placeholder' }, [ - E('div', { 'class': 'td' }, E('em', _('Collecting data...'))) - ]) - ]) - ]); - } -}); - -return L.view.extend({ - - - load: function() { - return Promise.all([ - callHostHints(), - callDUIDHints() - ]); - }, - - render: function(hosts_duids) { - var hosts = hosts_duids[0], - duids = hosts_duids[1], - m, s, o, ss, so; - - m = new form.Map('dhcp', _('DHCP and DNS'), _('Dnsmasq is a combined DHCP-Server and DNS-Forwarder for NAT firewalls')); - - s = m.section(form.TypedSection, 'dnsmasq', _('Server Settings')); - s.anonymous = true; - s.addremove = false; - - s.tab('general', _('General Settings')); - s.tab('files', _('Resolv and Hosts Files')); - s.tab('tftp', _('TFTP Settings')); - s.tab('advanced', _('Advanced Settings')); - s.tab('leases', _('Static Leases')); - - s.taboption('general', form.Flag, 'domainneeded', - _('Domain required'), - _('Don\'t forward DNS-Requests without DNS-Name')); - - s.taboption('general', form.Flag, 'authoritative', - _('Authoritative'), - _('This is the only DHCP in the local network')); - - - s.taboption('files', form.Flag, 'readethers', - _('Use /etc/ethers'), - _('Read /etc/ethers to configure the DHCP-Server')); - - s.taboption('files', form.Value, 'leasefile', - _('Leasefile'), - _('file where given DHCP-leases will be stored')); - - s.taboption('files', form.Flag, 'noresolv', - _('Ignore resolve file')).optional = true; - - o = s.taboption('files', form.Value, 'resolvfile', - _('Resolve file'), - _('local DNS file')); - - o.depends('noresolv', ''); - o.optional = true; - - - s.taboption('files', form.Flag, 'nohosts', - _('Ignore /etc/hosts')).optional = true; - - s.taboption('files', form.DynamicList, 'addnhosts', - _('Additional Hosts files')).optional = true; - - o = s.taboption('advanced', form.Flag, 'quietdhcp', - _('Suppress logging'), - _('Suppress logging of the routine operation of these protocols')); - o.optional = true; - - o = s.taboption('advanced', form.Flag, 'sequential_ip', - _('Allocate IP sequentially'), - _('Allocate IP addresses sequentially, starting from the lowest available address')); - o.optional = true; - - o = s.taboption('advanced', form.Flag, 'boguspriv', - _('Filter private'), - _('Do not forward reverse lookups for local networks')); - o.default = o.enabled; - - s.taboption('advanced', form.Flag, 'filterwin2k', - _('Filter useless'), - _('Do not forward requests that cannot be answered by public name servers')); - - - s.taboption('advanced', form.Flag, 'localise_queries', - _('Localise queries'), - _('Localise hostname depending on the requesting subnet if multiple IPs are available')); - - //local have_dnssec_support = luci.util.checklib('/usr/sbin/dnsmasq', 'libhogweed.so'); - var have_dnssec_support = true; - - if (have_dnssec_support) { - o = s.taboption('advanced', form.Flag, 'dnssec', - _('DNSSEC')); - o.optional = true; - - o = s.taboption('advanced', form.Flag, 'dnsseccheckunsigned', - _('DNSSEC check unsigned'), - _('Requires upstream supports DNSSEC; verify unsigned domain responses really come from unsigned domains')); - o.optional = true; - } - - s.taboption('general', form.Value, 'local', - _('Local server'), - _('Local domain specification. Names matching this domain are never forwarded and are resolved from DHCP or hosts files only')); - - s.taboption('general', form.Value, 'domain', - _('Local domain'), - _('Local domain suffix appended to DHCP names and hosts file entries')); - - s.taboption('advanced', form.Flag, 'expandhosts', - _('Expand hosts'), - _('Add local domain suffix to names served from hosts files')); - - s.taboption('advanced', form.Flag, 'nonegcache', - _('No negative cache'), - _('Do not cache negative replies, e.g. for not existing domains')); - - s.taboption('advanced', form.Value, 'serversfile', - _('Additional servers file'), - _('This file may contain lines like \'server=/domain/1.2.3.4\' or \'server=1.2.3.4\' for domain-specific or full upstream DNS servers.')); - - s.taboption('advanced', form.Flag, 'strictorder', - _('Strict order'), - _('DNS servers will be queried in the order of the resolvfile')).optional = true; - - s.taboption('advanced', form.Flag, 'allservers', - _('All Servers'), - _('Query all available upstream DNS servers')).optional = true; - - o = s.taboption('advanced', form.DynamicList, 'bogusnxdomain', _('Bogus NX Domain Override'), - _('List of hosts that supply bogus NX domain results')); - - o.optional = true; - o.placeholder = '67.215.65.132'; - - - s.taboption('general', form.Flag, 'logqueries', - _('Log queries'), - _('Write received DNS requests to syslog')).optional = true; - - o = s.taboption('general', form.DynamicList, 'server', _('DNS forwardings'), - _('List of DNS servers to forward requests to')); - - o.optional = true; - o.placeholder = '/example.org/10.1.2.3'; - - - o = s.taboption('general', form.Flag, 'rebind_protection', - _('Rebind protection'), - _('Discard upstream RFC1918 responses')); - - o.rmempty = false; - - - o = s.taboption('general', form.Flag, 'rebind_localhost', - _('Allow localhost'), - _('Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services')); - - o.depends('rebind_protection', '1'); - - - o = s.taboption('general', form.DynamicList, 'rebind_domain', - _('Domain whitelist'), - _('List of domains to allow RFC1918 responses for')); - o.optional = true; - - o.depends('rebind_protection', '1'); - o.datatype = 'host(1)'; - o.placeholder = 'ihost.netflix.com'; - - - o = s.taboption('advanced', form.Value, 'port', - _('DNS server port'), - _('Listening port for inbound DNS queries')); - - o.optional = true; - o.datatype = 'port'; - o.placeholder = 53; - - - o = s.taboption('advanced', form.Value, 'queryport', - _('DNS query port'), - _('Fixed source port for outbound DNS queries')); - - o.optional = true; - o.datatype = 'port'; - o.placeholder = _('any'); - - - o = s.taboption('advanced', form.Value, 'dhcpleasemax', - _('Max. DHCP leases'), - _('Maximum allowed number of active DHCP leases')); - - o.optional = true; - o.datatype = 'uinteger'; - o.placeholder = _('unlimited'); - - - o = s.taboption('advanced', form.Value, 'ednspacket_max', - _('Max. EDNS0 packet size'), - _('Maximum allowed size of EDNS.0 UDP packets')); - - o.optional = true; - o.datatype = 'uinteger'; - o.placeholder = 1280; - - - o = s.taboption('advanced', form.Value, 'dnsforwardmax', - _('Max. concurrent queries'), - _('Maximum allowed number of concurrent DNS queries')); - - o.optional = true; - o.datatype = 'uinteger'; - o.placeholder = 150; - - o = s.taboption('advanced', form.Value, 'cachesize', - _('Size of DNS query cache'), - _('Number of cached DNS entries (max is 10000, 0 is no caching)')); - o.optional = true; - o.datatype = 'range(0,10000)'; - o.placeholder = 150; - - s.taboption('tftp', form.Flag, 'enable_tftp', - _('Enable TFTP server')).optional = true; - - o = s.taboption('tftp', form.Value, 'tftp_root', - _('TFTP server root'), - _('Root directory for files served via TFTP')); - - o.optional = true; - o.depends('enable_tftp', '1'); - o.placeholder = '/'; - - - o = s.taboption('tftp', form.Value, 'dhcp_boot', - _('Network boot image'), - _('Filename of the boot image advertised to clients')); - - o.optional = true; - o.depends('enable_tftp', '1'); - o.placeholder = 'pxelinux.0'; - - o = s.taboption('general', form.Flag, 'localservice', - _('Local Service Only'), - _('Limit DNS service to subnets interfaces on which we are serving DNS.')); - o.optional = false; - o.rmempty = false; - - o = s.taboption('general', form.Flag, 'nonwildcard', - _('Non-wildcard'), - _('Bind dynamically to interfaces rather than wildcard address (recommended as linux default)')); - o.optional = false; - o.rmempty = true; - - o = s.taboption('general', form.DynamicList, 'interface', - _('Listen Interfaces'), - _('Limit listening to these interfaces, and loopback.')); - o.optional = true; - - o = s.taboption('general', form.DynamicList, 'notinterface', - _('Exclude interfaces'), - _('Prevent listening on these interfaces.')); - o.optional = true; - - o = s.taboption('leases', form.SectionValue, '__leases__', form.GridSection, 'host', null, - _('Static leases are used to assign fixed IP addresses and symbolic hostnames to DHCP clients. They are also required for non-dynamic interface configurations where only hosts with a corresponding lease are served.') + '
    ' + - _('Use the Add Button to add a new lease entry. The MAC-Address identifies the host, the IPv4-Address specifies the fixed address to use, and the Hostname is assigned as a symbolic name to the requesting host. The optional Lease time can be used to set non-standard host-specific lease time, e.g. 12h, 3d or infinite.')); - - ss = o.subsection; - - ss.addremove = true; - ss.anonymous = true; - - so = ss.option(form.Value, 'name', _('Hostname')); - so.datatype = 'hostname("strict")'; - so.rmempty = true; - so.write = function(section, value) { - uci.set('dhcp', section, 'name', value); - uci.set('dhcp', section, 'dns', '1'); - }; - so.remove = function(section) { - uci.unset('dhcp', section, 'name'); - uci.unset('dhcp', section, 'dns'); - }; - - so = ss.option(form.Value, 'mac', _('MAC-Address')); - so.datatype = 'list(unique(macaddr))'; - so.rmempty = true; - so.cfgvalue = function(section) { - var macs = uci.get('dhcp', section, 'mac'), - result = []; - - if (!Array.isArray(macs)) - macs = (macs != null && macs != '') ? macs.split(/\ss+/) : []; - - for (var i = 0, mac; (mac = macs[i]) != null; i++) - if (/^([0-9a-fA-F]{1,2}):([0-9a-fA-F]{1,2}):([0-9a-fA-F]{1,2}):([0-9a-fA-F]{1,2}):([0-9a-fA-F]{1,2}):([0-9a-fA-F]{1,2})$/.test(mac)) - result.push('%02X:%02X:%02X:%02X:%02X:%02X'.format( - parseInt(RegExp.$1, 16), parseInt(RegExp.$2, 16), - parseInt(RegExp.$3, 16), parseInt(RegExp.$4, 16), - parseInt(RegExp.$5, 16), parseInt(RegExp.$6, 16))); - - return result.length ? result.join(' ') : null; - }; - Object.keys(hosts).forEach(function(mac) { - so.value(mac); - }); - - so = ss.option(form.Value, 'ip', _('IPv4-Address')); - so.datatype = 'or(ip4addr,"ignore")'; - so.validate = function(section, value) { - var mac = this.map.lookupOption('mac', section), - name = this.map.lookupOption('name', section), - m = mac ? mac[0].formvalue(section) : null, - n = name ? name[0].formvalue(section) : null; - - if ((m == null || m == '') && (n == null || n == '')) - return _('One of hostname or mac address must be specified!'); - - return true; - }; - Object.keys(hosts).forEach(function(mac) { - if (hosts[mac].ipv4) - so.value(hosts[mac].ipv4); - }); - - so = ss.option(form.Value, 'gw', _('Gateway IPv4 Address')); - so.rmempty = true; - so.datatype = 'or(ip4addr,"ignore")'; - Object.keys(hosts).forEach(function(mac) { - if (hosts[mac].ipv4) - so.value(hosts[mac].ipv4); - }); - - so = ss.option(form.Value, 'leasetime', _('Lease time')); - so.rmempty = true; - - so = ss.option(form.Value, 'duid', _('DUID')); - so.datatype = 'and(rangelength(20,36),hexstring)'; - Object.keys(duids).forEach(function(duid) { - so.value(duid, '%s (%s)'.format(duid, duids[duid].name || '?')); - }); - - so = ss.option(form.Value, 'hostid', _('IPv6-Suffix (hex)')); - - o = s.taboption('leases', CBILeaseStatus, '__status__'); - - return m.render().then(function(mapEl) { - L.Poll.add(function() { - return callDHCPLeases(4).then(function(leases) { - cbi_update_table(mapEl.querySelector('#lease_status_table'), - leases.map(function(lease) { - var exp; - - if (lease.expires === false) - exp = E('em', _('unlimited')); - else if (lease.expires <= 0) - exp = E('em', _('expired')); - else - exp = '%t'.format(lease.expires); - - return [ - lease.hostname || '?', - lease.ipaddr, - lease.macaddr, - exp - ]; - }), - E('em', _('There are no active leases'))); - }); - }); - - return mapEl; - }); - } -}); diff --git a/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js b/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js deleted file mode 100644 index 3cdea8adb..000000000 --- a/luci-mod-network/htdocs/luci-static/resources/view/network/hosts.js +++ /dev/null @@ -1,42 +0,0 @@ -'use strict'; -'require rpc'; -'require form'; - -return L.view.extend({ - callHostHints: rpc.declare({ - object: 'luci', - method: 'getHostHints', - expect: { '': {} } - }), - - load: function() { - return this.callHostHints(); - }, - - render: function(hosts) { - var m, s, o; - - m = new form.Map('dhcp', _('Hostnames')); - - s = m.section(form.GridSection, 'domain', _('Host entries')); - s.addremove = true; - s.anonymous = true; - s.sortable = true; - - o = s.option(form.Value, 'name', _('Hostname')); - o.datatype = 'hostname'; - o.rmempty = true; - - o = s.option(form.Value, 'ip', _('IP address')); - o.datatype = 'ipaddr'; - o.rmempty = true; - L.sortedKeys(hosts, 'ipv4', 'addr').forEach(function(mac) { - o.value(hosts[mac].ipv4, '%s (%s)'.format( - hosts[mac].ipv4, - hosts[mac].name || mac - )); - }); - - return m.render(); - } -}); diff --git a/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js b/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js deleted file mode 100644 index 88f48d189..000000000 --- a/luci-mod-network/htdocs/luci-static/resources/view/network/iface_status.js +++ /dev/null @@ -1,42 +0,0 @@ -requestAnimationFrame(function() { - document.querySelectorAll('[data-iface-status]').forEach(function(container) { - var network = container.getAttribute('data-iface-status'), - icon = container.querySelector('img'), - info = container.querySelector('span'); - - L.poll(5, L.url('admin/network/iface_status', network), null, function(xhr, ifaces) { - var ifc = Array.isArray(ifaces) ? ifaces[0] : null; - if (!ifc) - return; - - L.itemlist(info, [ - _('Device'), ifc.ifname, - _('Uptime'), ifc.is_up ? '%t'.format(ifc.uptime) : null, - _('MAC'), ifc.ifname ? ifc.macaddr : null, - _('RX'), ifc.ifname ? '%.2mB (%d %s)'.format(ifc.rx_bytes, ifc.rx_packets, _('Pkts.')) : null, - _('TX'), ifc.ifname ? '%.2mB (%d %s)'.format(ifc.tx_bytes, ifc.tx_packets, _('Pkts.')) : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[0] : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[1] : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[2] : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[3] : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[4] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[0] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[1] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[2] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[3] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[4] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[5] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[6] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[7] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[8] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[9] : null, - _('IPv6-PD'), ifc.ip6prefix, - null, ifc.ifname ? null : E('em', _('Interface not present or not connected yet.')) - ]); - - icon.src = L.resource('icons/%s%s.png').format(ifc.type, ifc.is_up ? '' : '_disabled'); - }); - - L.run(); - }); -}); diff --git a/luci-mod-network/htdocs/luci-static/resources/view/network/network.js b/luci-mod-network/htdocs/luci-static/resources/view/network/network.js deleted file mode 100644 index bab23cc3c..000000000 --- a/luci-mod-network/htdocs/luci-static/resources/view/network/network.js +++ /dev/null @@ -1,136 +0,0 @@ -function iface_reconnect(id) { - L.halt(); - L.dom.content(document.getElementById(id + '-ifc-description'), E('em', _('Interface is reconnecting...'))); - L.post(L.url('admin/network/iface_reconnect', id), null, L.run); -} - -function iface_delete(ev) { - if (!confirm(_('Really delete this interface? The deletion cannot be undone! You might lose access to this device if you are connected via this interface'))) { - ev.preventDefault(); - return false; - } - - ev.target.previousElementSibling.value = '1'; - return true; -} - -var networks = []; - -document.querySelectorAll('[data-network]').forEach(function(n) { - networks.push(n.getAttribute('data-network')); -}); - -function render_iface(ifc) { - return E('span', { class: 'cbi-tooltip-container' }, [ - E('img', { 'class' : 'middle', 'src': L.resource('icons/%s%s.png').format( - ifc.is_alias ? 'alias' : ifc.type, - ifc.is_up ? '' : '_disabled') }), - E('span', { 'class': 'cbi-tooltip ifacebadge large' }, [ - E('img', { 'src': L.resource('icons/%s%s.png').format( - ifc.type, ifc.is_up ? '' : '_disabled') }), - L.itemlist(E('span', { 'class': 'left' }), [ - _('Type'), ifc.typename, - _('Device'), ifc.ifname, - _('Connected'), ifc.is_up ? _('yes') : _('no'), - _('MAC'), ifc.macaddr, - _('RX'), '%.2mB (%d %s)'.format(ifc.rx_bytes, ifc.rx_packets, _('Pkts.')), - _('TX'), '%.2mB (%d %s)'.format(ifc.tx_bytes, ifc.tx_packets, _('Pkts.')) - ]) - ]) - ]); -} - -L.poll(5, L.url('admin/network/iface_status', networks.join(',')), null, - function(x, ifcs) { - if (ifcs) { - for (var idx = 0; idx < ifcs.length; idx++) { - var ifc = ifcs[idx]; - - var s = document.getElementById(ifc.id + '-ifc-devices'); - if (s) { - var c = [ render_iface(ifc) ]; - - if (ifc.subdevices && ifc.subdevices.length) - { - var sifs = [ ' (' ]; - - for (var j = 0; j < ifc.subdevices.length; j++) - sifs.push(render_iface(ifc.subdevices[j])); - - sifs.push(')'); - - c.push(E('span', {}, sifs)); - } - - c.push(E('br')); - c.push(E('small', {}, ifc.is_alias ? _('Alias of "%s"').format(ifc.is_alias) : ifc.name)); - - L.dom.content(s, c); - } - - var d = document.getElementById(ifc.id + '-ifc-description'); - if (d && ifc.proto && ifc.ifname) { - var desc = null, c = []; - - if (ifc.is_dynamic) - desc = _('Virtual dynamic interface'); - else if (ifc.is_alias) - desc = _('Alias Interface'); - - if (ifc.desc) - desc = desc ? '%s (%s)'.format(desc, ifc.desc) : ifc.desc; - - L.itemlist(d, [ - _('Protocol'), desc || '?', - _('Uptime'), ifc.is_up ? '%t'.format(ifc.uptime) : null, - _('MAC'), (!ifc.is_dynamic && !ifc.is_alias && ifc.macaddr) ? ifc.macaddr : null, - _('RX'), (!ifc.is_dynamic && !ifc.is_alias) ? '%.2mB (%d %s)'.format(ifc.rx_bytes, ifc.rx_packets, _('Pkts.')) : null, - _('TX'), (!ifc.is_dynamic && !ifc.is_alias) ? '%.2mB (%d %s)'.format(ifc.tx_bytes, ifc.tx_packets, _('Pkts.')) : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[0] : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[1] : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[2] : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[3] : null, - _('IPv4'), ifc.ipaddrs ? ifc.ipaddrs[4] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[0] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[1] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[2] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[3] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[4] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[5] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[6] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[7] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[8] : null, - _('IPv6'), ifc.ip6addrs ? ifc.ip6addrs[9] : null, - _('IPv6-PD'), ifc.ip6prefix, - _('Information'), ifc.is_auto ? null : _('Not started on boot'), - _('Error'), ifc.errors ? ifc.errors[0] : null, - _('Error'), ifc.errors ? ifc.errors[1] : null, - _('Error'), ifc.errors ? ifc.errors[2] : null, - _('Error'), ifc.errors ? ifc.errors[3] : null, - _('Error'), ifc.errors ? ifc.errors[4] : null, - ]); - } - else if (d && !ifc.proto) { - var e = document.getElementById(ifc.id + '-ifc-edit'); - if (e) e.disabled = true; - - var link = L.url('admin/system/opkg') + '?query=luci-proto'; - L.dom.content(d, [ - E('em', _('Unsupported protocol type.')), E('br'), - E('a', { href: link }, _('Install protocol extensions...')) - ]); - } - else if (d && !ifc.ifname) { - var link = L.url('admin/network/network', ifc.name) + '?tab.network.%s=physical'.format(ifc.name); - L.dom.content(d, [ - E('em', _('Network without interfaces.')), E('br'), - E('a', { href: link }, _('Assign interfaces...')) - ]); - } - else if (d) { - L.dom.content(d, E('em' ,_('Interface not present or not connected yet.'))); - } - } - } - } -); diff --git a/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js b/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js deleted file mode 100644 index 4a002c252..000000000 --- a/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js +++ /dev/null @@ -1,102 +0,0 @@ -'use strict'; -'require form'; -'require network'; -'require tools.widgets as widgets'; - -return L.view.extend({ - load: function() { - return network.getDevices(); - }, - - render: function(netdevs) { - var m, s, o; - - m = new form.Map('network', _('Routes'), _('Routes specify over which interface and gateway a certain host or network can be reached.')); - m.tabbed = true; - - for (var i = 4; i <= 6; i += 2) { - s = m.section(form.GridSection, (i == 4) ? 'route' : 'route6', (i == 4) ? _('Static IPv4 Routes') : _('Static IPv6 Routes')); - s.anonymous = true; - s.addremove = true; - s.sortable = true; - - s.tab('general', _('General Settings')); - s.tab('advanced', _('Advanced Settings')); - - o = s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface')); - o.rmempty = false; - o.nocreate = true; - - o = s.taboption('general', form.Value, 'target', _('Target'), (i == 4) ? _('Host-IP or Network') : _('IPv6-Address or Network (CIDR)')); - o.datatype = (i == 4) ? 'ip4addr' : 'ip6addr'; - o.rmempty = false; - - if (i == 4) { - o = s.taboption('general', form.Value, 'netmask', _('IPv4-Netmask'), _('if target is a network')); - o.placeholder = '255.255.255.255'; - o.datatype = 'ip4addr'; - o.rmempty = true; - } - - o = s.taboption('general', form.Value, 'gateway', (i == 4) ? _('IPv4-Gateway') : _('IPv6-Gateway')); - o.datatype = (i == 4) ? 'ip4addr' : 'ip6addr'; - o.rmempty = true; - - o = s.taboption('advanced', form.Value, 'metric', _('Metric')); - o.placeholder = 0; - o.datatype = (i == 4) ? 'range(0,255)' : 'range(0,65535)'; - o.rmempty = true; - o.textvalue = function(section_id) { - return this.cfgvalue(section_id) || 0; - }; - - o = s.taboption('advanced', form.Value, 'mtu', _('MTU')); - o.placeholder = 1500; - o.datatype = 'range(64,9000)'; - o.rmempty = true; - o.modalonly = true; - - o = s.taboption('advanced', form.ListValue, 'type', _('Route type')); - o.value('', 'unicast'); - o.value('local'); - o.value('broadcast'); - o.value('multicast'); - o.value('unreachable'); - o.value('prohibit'); - o.value('blackhole'); - o.value('anycast'); - o.default = ''; - o.rmempty = true; - o.modalonly = true; - - o = s.taboption('advanced', form.Value, 'table', _('Route table')); - o.value('local', 'local (255)'); - o.value('main', 'main (254)'); - o.value('default', 'default (253)'); - o.rmempty = true; - o.modalonly = true; - o.cfgvalue = function(section_id) { - var cfgvalue = this.super('cfgvalue', [section_id]); - return cfgvalue || 'main'; - }; - - o = s.taboption('advanced', form.Value, 'source', _('Source Address')); - o.placeholder = E('em', _('automatic')); - for (var j = 0; j < netdevs.length; j++) { - var addrs = netdevs[j].getIPAddrs(); - for (var k = 0; k < addrs.length; k++) - o.value(addrs[k].split('/')[0]); - } - o.datatype = (i == 4) ? 'ip4addr' : 'ip6addr'; - o.default = ''; - o.rmempty = true; - o.modalonly = true; - - o = s.taboption('advanced', form.Flag, 'onlink', _('On-Link route')); - o.default = o.disabled; - o.rmempty = true; - } - - return m.render(); - } -}); diff --git a/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js b/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js deleted file mode 100644 index d5bd7b0a6..000000000 --- a/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js +++ /dev/null @@ -1,159 +0,0 @@ -var poll = null; - -function format_signal(bss) { - var qval = bss.quality || 0, - qmax = bss.quality_max || 100, - scale = 100 / qmax * qval, - range = 'none'; - - if (!bss.bssid || bss.bssid == '00:00:00:00:00:00') - range = 'none'; - else if (scale < 15) - range = '0'; - else if (scale < 35) - range = '0-25'; - else if (scale < 55) - range = '25-50'; - else if (scale < 75) - range = '50-75'; - else - range = '75-100'; - - return E('span', { - class: 'ifacebadge', - title: '%s: %d%s / %s: %d/%d'.format(_('Signal'), bss.signal, _('dB'), _('Quality'), qval, qmax) - }, [ - E('img', { src: L.resource('icons/signal-%s.png').format(range) }), - ' %d%%'.format(scale) - ]); -} - -function format_encryption(bss) { - var enc = bss.encryption || { } - - if (enc.wep === true) - return 'WEP'; - else if (enc.wpa > 0) - return E('abbr', { - title: 'Pairwise: %h / Group: %h'.format( - enc.pair_ciphers.join(', '), - enc.group_ciphers.join(', ')) - }, - '%h - %h'.format( - (enc.wpa === 3) ? _('mixed WPA/WPA2') : (enc.wpa === 2 ? 'WPA2' : 'WPA'), - enc.auth_suites.join(', '))); - else - return E('em', enc.enabled ? _('unknown') : _('open')); -} - -function format_actions(dev, type, bss) { - var enc = bss.encryption || { }, - input = [ - E('input', { type: 'submit', class: 'cbi-button cbi-button-action important', value: _('Join Network') }), - E('input', { type: 'hidden', name: 'token', value: L.env.token }), - E('input', { type: 'hidden', name: 'device', value: dev }), - E('input', { type: 'hidden', name: 'join', value: bss.ssid }), - E('input', { type: 'hidden', name: 'mode', value: bss.mode }), - E('input', { type: 'hidden', name: 'bssid', value: bss.bssid }), - E('input', { type: 'hidden', name: 'channel', value: bss.channel }), - E('input', { type: 'hidden', name: 'clbridge', value: type === 'wl' ? 1 : 0 }), - E('input', { type: 'hidden', name: 'wep', value: enc.wep ? 1 : 0 }) - ]; - - if (enc.wpa) { - input.push(E('input', { type: 'hidden', name: 'wpa_version', value: enc.wpa })); - - enc.auth_suites.forEach(function(s) { - input.push(E('input', { type: 'hidden', name: 'wpa_suites', value: s })); - }); - - enc.group_ciphers.forEach(function(s) { - input.push(E('input', { type: 'hidden', name: 'wpa_group', value: s })); - }); - - enc.pair_ciphers.forEach(function(s) { - input.push(E('input', { type: 'hidden', name: 'wpa_pairwise', value: s })); - }); - } - - return E('form', { - class: 'inline', - method: 'post', - action: L.url('admin/network/wireless_join') - }, input); -} - -function fade(bss, content) { - if (bss.stale) - return E('span', { style: 'opacity:0.5' }, content); - else - return content; -} - -function flush() { - L.stop(poll); - L.halt(); - - scan(); -} - -function scan() { - var tbl = document.querySelector('[data-wifi-scan]'), - dev = tbl.getAttribute('data-wifi-scan'), - type = tbl.getAttribute('data-wifi-type'); - - cbi_update_table(tbl, [], E('em', { class: 'spinning' }, _('Starting wireless scan...'))); - - L.post(L.url('admin/network/wireless_scan_trigger', dev), null, function(s) { - if (s.status !== 204) { - cbi_update_table(tbl, [], E('em', _('Scan request failed'))); - return; - } - - var count = 0; - - poll = L.poll(3, L.url('admin/network/wireless_scan_results', dev), null, function(s, results) { - if (Array.isArray(results)) { - var bss = []; - - results.sort(function(a, b) { - var diff = (b.quality - a.quality) || (a.channel - b.channel); - - if (diff) - return diff; - - if (a.ssid < b.ssid) - return -1; - else if (a.ssid > b.ssid) - return 1; - - if (a.bssid < b.bssid) - return -1; - else if (a.bssid > b.bssid) - return 1; - }).forEach(function(res) { - bss.push([ - fade(res, format_signal(res)), - fade(res, res.ssid ? '%h'.format(res.ssid) : E('em', {}, _('hidden'))), - fade(res, res.channel), - fade(res, res.mode), - fade(res, res.bssid), - fade(res, format_encryption(res)), - format_actions(dev, type, res) - ]); - }); - - cbi_update_table(tbl, bss, E('em', { class: 'spinning' }, _('No scan results available yet...'))); - } - - if (count++ >= 3) { - count = 0; - L.post(L.url('admin/network/wireless_scan_trigger', dev, 1), null, function() {}); - } - }); - - L.run(); - }); -} - -document.addEventListener('DOMContentLoaded', scan); diff --git a/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js b/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js deleted file mode 100644 index 108a141f8..000000000 --- a/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js +++ /dev/null @@ -1,59 +0,0 @@ -requestAnimationFrame(function() { - document.querySelectorAll('[data-wifi-status]').forEach(function(container) { - var ifname = container.getAttribute('data-wifi-status'), - small = container.querySelector('small'), - info = container.querySelector('span'); - - L.poll(5, L.url('admin/network/wireless_status', ifname), null, function(xhr, iws) { - var iw = Array.isArray(iws) ? iws[0] : null; - if (!iw) - return; - - var is_assoc = (iw.bssid && iw.bssid != '00:00:00:00:00:00' && iw.channel && !iw.disabled); - var p = iw.quality; - var q = iw.disabled ? -1 : p; - - var icon; - if (q < 0) - icon = L.resource('icons/signal-none.png'); - else if (q == 0) - icon = L.resource('icons/signal-0.png'); - else if (q < 25) - icon = L.resource('icons/signal-0-25.png'); - else if (q < 50) - icon = L.resource('icons/signal-25-50.png'); - else if (q < 75) - icon = L.resource('icons/signal-50-75.png'); - else - icon = L.resource('icons/signal-75-100.png'); - - L.dom.content(small, [ - E('img', { - src: icon, - title: '%s: %d %s / %s: %d %s'.format( - _('Signal'), iw.signal, _('dBm'), - _('Noise'), iw.noise, _('dBm')) - }), - '\u00a0', E('br'), '%d%%\u00a0'.format(p) - ]); - - L.itemlist(info, [ - _('Mode'), iw.mode, - _('SSID'), iw.ssid || '?', - _('BSSID'), is_assoc ? iw.bssid : null, - _('Encryption'), is_assoc ? iw.encryption || _('None') : null, - _('Channel'), is_assoc ? '%d (%.3f %s)'.format(iw.channel, iw.frequency || 0, _('GHz')) : null, - _('Tx-Power'), is_assoc ? '%d %s'.format(iw.txpower, _('dBm')) : null, - _('Signal'), is_assoc ? '%d %s'.format(iw.signal, _('dBm')) : null, - _('Noise'), is_assoc ? '%d %s'.format(iw.noise, _('dBm')) : null, - _('Bitrate'), is_assoc ? '%.1f %s'.format(iw.bitrate || 0, _('Mbit/s')) : null, - _('Country'), is_assoc ? iw.country : null - ], [ ' | ', E('br'), E('br'), E('br'), E('br'), E('br'), ' | ', E('br'), ' | ' ]); - - if (!is_assoc) - L.dom.append(info, E('em', iw.disabled ? _('Wireless is disabled') : _('Wireless is not associated'))); - }); - - L.run(); - }); -}); diff --git a/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js deleted file mode 100644 index 57e6bbb04..000000000 --- a/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ /dev/null @@ -1,93 +0,0 @@ -function wifi_delete(ev) { - if (!confirm(_('Really delete this wireless network? The deletion cannot be undone! You might lose access to this device if you are connected via this network.'))) { - ev.preventDefault(); - return false; - } - - ev.target.previousElementSibling.value = '1'; - return true; -} - -function wifi_restart(ev) { - L.halt(); - - findParent(ev.target, '.table').querySelectorAll('[data-disabled="false"]').forEach(function(s) { - L.dom.content(s, E('em', _('Wireless is restarting...'))); - }); - - L.post(L.url('admin/network/wireless_reconnect', ev.target.getAttribute('data-radio')), L.run); -} - -var networks = [ ]; - -document.querySelectorAll('[data-network]').forEach(function(n) { - networks.push(n.getAttribute('data-network')); -}); - -L.poll(5, L.url('admin/network/wireless_status', networks.join(',')), null, - function(x, st) { - if (st) { - var rowstyle = 1; - var radiostate = { }; - - st.forEach(function(s) { - var r = radiostate[s.device.device] || (radiostate[s.device.device] = {}); - - s.is_assoc = (s.bssid && s.bssid != '00:00:00:00:00:00' && s.channel && s.mode != 'Unknown' && !s.disabled); - - r.up = r.up || s.is_assoc; - r.channel = r.channel || s.channel; - r.bitrate = r.bitrate || s.bitrate; - r.frequency = r.frequency || s.frequency; - }); - - for (var i = 0; i < st.length; i++) { - var iw = st[i], - sig = document.getElementById(iw.id + '-iw-signal'), - info = document.getElementById(iw.id + '-iw-status'), - disabled = (info && info.getAttribute('data-disabled') === 'true'); - - var p = iw.quality; - var q = disabled ? -1 : p; - - var icon; - if (q < 0) - icon = L.resource('icons/signal-none.png'); - else if (q == 0) - icon = L.resource('icons/signal-0.png'); - else if (q < 25) - icon = L.resource('icons/signal-0-25.png'); - else if (q < 50) - icon = L.resource('icons/signal-25-50.png'); - else if (q < 75) - icon = L.resource('icons/signal-50-75.png'); - else - icon = L.resource('icons/signal-75-100.png'); - - L.dom.content(sig, E('span', { - class: 'ifacebadge', - title: '%s %d %s / %s: %d %s'.format(_('Signal'), iw.signal, _('dBm'), _('Noise'), iw.noise, _('dBm')) - }, [ E('img', { src: icon }), ' %d%%'.format(p) ])); - - L.itemlist(info, [ - _('SSID'), iw.ssid || '?', - _('Mode'), iw.mode, - _('BSSID'), iw.is_assoc ? iw.bssid : null, - _('Encryption'), iw.is_assoc ? iw.encryption || _('None') : null, - null, iw.is_assoc ? null : E('em', disabled ? _('Wireless is disabled') : _('Wireless is not associated')) - ], [ ' | ', E('br') ]); - } - - for (var dev in radiostate) { - var img = document.getElementById(dev + '-iw-upstate'); - if (img) img.src = L.resource('icons/wifi' + (radiostate[dev].up ? '' : '_disabled') + '.png'); - - var stat = document.getElementById(dev + '-iw-devinfo'); - L.itemlist(stat, [ - _('Channel'), '%s (%s %s)'.format(radiostate[dev].channel || '?', radiostate[dev].frequency || '?', _('GHz')), - _('Bitrate'), '%s %s'.format(radiostate[dev].bitrate || '?', _('Mbit/s')) - ], ' | '); - } - } - } -); diff --git a/luci-mod-network/luasrc/controller/admin/network.lua b/luci-mod-network/luasrc/controller/admin/network.lua deleted file mode 100644 index dba251a2c..000000000 --- a/luci-mod-network/luasrc/controller/admin/network.lua +++ /dev/null @@ -1,437 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2011-2018 Jo-Philipp Wich --- Copyright 2019 Ycarus (Yannick Chabanois) for OpenMPTCProuter project --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.admin.network", package.seeall) - -function index() - local uci = require("luci.model.uci").cursor() - local page - --- if page.inreq then - local has_switch = false - - uci:foreach("network", "switch", - function(s) - has_switch = true - return false - end) - - if has_switch then - page = node("admin", "network", "vlan") - page.target = cbi("admin_network/vlan") - page.title = _("Switch") - page.order = 20 - - page = entry({"admin", "network", "switch_status"}, call("switch_status"), nil) - page.leaf = true - end - - - local has_wifi = false - - uci:foreach("wireless", "wifi-device", - function(s) - has_wifi = true - return false - end) - - if has_wifi then - page = entry({"admin", "network", "wireless_join"}, post("wifi_join"), nil) - page.leaf = true - - page = entry({"admin", "network", "wireless_add"}, post("wifi_add"), nil) - page.leaf = true - - page = entry({"admin", "network", "wireless_status"}, call("wifi_status"), nil) - page.leaf = true - - page = entry({"admin", "network", "wireless_reconnect"}, post("wifi_reconnect"), nil) - page.leaf = true - - page = entry({"admin", "network", "wireless_scan_trigger"}, post("wifi_scan_trigger"), nil) - page.leaf = true - - page = entry({"admin", "network", "wireless_scan_results"}, call("wifi_scan_results"), nil) - page.leaf = true - - page = entry({"admin", "network", "wireless"}, arcombine(cbi("admin_network/wifi_overview"), cbi("admin_network/wifi")), _("Wireless"), 15) - page.leaf = true - page.subindex = true - - if page.inreq then - local wdev - local net = require "luci.model.network".init(uci) - for _, wdev in ipairs(net:get_wifidevs()) do - local wnet - for _, wnet in ipairs(wdev:get_wifinets()) do - entry( - {"admin", "network", "wireless", wnet:id()}, - alias("admin", "network", "wireless"), - wdev:name() .. ": " .. wnet:shortname() - ) - end - end - end - end - - - page = entry({"admin", "network", "iface_add"}, form("admin_network/iface_add"), nil) - page.leaf = true - - page = entry({"admin", "network", "iface_status"}, call("iface_status"), nil) - page.leaf = true - - page = entry({"admin", "network", "iface_reconnect"}, post("iface_reconnect"), nil) - page.leaf = true - - page = entry({"admin", "network", "network"}, arcombine(cbi("admin_network/network"), cbi("admin_network/ifaces")), _("Interfaces"), 10) - page.leaf = true - page.subindex = true - - if page.inreq then - uci:foreach("network", "interface", - function (section) - local ifc = section[".name"] - if ifc ~= "loopback" then - entry({"admin", "network", "network", ifc}, - true, ifc:upper()) - end - end) - end - - - if nixio.fs.access("/etc/config/dhcp") then - page = node("admin", "network", "dhcp") - --page.target = cbi("admin_network/dhcp") - page.target = view("network/dhcp") - page.title = _("DHCP and DNS") - page.order = 30 - - page = node("admin", "network", "hosts") - --page.target = cbi("admin_network/hosts") - page.target = view("network/hosts") - page.title = _("Hostnames") - page.order = 40 - end - - page = node("admin", "network", "routes") - --page.target = cbi("admin_network/routes") - page.target = view("network/routes") - page.title = _("Static Routes") - page.order = 50 - - page = node("admin", "network", "diagnostics") - page.target = template("admin_network/diagnostics") - page.title = _("Diagnostics") - page.order = 60 - - page = entry({"admin", "network", "diag_ping"}, post("diag_ping"), nil) - page.leaf = true - - page = entry({"admin", "network", "diag_nslookup"}, post("diag_nslookup"), nil) - page.leaf = true - - page = entry({"admin", "network", "diag_traceroute"}, post("diag_traceroute"), nil) - page.leaf = true - - page = entry({"admin", "network", "diag_ping6"}, post("diag_ping6"), nil) - page.leaf = true - - page = entry({"admin", "network", "diag_getip"}, post("diag_getip"), nil) - page.leaf = true - - page = entry({"admin", "network", "diag_netstat"}, post("diag_netstat"), nil) - page.leaf = true - - page = entry({"admin", "network", "diag_traceroute6"}, post("diag_traceroute6"), nil) - page.leaf = true --- end -end - -function wifi_join() - local tpl = require "luci.template" - local http = require "luci.http" - local dev = http.formvalue("device") - local ssid = http.formvalue("join") - - if dev and ssid then - local cancel = (http.formvalue("cancel") or http.formvalue("cbi.cancel")) - if not cancel then - local cbi = require "luci.cbi" - local map = luci.cbi.load("admin_network/wifi_add")[1] - - if map:parse() ~= cbi.FORM_DONE then - tpl.render("header") - map:render() - tpl.render("footer") - end - - return - end - end - - tpl.render("admin_network/wifi_join") -end - -function wifi_add() - local dev = luci.http.formvalue("device") - local ntm = require "luci.model.network".init() - - dev = dev and ntm:get_wifidev(dev) - - if dev then - local net = dev:add_wifinet({ - mode = "ap", - ssid = "OpenWrt", - encryption = "none", - disabled = 1 - }) - - ntm:save("wireless") - luci.http.redirect(net:adminlink()) - end -end - -function iface_status(ifaces) - local netm = require "luci.model.network".init() - local rv = { } - - local iface - for iface in ifaces:gmatch("[%w%.%-_]+") do - local net = netm:get_network(iface) - local device = net and net:get_interface() - if device then - local data = { - id = iface, - desc = net:get_i18n(), - proto = net:proto(), - uptime = net:uptime(), - gwaddr = net:gwaddr(), - ipaddrs = net:ipaddrs(), - ip6addrs = net:ip6addrs(), - dnsaddrs = net:dnsaddrs(), - ip6prefix = net:ip6prefix(), - errors = net:errors(), - name = device:shortname(), - type = device:type(), - typename = device:get_type_i18n(), - ifname = device:name(), - macaddr = device:mac(), - is_up = net:is_up() and device:is_up(), - is_alias = net:is_alias(), - is_dynamic = net:is_dynamic(), - is_auto = net:is_auto(), - rx_bytes = device:rx_bytes(), - tx_bytes = device:tx_bytes(), - rx_packets = device:rx_packets(), - tx_packets = device:tx_packets(), - - subdevices = { } - } - - for _, device in ipairs(net:get_interfaces() or {}) do - data.subdevices[#data.subdevices+1] = { - name = device:shortname(), - type = device:type(), - typename = device:get_type_i18n(), - ifname = device:name(), - macaddr = device:mac(), - is_up = device:is_up(), - rx_bytes = device:rx_bytes(), - tx_bytes = device:tx_bytes(), - rx_packets = device:rx_packets(), - tx_packets = device:tx_packets(), - } - end - - rv[#rv+1] = data - else - rv[#rv+1] = { - id = iface, - name = iface, - type = "ethernet" - } - end - end - - if #rv > 0 then - luci.http.prepare_content("application/json") - luci.http.write_json(rv) - return - end - - luci.http.status(404, "No such device") -end - -function iface_reconnect(iface) - local netmd = require "luci.model.network".init() - local net = netmd:get_network(iface) - if net then - luci.sys.call("env -i /sbin/ifup %s >/dev/null 2>/dev/null" - % luci.util.shellquote(iface)) - luci.http.status(200, "Reconnected") - return - end - - luci.http.status(404, "No such interface") -end - -function wifi_status(devs) - local s = require "luci.tools.status" - local rv = { } - - if type(devs) == "string" then - local dev - for dev in devs:gmatch("[%w%.%-]+") do - rv[#rv+1] = s.wifi_network(dev) - end - end - - if #rv > 0 then - luci.http.prepare_content("application/json") - luci.http.write_json(rv) - return - end - - luci.http.status(404, "No such device") -end - -function wifi_reconnect(radio) - local rc = luci.sys.call("env -i /sbin/wifi up %s" % luci.util.shellquote(radio)) - - if rc == 0 then - luci.http.status(200, "Reconnected") - else - luci.http.status(500, "Error") - end -end - -local function _wifi_get_scan_results(cache_key) - local results = luci.util.ubus("session", "get", { - ubus_rpc_session = luci.model.uci:get_session_id(), - keys = { cache_key } - }) - - if type(results) == "table" and - type(results.values) == "table" and - type(results.values[cache_key]) == "table" - then - return results.values[cache_key] - end - - return { } -end - -function wifi_scan_trigger(radio, update) - local iw = radio and luci.sys.wifi.getiwinfo(radio) - - if not iw then - luci.http.status(404, "No such radio device") - return - end - - luci.http.status(204, "Scan scheduled") - - if nixio.fork() == 0 then - io.stderr:close() - io.stdout:close() - - local _, bss - local data, bssids = { }, { } - local cache_key = "scan_%s" % radio - - luci.util.ubus("session", "set", { - ubus_rpc_session = luci.model.uci:get_session_id(), - values = { [cache_key] = nil } - }) - - for _, bss in ipairs(iw.scanlist or { }) do - data[_] = bss - bssids[bss.bssid] = bss - end - - if update then - for _, bss in ipairs(_wifi_get_scan_results(cache_key)) do - if not bssids[bss.bssid] then - bss.stale = true - data[#data + 1] = bss - end - end - end - - luci.util.ubus("session", "set", { - ubus_rpc_session = luci.model.uci:get_session_id(), - values = { [cache_key] = data } - }) - end -end - -function wifi_scan_results(radio) - local results = radio and _wifi_get_scan_results("scan_%s" % radio) - - if results and #results > 0 then - luci.http.prepare_content("application/json") - luci.http.write_json(results) - else - luci.http.status(404, "No wireless scan results") - end -end - -function switch_status(switches) - local s = require "luci.tools.status" - - luci.http.prepare_content("application/json") - luci.http.write_json(s.switch_status(switches)) -end - -function diag_command(cmd, addr) - if addr and addr:match("^[a-zA-Z0-9%-%.:_]+$") then - luci.http.prepare_content("text/plain") - - local util = io.popen(cmd % luci.util.shellquote(addr)) - if util then - while true do - local ln = util:read("*l") - if not ln then break end - luci.http.write(ln) - luci.http.write("\n") - end - - util:close() - end - - return - end - - luci.http.status(500, "Bad address") -end - -function diag_ping(addr) - diag_command("ping -c 5 -W 1 %s 2>&1", addr) -end - -function diag_traceroute(addr) - diag_command("traceroute -q 1 -w 1 -n %s 2>&1", addr) -end - -function diag_nslookup(addr) - diag_command("nslookup %s 2>&1", addr) -end - -function diag_ping6(addr) - diag_command("ping6 -c 5 %s 2>&1", addr) -end - -function diag_traceroute6(addr) - diag_command("traceroute6 -q 1 -w 2 -n %s 2>&1", addr) -end - -function diag_getip(addr) - diag_command("wget -4 -qO- -T 2 %s 2>&1", addr) -end - -function diag_netstat() - diag_command("netstat -lapute 2>&1","http://www.none.com/") -end diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua b/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua deleted file mode 100644 index 93ab68311..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua +++ /dev/null @@ -1,347 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local ipc = require "luci.ip" -local sys = require "luci.sys" -local o -require "luci.util" - -m = Map("dhcp", translate("DHCP and DNS"), - translate("Dnsmasq is a combined DHCP-Server and DNS-" .. - "Forwarder for NAT " .. - "firewalls")) - -s = m:section(TypedSection, "dnsmasq", translate("Server Settings")) -s.anonymous = true -s.addremove = false - -s:tab("general", translate("General Settings")) -s:tab("files", translate("Resolv and Hosts Files")) -s:tab("tftp", translate("TFTP Settings")) -s:tab("advanced", translate("Advanced Settings")) - -s:taboption("general", Flag, "domainneeded", - translate("Domain required"), - translate("Don't forward DNS-Requests without " .. - "DNS-Name")) - -s:taboption("general", Flag, "authoritative", - translate("Authoritative"), - translate("This is the only DHCP in the local network")) - - -s:taboption("files", Flag, "readethers", - translate("Use /etc/ethers"), - translate("Read /etc/ethers to configure the DHCP-Server")) - -s:taboption("files", Value, "leasefile", - translate("Leasefile"), - translate("file where given DHCP-leases will be stored")) - -s:taboption("files", Flag, "noresolv", - translate("Ignore resolve file")).optional = true - -rf = s:taboption("files", Value, "resolvfile", - translate("Resolve file"), - translate("local DNS file")) - -rf:depends("noresolv", "") -rf.optional = true - - -s:taboption("files", Flag, "nohosts", - translate("Ignore /etc/hosts")).optional = true - -s:taboption("files", DynamicList, "addnhosts", - translate("Additional Hosts files")).optional = true - -qu = s:taboption("advanced", Flag, "quietdhcp", - translate("Suppress logging"), - translate("Suppress logging of the routine operation of these protocols")) -qu.optional = true - -se = s:taboption("advanced", Flag, "sequential_ip", - translate("Allocate IP sequentially"), - translate("Allocate IP addresses sequentially, starting from the lowest available address")) -se.optional = true - -bp = s:taboption("advanced", Flag, "boguspriv", - translate("Filter private"), - translate("Do not forward reverse lookups for local networks")) -bp.default = bp.enabled - -s:taboption("advanced", Flag, "filterwin2k", - translate("Filter useless"), - translate("Do not forward requests that cannot be answered by public name servers")) - - -s:taboption("advanced", Flag, "localise_queries", - translate("Localise queries"), - translate("Localise hostname depending on the requesting subnet if multiple IPs are available")) - -local have_dnssec_support = luci.util.checklib("/usr/sbin/dnsmasq", "libhogweed.so") - -if have_dnssec_support then - o = s:taboption("advanced", Flag, "dnssec", - translate("DNSSEC")) - o.optional = true - - o = s:taboption("advanced", Flag, "dnsseccheckunsigned", - translate("DNSSEC check unsigned"), - translate("Requires upstream supports DNSSEC; verify unsigned domain responses really come from unsigned domains")) - o.optional = true -end - -s:taboption("general", Value, "local", - translate("Local server"), - translate("Local domain specification. Names matching this domain are never forwarded and are resolved from DHCP or hosts files only")) - -s:taboption("general", Value, "domain", - translate("Local domain"), - translate("Local domain suffix appended to DHCP names and hosts file entries")) - -s:taboption("advanced", Flag, "expandhosts", - translate("Expand hosts"), - translate("Add local domain suffix to names served from hosts files")) - -s:taboption("advanced", Flag, "nonegcache", - translate("No negative cache"), - translate("Do not cache negative replies, e.g. for not existing domains")) - -s:taboption("advanced", Value, "serversfile", - translate("Additional servers file"), - translate("This file may contain lines like 'server=/domain/1.2.3.4' or 'server=1.2.3.4' for".. - "domain-specific or full upstream DNS servers.")) - -s:taboption("advanced", Flag, "strictorder", - translate("Strict order"), - translate("DNS servers will be queried in the " .. - "order of the resolvfile")).optional = true - -s:taboption("advanced", Flag, "allservers", - translate("All Servers"), - translate("Query all available upstream DNS servers")).optional = true - -bn = s:taboption("advanced", DynamicList, "bogusnxdomain", translate("Bogus NX Domain Override"), - translate("List of hosts that supply bogus NX domain results")) - -bn.optional = true -bn.placeholder = "67.215.65.132" - - -s:taboption("general", Flag, "logqueries", - translate("Log queries"), - translate("Write received DNS requests to syslog")).optional = true - -df = s:taboption("general", DynamicList, "server", translate("DNS forwardings"), - translate("List of DNS " .. - "servers to forward requests to")) - -df.optional = true -df.placeholder = "/example.org/10.1.2.3" - - -rp = s:taboption("general", Flag, "rebind_protection", - translate("Rebind protection"), - translate("Discard upstream RFC1918 responses")) - -rp.rmempty = false - - -rl = s:taboption("general", Flag, "rebind_localhost", - translate("Allow localhost"), - translate("Allow upstream responses in the 127.0.0.0/8 range, e.g. for RBL services")) - -rl:depends("rebind_protection", "1") - - -rd = s:taboption("general", DynamicList, "rebind_domain", - translate("Domain whitelist"), - translate("List of domains to allow RFC1918 responses for")) -rd.optional = true - -rd:depends("rebind_protection", "1") -rd.datatype = "host(1)" -rd.placeholder = "ihost.netflix.com" - - -pt = s:taboption("advanced", Value, "port", - translate("DNS server port"), - translate("Listening port for inbound DNS queries")) - -pt.optional = true -pt.datatype = "port" -pt.placeholder = 53 - - -qp = s:taboption("advanced", Value, "queryport", - translate("DNS query port"), - translate("Fixed source port for outbound DNS queries")) - -qp.optional = true -qp.datatype = "port" -qp.placeholder = translate("any") - - -lm = s:taboption("advanced", Value, "dhcpleasemax", - translate("Max. DHCP leases"), - translate("Maximum allowed number of active DHCP leases")) - -lm.optional = true -lm.datatype = "uinteger" -lm.placeholder = translate("unlimited") - - -em = s:taboption("advanced", Value, "ednspacket_max", - translate("Max. EDNS0 packet size"), - translate("Maximum allowed size of EDNS.0 UDP packets")) - -em.optional = true -em.datatype = "uinteger" -em.placeholder = 1280 - - -cq = s:taboption("advanced", Value, "dnsforwardmax", - translate("Max. concurrent queries"), - translate("Maximum allowed number of concurrent DNS queries")) - -cq.optional = true -cq.datatype = "uinteger" -cq.placeholder = 150 - -cs = s:taboption("advanced", Value, "cachesize", - translate("Size of DNS query cache"), - translate("Number of cached DNS entries (max is 10000, 0 is no caching)")) -cs.optional = true -cs.datatype = "range(0,10000)" -cs.placeholder = 150 - -s:taboption("tftp", Flag, "enable_tftp", - translate("Enable TFTP server")).optional = true - -tr = s:taboption("tftp", Value, "tftp_root", - translate("TFTP server root"), - translate("Root directory for files served via TFTP")) - -tr.optional = true -tr:depends("enable_tftp", "1") -tr.placeholder = "/" - - -db = s:taboption("tftp", Value, "dhcp_boot", - translate("Network boot image"), - translate("Filename of the boot image advertised to clients")) - -db.optional = true -db:depends("enable_tftp", "1") -db.placeholder = "pxelinux.0" - -o = s:taboption("general", Flag, "localservice", - translate("Local Service Only"), - translate("Limit DNS service to subnets interfaces on which we are serving DNS.")) -o.optional = false -o.rmempty = false - -o = s:taboption("general", Flag, "nonwildcard", - translate("Non-wildcard"), - translate("Bind dynamically to interfaces rather than wildcard address (recommended as linux default)")) -o.optional = false -o.rmempty = true - -o = s:taboption("general", DynamicList, "interface", - translate("Listen Interfaces"), - translate("Limit listening to these interfaces, and loopback.")) -o.optional = true - -o = s:taboption("general", DynamicList, "notinterface", - translate("Exclude interfaces"), - translate("Prevent listening on these interfaces.")) -o.optional = true - -m:section(SimpleSection).template = "lease_status" - -s = m:section(TypedSection, "host", translate("Static Leases"), - translate("Static leases are used to assign fixed IP addresses and symbolic hostnames to " .. - "DHCP clients. They are also required for non-dynamic interface configurations where " .. - "only hosts with a corresponding lease are served.") .. "
    " .. - translate("Use the Add Button to add a new lease entry. The MAC-Address " .. - "identifies the host, the IPv4-Address specifies the fixed address to " .. - "use, and the Hostname is assigned as a symbolic name to the requesting host. " .. - "The optional Lease time can be used to set non-standard host-specific " .. - "lease time, e.g. 12h, 3d or infinite.")) - -s.addremove = true -s.anonymous = true -s.template = "cbi/tblsection" - -name = s:option(Value, "name", translate("Hostname")) -name.datatype = "hostname('strict')" -name.rmempty = true - -function name.write(self, section, value) - Value.write(self, section, value) - m:set(section, "dns", "1") -end - -function name.remove(self, section) - Value.remove(self, section) - m:del(section, "dns") -end - -mac = s:option(Value, "mac", translate("MAC-Address")) -mac.datatype = "list(unique(macaddr))" -mac.rmempty = true - -function mac.cfgvalue(self, section) - local val = Value.cfgvalue(self, section) - return ipc.checkmac(val) or val -end - -ip = s:option(Value, "ip", translate("IPv4-Address")) -ip.datatype = "or(ip4addr,'ignore')" - -gw = s:option(Value, "gw", translate("Gateway IPv4 Address")) -gw.datatype = "or(ip4addr,'ignore')" - -time = s:option(Value, "leasetime", translate("Lease time")) -time.rmempty = true - -duid = s:option(Value, "duid", translate("DUID")) -duid.datatype = "and(rangelength(20,36),hexstring)" -fp = io.open("/var/hosts/odhcpd") -if fp then - for line in fp:lines() do - local net_val, duid_val = string.match(line, "# (%S+)%s+(%S+)") - if duid_val then - duid:value(duid_val, duid_val) - end - end - fp:close() -end - -hostid = s:option(Value, "hostid", translate("IPv6-Suffix (hex)")) - -sys.net.host_hints(function(m, v4, v6, name) - if m and v4 then - ip:value(v4) - mac:value(m, "%s (%s)" %{ m, name or v4 }) - end -end) - -function ip.validate(self, value, section) - local m = mac:formvalue(section) or "" - local n = name:formvalue(section) or "" - if value and #n == 0 and #m == 0 then - return nil, translate("One of hostname or mac address must be specified!") - end - return Value.validate(self, value, section) -end - - -return m diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua b/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua deleted file mode 100644 index 46945af58..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua +++ /dev/null @@ -1,31 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2010-2015 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local ipc = require "luci.ip" -local sys = require "luci.sys" - -m = Map("dhcp", translate("Hostnames")) - -s = m:section(TypedSection, "domain", translate("Host entries")) -s.addremove = true -s.anonymous = true -s.template = "cbi/tblsection" - -hn = s:option(Value, "name", translate("Hostname")) -hn.datatype = "hostname" -hn.rmempty = true - -ip = s:option(Value, "ip", translate("IP address")) -ip.datatype = "ipaddr" -ip.rmempty = true - -sys.net.host_hints(function(mac, v4, v6, name) - v6 = v6 and ipc.IPv6(v6) - - if v4 or (v6 and not v6:is6linklocal()) then - ip:value(tostring(v4 or v6), "%s (%s)" %{ tostring(v4 or v6), name or mac }) - end -end) - -return m diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua b/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua deleted file mode 100644 index aac944c7a..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua +++ /dev/null @@ -1,115 +0,0 @@ --- Copyright 2009-2010 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local nw = require "luci.model.network".init() -local fw = require "luci.model.firewall".init() -local utl = require "luci.util" -local uci = require "luci.model.uci".cursor() - -m = SimpleForm("network", translate("Create Interface")) -m.redirect = luci.dispatcher.build_url("admin/network/network") -m.reset = false - -function m.on_cancel() - luci.http.redirect(luci.dispatcher.build_url("admin/network/network")) -end - -newnet = m:field(Value, "_netname", translate("Name of the new interface"), - translate("The allowed characters are: A-Z, a-z, " .. - "0-9 and _" - )) - -newnet:depends("_attach", "") -newnet.default = arg[1] and "net_" .. arg[1]:gsub("[^%w_]+", "_") -newnet.datatype = "and(uciname,maxlength(15))" - -advice = m:field(DummyValue, "d1", translate("Note: interface name length"), - translate("Maximum length of the name is 15 characters including " .. - "the automatic protocol/bridge prefix (br-, 6in4-, pppoe- etc.)" - )) - -newproto = m:field(ListValue, "_netproto", translate("Protocol of the new interface")) - ---netbridge = m:field(Flag, "_bridge", translate("Create a bridge over multiple interfaces")) -newtype = m:field(ListValue, "_type", translate("Type of the new interface")) -newtype:value("", translate("Default")) -newtype:value("macvlan", translate("Create a macvlan sub interface")) -newtype:value("bridge", translate("Create a bridge over multiple interfaces")) - -sifname = m:field(Value, "_ifname", translate("Cover the following interface")) - -sifname.widget = "radio" -sifname.template = "cbi/network_ifacelist" -sifname.nobridges = true - - -mifname = m:field(Value, "_ifnames", translate("Cover the following interfaces")) - -mifname.widget = "checkbox" -mifname.template = "cbi/network_ifacelist" -mifname.nobridges = true - -vifname = m:field(Value, "_vifname", translate("Cover the following interface")) -vifname.default = "eth0" - -local _, p -for _, p in ipairs(nw:get_protocols()) do - if p:is_installed() then - newproto:value(p:proto(), p:get_i18n()) - --if not p:is_virtual() then netbridge:depends("_netproto", p:proto()) end - if not p:is_virtual() then newtype:depends("_netproto", p:proto()) end - if not p:is_floating() then - --sifname:depends({ _bridge = "", _netproto = p:proto()}) - --mifname:depends({ _bridge = "1", _netproto = p:proto()}) - sifname:depends({ _type = "", _netproto = p:proto() }) - mifname:depends({ _type = "bridge", _netproto = p:proto() }) - vifname:depends({ _type = "macvlan", _netproto = p:proto() }) - end - end -end - -function newproto.validate(self, value, section) - local name = newnet:formvalue(section) - if not name or #name == 0 then - newnet:add_error(section, translate("No network name specified")) - elseif m:get(name) then - newnet:add_error(section, translate("The given network name is not unique")) - end - - local proto = nw:get_protocol(value) - if proto and not proto:is_floating() then - --local br = (netbridge:formvalue(section) == "1") - --local ifn = br and mifname:formvalue(section) or sifname:formvalue(section) - local ifn = ( (newtype:formvalue(section) == "macvlan" and name) or (newtype:formvalue(section) == "bridge" and mifname:formvalue(section)) or sifname:formvalue(section) ) - for ifn in utl.imatch(ifn) do - return value - end - return nil, translate("The selected protocol needs a device assigned") - end - return value -end - -function newproto.write(self, section, value) - local name = newnet:formvalue(section) - if name and #name > 0 then - --local br = (netbridge:formvalue(section) == "1") and "bridge" or nil - --local net = nw:add_network(name, { proto = value, type = br }) - local isBridge = (newtype:formvalue(section) == "bridge") or nil - local isMacvlan = (newtype:formvalue(section) == "macvlan") or nil - local net = nw:add_network(name, { proto = value, type = newtype:formvalue(section), interface = isMacvlan and vifname:formvalue(section) or nil }) - if net then - local ifn - for ifn in utl.imatch( - (isMacvlan and name) or (isBridge and mifname:formvalue(section)) or (sifname:formvalue(section)) - --br and mifname:formvalue(section) or sifname:formvalue(section) - ) do - net:add_interface(ifn) - end - nw:save("network") - nw:save("wireless") - end - luci.http.redirect(luci.dispatcher.build_url("admin/network/network", name)) - end -end - -return m diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua b/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua deleted file mode 100644 index 1e3d27ef6..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua +++ /dev/null @@ -1,591 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2008-2011 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" -local ut = require "luci.util" -local pt = require "luci.tools.proto" -local nw = require "luci.model.network" -local fw = require "luci.model.firewall" - -arg[1] = arg[1] or "" - -local has_dnsmasq = fs.access("/etc/config/dhcp") -local has_firewall = fs.access("/etc/config/firewall") - -m = Map("network", translate("Interfaces") .. " - " .. arg[1]:upper(), translate("On this page you can configure the network interfaces. You can bridge several interfaces by ticking the \"bridge interfaces\" field and enter the names of several network interfaces separated by spaces. You can also use VLAN notation INTERFACE.VLANNR (e.g.: eth0.1).")) -m.redirect = luci.dispatcher.build_url("admin", "network", "network") -m:chain("wireless") -m:chain("luci") - -if has_firewall then - m:chain("firewall") -end - -nw.init(m.uci) -fw.init(m.uci) - - -local net = nw:get_network(arg[1]) - -local function set_ifstate(name, option, value) - local found = false - - m.uci:foreach("luci", "ifstate", function (s) - if s.interface == name then - m.uci:set("luci", s[".name"], option, value) - found = true - return false - end - end) - - if not found then - local sid = m.uci:add("luci", "ifstate") - m.uci:set("luci", sid, "interface", name) - m.uci:set("luci", sid, option, value) - end - - m.uci:save("luci") -end - -local function get_ifstate(name, option) - local val - - m.uci:foreach("luci", "ifstate", function (s) - if s.interface == name then - val = s[option] - return false - end - end) - - return val -end - -local function backup_ifnames(is_bridge) - if not net:is_floating() and not get_ifstate(net:name(), "ifname") then - local ifcs = net:get_interfaces() or { net:get_interface() } - if ifcs then - local _, ifn - local ifns = { } - for _, ifn in ipairs(ifcs) do - local wif = ifn:get_wifinet() - ifns[#ifns+1] = wif and wif:id() or ifn:name() - end - if #ifns > 0 then - set_ifstate(net:name(), "ifname", table.concat(ifns, " ")) - set_ifstate(net:name(), "bridge", tostring(net:is_bridge())) - end - end - end -end - - --- redirect to overview page if network does not exist anymore (e.g. after a revert) -if not net then - luci.http.redirect(luci.dispatcher.build_url("admin/network/network")) - return -end - --- protocol switch was requested, rebuild interface config and reload page -if m:formvalue("cbid.network.%s._switch" % net:name()) then - -- get new protocol - local ptype = m:formvalue("cbid.network.%s.proto" % net:name()) or "-" - local proto = nw:get_protocol(ptype, net:name()) - if proto then - -- backup default - backup_ifnames() - - -- if current proto is not floating and target proto is not floating, - -- then attempt to retain the ifnames - --error(net:proto() .. " > " .. proto:proto()) - if not net:is_floating() and not proto:is_floating() then - -- if old proto is a bridge and new proto not, then clip the - -- interface list to the first ifname only - if net:is_bridge() and proto:is_virtual() then - local _, ifn - local first = true - for _, ifn in ipairs(net:get_interfaces() or { net:get_interface() }) do - if first then - first = false - else - net:del_interface(ifn) - end - end - m:del(net:name(), "type") - end - - -- if the current proto is floating, the target proto not floating, - -- then attempt to restore ifnames from backup - elseif net:is_floating() and not proto:is_floating() then - -- if we have backup data, then re-add all orphaned interfaces - -- from it and restore the bridge choice - local br = (get_ifstate(net:name(), "bridge") == "true") - local ifn - local ifns = { } - for ifn in ut.imatch(get_ifstate(net:name(), "ifname")) do - ifn = nw:get_interface(ifn) - if ifn and not ifn:get_network() then - proto:add_interface(ifn) - if not br then - break - end - end - end - if br then - m:set(net:name(), "type", "bridge") - end - - -- in all other cases clear the ifnames - else - local _, ifc - for _, ifc in ipairs(net:get_interfaces() or { net:get_interface() }) do - net:del_interface(ifc) - end - m:del(net:name(), "type") - end - - -- clear options - local k, v - for k, v in pairs(m:get(net:name())) do - if k:sub(1,1) ~= "." and - k ~= "type" and - k ~= "ifname" - then - m:del(net:name(), k) - end - end - - -- set proto - m:set(net:name(), "proto", proto:proto()) - m.uci:save("network") - m.uci:save("wireless") - - -- reload page - luci.http.redirect(luci.dispatcher.build_url("admin/network/network", arg[1])) - return - end -end - --- dhcp setup was requested, create section and reload page -if m:formvalue("cbid.dhcp._enable._enable") then - m.uci:section("dhcp", "dhcp", arg[1], { - interface = arg[1], - start = "100", - limit = "150", - leasetime = "12h" - }) - - m.uci:save("dhcp") - luci.http.redirect(luci.dispatcher.build_url("admin/network/network", arg[1])) - return -end - -local ifc = net:get_interface() - -s = m:section(NamedSection, arg[1], "interface", translate("Common Configuration")) -s.addremove = false - -s:tab("general", translate("General Setup")) -s:tab("advanced", translate("Advanced Settings")) -s:tab("physical", translate("Physical Settings")) - -if has_firewall then - s:tab("firewall", translate("Firewall Settings")) -end - - -st = s:taboption("general", DummyValue, "__status", translate("Status")) - -local function set_status() - -- if current network is empty, print a warning - if not net:is_floating() and net:is_empty() then - st.template = "cbi/dvalue" - st.network = nil - st.value = translate("There is no device assigned yet, please attach a network device in the \"Physical Settings\" tab") - else - st.template = "admin_network/iface_status" - st.network = arg[1] - st.value = nil - end -end - -m.on_init = set_status -m.on_after_save = set_status - -l = s:taboption("general", Value, "label", translate("Label")) -l.rmempty = true -l:depends("multipath", "on") -l:depends("multipath", "master") -l:depends("multipath", "backup") -l:depends("multipath", "handover") - -p = s:taboption("general", ListValue, "proto", translate("Protocol")) -p.default = net:proto() - - -if not net:is_installed() then - p_install = s:taboption("general", Button, "_install") - p_install.title = translate("Protocol support is not installed") - p_install.inputtitle = translate("Install package %q" % net:opkg_package()) - p_install.inputstyle = "apply" - p_install:depends("proto", net:proto()) - - function p_install.write() - return luci.http.redirect( - luci.dispatcher.build_url("admin/system/opkg") .. - "?query=%s" % net:opkg_package() - ) - end -end - - -p_switch = s:taboption("general", Button, "_switch") -p_switch.title = translate("Really switch protocol?") -p_switch.inputtitle = translate("Switch protocol") -p_switch.inputstyle = "apply" - -local _, pr -for _, pr in ipairs(nw:get_protocols()) do - p:value(pr:proto(), pr:get_i18n()) - if pr:proto() ~= net:proto() then - p_switch:depends("proto", pr:proto()) - end -end - - -auto = s:taboption("advanced", Flag, "auto", translate("Bring up on boot")) -auto.default = (net:proto() == "none") and auto.disabled or auto.enabled - --- Add MPTCP -if fs.access("/proc/sys/net/mptcp") then - mptcp = s:taboption("advanced", ListValue, "multipath", translate("Multipath TCP"), translate("One interface must be set as master")) - mptcp:value("on", translate("enabled")) - mptcp:value("off", translate("disabled")) - mptcp:value("master", translate("master")) - mptcp:value("backup", translate("backup")) - mptcp:value("handover", translate("handover")) - mptcp.default = "off" -end - -delegate = s:taboption("advanced", Flag, "delegate", translate("Use builtin IPv6-management")) -delegate.default = delegate.enabled - -force_link = s:taboption("advanced", Flag, "force_link", - translate("Force link"), - translate("Set interface properties regardless of the link carrier (If set, carrier sense events do not invoke hotplug handlers).")) - -force_link.default = (net:proto() == "static") and force_link.enabled or force_link.disabled - - -if not net:is_virtual() then - --br = s:taboption("physical", Flag, "type", translate("Bridge interfaces"), translate("creates a bridge over specified interface(s)")) - --br.enabled = "bridge" - --br.rmempty = true - --br:depends("proto", "static") - --br:depends("proto", "dhcp") - --br:depends("proto", "none") - - iftype = s:taboption("physical", ListValue, "type", translate("Type of the interface")) - iftype:value("", translate("Default")) - iftype:value("macvlan", translate("Create a macvlan sub interface")) - iftype:value("bridge", translate("Create a bridge over multiple interfaces")) - iftype:depends("proto", "static") - iftype:depends("proto", "dhcp") - iftype:depends("proto", "none") - - stp = s:taboption("physical", Flag, "stp", translate("Enable STP"), - translate("Enables the Spanning Tree Protocol on this bridge")) - stp:depends("type", "bridge") - stp.rmempty = true - - igmp = s:taboption("physical", Flag, "igmp_snooping", translate("Enable IGMP snooping"), - translate("Enables IGMP snooping on this bridge")) - igmp:depends("type", "bridge") - igmp.rmempty = true -end - -macvlanmaster = s:taboption("physical", Value, "masterintf", translate("Master interface")) -macvlanmaster.default = "eth0" -macvlanmaster:depends("type", "macvlan") - -if not net:is_floating() then - ifname_single = s:taboption("physical", Value, "ifname_single", translate("Interface")) - ifname_single.template = "cbi/network_ifacelist" - ifname_single.widget = "radio" - ifname_single.nobridges = net:is_bridge() - ifname_single.noaliases = false - ifname_single.rmempty = false - ifname_single.network = arg[1] - ifname_single:depends("type", "") - - function ifname_single.cfgvalue(self, s) - -- let the template figure out the related ifaces through the network model - return nil - end - - function ifname_single.write(self, s, val) - local _, i - local new_ifs = { } - local old_ifs = { } - - local alias = net:is_alias() - - if alias then - old_ifs[1] = '@' .. alias - else - for _, i in ipairs(net:get_interfaces() or { net:get_interface() }) do - old_ifs[#old_ifs+1] = i:name() - end - end - - for i in ut.imatch(val) do - new_ifs[#new_ifs+1] = i - - -- if this is not a bridge, only assign first interface - if self.option == "ifname_single" then - break - end - end - - table.sort(old_ifs) - table.sort(new_ifs) - - for i = 1, math.max(#old_ifs, #new_ifs) do - if old_ifs[i] ~= new_ifs[i] then - backup_ifnames() - for i = 1, #old_ifs do - net:del_interface(old_ifs[i]) - end - for i = 1, #new_ifs do - net:add_interface(new_ifs[i]) - end - break - end - end - end -end - - -if not net:is_virtual() then - ifname_multi = s:taboption("physical", Value, "ifname_multi", translate("Interface")) - ifname_multi.template = "cbi/network_ifacelist" - ifname_multi.nobridges = net:is_bridge() - ifname_multi.noaliases = true - ifname_multi.rmempty = false - ifname_multi.network = arg[1] - ifname_multi.widget = "checkbox" - ifname_multi:depends("type", "bridge") - ifname_multi.cfgvalue = ifname_single.cfgvalue - ifname_multi.write = ifname_single.write -end - - -if has_firewall then - fwzone = s:taboption("firewall", Value, "_fwzone", - translate("Create / Assign firewall-zone"), - translate("Choose the firewall zone you want to assign to this interface. Select unspecified to remove the interface from the associated zone or fill out the create field to define a new zone and attach the interface to it.")) - - fwzone.template = "cbi/firewall_zonelist" - fwzone.network = arg[1] - - function fwzone.cfgvalue(self, section) - self.iface = section - local z = fw:get_zone_by_network(section) - return z and z:name() - end - - function fwzone.write(self, section, value) - local zone = fw:get_zone(value) or fw:add_zone(value) - if zone then - fw:del_network(section) - zone:add_network(section) - end - end - - function fwzone.remove(self, section) - fw:del_network(section) - end -end - - -function p.write() end -function p.remove() end -function p.validate(self, value, section) - if value == net:proto() then - if not net:is_floating() and net:is_empty() then - local ifn = ((br and (br:formvalue(section) == "bridge")) - and ifname_multi:formvalue(section) - or ifname_single:formvalue(section)) - - for ifn in ut.imatch(ifn) do - return value - end - return nil, translate("The selected protocol needs a device assigned") - end - end - return value -end - - -local form, ferr = loadfile( - ut.libpath() .. "/model/cbi/admin_network/proto_%s.lua" % net:proto() -) - -if not form then - s:taboption("general", DummyValue, "_error", - translate("Missing protocol extension for proto %q" % net:proto()) - ).value = ferr -else - setfenv(form, getfenv(1))(m, s, net) -end - - -local _, field -for _, field in ipairs(s.children) do - if field ~= st and field ~= p and field ~= p_install and field ~= p_switch then - if next(field.deps) then - local _, dep - for _, dep in ipairs(field.deps) do - dep.proto = net:proto() - end - else - field:depends("proto", net:proto()) - end - end -end - - --- --- Display DNS settings if dnsmasq is available --- - -if has_dnsmasq and net:proto() == "static" then - m2 = Map("dhcp", "", "") - - local has_section = false - - m2.uci:foreach("dhcp", "dhcp", function(s) - if s.interface == arg[1] then - has_section = true - return false - end - end) - - if not has_section and has_dnsmasq then - - s = m2:section(TypedSection, "dhcp", translate("DHCP Server")) - s.anonymous = true - s.cfgsections = function() return { "_enable" } end - - x = s:option(Button, "_enable") - x.title = translate("No DHCP Server configured for this interface") - x.inputtitle = translate("Setup DHCP Server") - x.inputstyle = "apply" - - elseif has_section then - - s = m2:section(TypedSection, "dhcp", translate("DHCP Server")) - s.addremove = false - s.anonymous = true - s:tab("general", translate("General Setup")) - s:tab("advanced", translate("Advanced Settings")) - s:tab("ipv6", translate("IPv6 Settings")) - - function s.filter(self, section) - return m2.uci:get("dhcp", section, "interface") == arg[1] - end - - local ignore = s:taboption("general", Flag, "ignore", - translate("Ignore interface"), - translate("Disable DHCP for " .. - "this interface.")) - - local start = s:taboption("general", Value, "start", translate("Start"), - translate("Lowest leased address as offset from the network address.")) - start.optional = true - start.datatype = "or(uinteger,ip4addr)" - start.default = "100" - - local limit = s:taboption("general", Value, "limit", translate("Limit"), - translate("Maximum number of leased addresses.")) - limit.optional = true - limit.datatype = "uinteger" - limit.default = "150" - - local ltime = s:taboption("general", Value, "leasetime", translate("Lease time"), - translate("Expiry time of leased addresses, minimum is 2 minutes (2m).")) - ltime.rmempty = true - ltime.default = "12h" - - local dd = s:taboption("advanced", Flag, "dynamicdhcp", - translate("Dynamic DHCP"), - translate("Dynamically allocate DHCP addresses for clients. If disabled, only " .. - "clients having static leases will be served.")) - dd.default = dd.enabled - - s:taboption("advanced", Flag, "force", translate("Force"), - translate("Force DHCP on this network even if another server is detected.")) - - -- XXX: is this actually useful? - --s:taboption("advanced", Value, "name", translate("Name"), - -- translate("Define a name for this network.")) - - mask = s:taboption("advanced", Value, "netmask", - translate("IPv4-Netmask"), - translate("Override the netmask sent to clients. Normally it is calculated " .. - "from the subnet that is served.")) - - mask.optional = true - mask.datatype = "ip4addr" - - s:taboption("advanced", DynamicList, "dhcp_option", translate("DHCP-Options"), - translate("Define additional DHCP options, for example \"6,192.168.2.1," .. - "192.168.2.2\" which advertises different DNS servers to clients.")) - - for i, n in ipairs(s.children) do - if n ~= ignore then - n:depends("ignore", "") - end - end - - o = s:taboption("ipv6", ListValue, "ra", translate("Router Advertisement-Service")) - o:value("", translate("disabled")) - o:value("server", translate("server mode")) - o:value("relay", translate("relay mode")) - o:value("hybrid", translate("hybrid mode")) - - o = s:taboption("ipv6", ListValue, "dhcpv6", translate("DHCPv6-Service")) - o:value("", translate("disabled")) - o:value("server", translate("server mode")) - o:value("relay", translate("relay mode")) - o:value("hybrid", translate("hybrid mode")) - - o = s:taboption("ipv6", ListValue, "ndp", translate("NDP-Proxy")) - o:value("", translate("disabled")) - o:value("relay", translate("relay mode")) - o:value("hybrid", translate("hybrid mode")) - - o = s:taboption("ipv6", ListValue, "ra_management", translate("DHCPv6-Mode"), - translate("Default is stateless + stateful")) - o:value("0", translate("stateless")) - o:value("1", translate("stateless + stateful")) - o:value("2", translate("stateful-only")) - o:depends("dhcpv6", "server") - o:depends("dhcpv6", "hybrid") - o.default = "1" - - o = s:taboption("ipv6", Flag, "ra_default", translate("Always announce default router"), - translate("Announce as default router even if no public prefix is available.")) - o:depends("ra", "server") - o:depends("ra", "hybrid") - - s:taboption("ipv6", DynamicList, "dns", translate("Announced DNS servers")) - s:taboption("ipv6", DynamicList, "domain", translate("Announced DNS domains")) - - else - m2 = nil - end -end - - -return m, m2 diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/network.lua b/luci-mod-network/luasrc/model/cbi/admin_network/network.lua deleted file mode 100644 index e2b3c6198..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/network.lua +++ /dev/null @@ -1,236 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2008 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" -local tpl = require "luci.template" -local ntm = require "luci.model.network".init() -local fwm = require "luci.model.firewall".init() -local json = require "luci.jsonc" -local sys = require "luci.sys" - -m = Map("network", translate("Interfaces")) -m:chain("wireless") -m:chain("firewall") -m:chain("dhcp") -m.pageaction = false - - -local _, net -local ifaces, netlist = { }, { } - -for _, net in ipairs(ntm:get_networks()) do - if net:name() ~= "loopback" then - local zn = net:zonename() - local z = zn and fwm:get_zone(zn) or fwm:get_zone_by_network(net:name()) - - local w = 1 - if net:is_alias() then - w = 2 - elseif net:is_dynamic() then - w = 3 - end - - ifaces[#ifaces+1] = net:name() - netlist[#netlist+1] = { - net:name(), z and z:name() or "-", z, net, w - } - end -end - -table.sort(netlist, - function(a, b) - if a[2] ~= b[2] then - return a[2] < b[2] - elseif a[5] ~= b[5] then - return a[5] < b[5] - else - return a[1] < b[1] - end - end) - -s = m:section(TypedSection, "interface", translate("Interface Overview")) -s.template = "admin_network/iface_overview" -s.netlist = netlist - -function s.cfgsections(self) - local _, net, sl = nil, nil, { } - - for _, net in ipairs(netlist) do - sl[#sl+1] = net[1] - end - - return sl -end - -o = s:option(Value, "__disable__") - -function o.write(self, sid, value) - if value ~= "1" then - m:set(sid, "auto", "") - else - m:set(sid, "auto", "0") - end -end - -o.remove = o.write - -o = s:option(Value, "__delete__") - -function o.write(self, sid, value) - ntm:del_network(sid) -end - - -if fs.access("/etc/init.d/dsl_control") then - local ok, boarddata = pcall(json.parse, fs.readfile("/etc/board.json")) - local modemtype = (ok == true) - and (type(boarddata) == "table") - and (type(boarddata.dsl) == "table") - and (type(boarddata.dsl.modem) == "table") - and boarddata.dsl.modem.type - - dsl = m:section(TypedSection, "dsl", translate("DSL")) - dsl.anonymous = true - - annex = dsl:option(ListValue, "annex", translate("Annex")) - annex:value("a", translate("Annex A + L + M (all)")) - annex:value("b", translate("Annex B (all)")) - annex:value("j", translate("Annex J (all)")) - annex:value("m", translate("Annex M (all)")) - annex:value("bdmt", translate("Annex B G.992.1")) - annex:value("b2", translate("Annex B G.992.3")) - annex:value("b2p", translate("Annex B G.992.5")) - annex:value("at1", translate("ANSI T1.413")) - annex:value("admt", translate("Annex A G.992.1")) - annex:value("alite", translate("Annex A G.992.2")) - annex:value("a2", translate("Annex A G.992.3")) - annex:value("a2p", translate("Annex A G.992.5")) - annex:value("l", translate("Annex L G.992.3 POTS 1")) - annex:value("m2", translate("Annex M G.992.3")) - annex:value("m2p", translate("Annex M G.992.5")) - - tone = dsl:option(ListValue, "tone", translate("Tone")) - tone:value("", translate("auto")) - tone:value("a", translate("A43C + J43 + A43")) - tone:value("av", translate("A43C + J43 + A43 + V43")) - tone:value("b", translate("B43 + B43C")) - tone:value("bv", translate("B43 + B43C + V43")) - - if modemtype == "vdsl" then - xfer_mode = dsl:option(ListValue, "xfer_mode", translate("Encapsulation mode")) - xfer_mode:value("", translate("auto")) - xfer_mode:value("atm", translate("ATM (Asynchronous Transfer Mode)")) - xfer_mode:value("ptm", translate("PTM/EFM (Packet Transfer Mode)")) - - line_mode = dsl:option(ListValue, "line_mode", translate("DSL line mode")) - line_mode:value("", translate("auto")) - line_mode:value("adsl", translate("ADSL")) - line_mode:value("vdsl", translate("VDSL")) - - ds_snr = dsl:option(ListValue, "ds_snr_offset", translate("Downstream SNR offset")) - ds_snr.default = "0" - for i = -100, 100, 5 do - ds_snr:value(i, translatef("%.1f dB", i / 10)) - end - end - - firmware = dsl:option(Value, "firmware", translate("Firmware File")) - - m.pageaction = true -end - --- Show ATM bridge section if we have the capabilities -if fs.access("/usr/sbin/br2684ctl") then - atm = m:section(TypedSection, "atm-bridge", translate("ATM Bridges"), - translate("ATM bridges expose encapsulated ethernet in AAL5 " .. - "connections as virtual Linux network interfaces which can " .. - "be used in conjunction with DHCP or PPP to dial into the " .. - "provider network.")) - - atm.addremove = true - atm.anonymous = true - - atm.create = function(self, section) - local sid = TypedSection.create(self, section) - local max_unit = -1 - - m.uci:foreach("network", "atm-bridge", - function(s) - local u = tonumber(s.unit) - if u ~= nil and u > max_unit then - max_unit = u - end - end) - - m.uci:set("network", sid, "unit", max_unit + 1) - m.uci:set("network", sid, "atmdev", 0) - m.uci:set("network", sid, "encaps", "llc") - m.uci:set("network", sid, "payload", "bridged") - m.uci:set("network", sid, "vci", 35) - m.uci:set("network", sid, "vpi", 8) - - return sid - end - - atm:tab("general", translate("General Setup")) - atm:tab("advanced", translate("Advanced Settings")) - - vci = atm:taboption("general", Value, "vci", translate("ATM Virtual Channel Identifier (VCI)")) - vpi = atm:taboption("general", Value, "vpi", translate("ATM Virtual Path Identifier (VPI)")) - encaps = atm:taboption("general", ListValue, "encaps", translate("Encapsulation mode")) - encaps:value("llc", translate("LLC")) - encaps:value("vc", translate("VC-Mux")) - - atmdev = atm:taboption("advanced", Value, "atmdev", translate("ATM device number")) - unit = atm:taboption("advanced", Value, "unit", translate("Bridge unit number")) - payload = atm:taboption("advanced", ListValue, "payload", translate("Forwarding mode")) - payload:value("bridged", translate("bridged")) - payload:value("routed", translate("routed")) - m.pageaction = true -end - -local network = require "luci.model.network" -if network:has_ipv6() then - local s = m:section(NamedSection, "globals", "globals", translate("Global network options")) - local o = s:option(Value, "ula_prefix", translate("IPv6 ULA-Prefix")) - o.datatype = "ip6addr" - o.rmempty = true - m.pageaction = true -end - -if fs.access("/proc/sys/net/mptcp") then - local uname = nixio.uname() - local mtcp = s:option(ListValue, "multipath", translate("Multipath TCP")) - mtcp:value("enable", translate("enable")) - mtcp:value("disable", translate("disable")) - local mtcpck = s:option(ListValue, "mptcp_checksum", translate("Multipath TCP checksum")) - mtcpck:value(1, translate("enable")) - mtcpck:value(0, translate("disable")) - local mtcppm = s:option(ListValue, "mptcp_path_manager", translate("Multipath TCP path-manager")) - mtcppm:value("default", translate("default")) - mtcppm:value("fullmesh", translate("fullmesh")) - mtcppm:value("ndiffports", translate("ndiffports")) - mtcppm:value("blinder", translate("blinder")) - if uname.release:sub(1,4) == "4.19" then - mtcppm:value("netlink", translate("Netlink")) - end - local mtcpsch = s:option(ListValue, "mptcp_scheduler", translate("Multipath TCP scheduler")) - mtcpsch:value("default", translate("default")) - mtcpsch:value("roundrobin", translate("round-robin")) - mtcpsch:value("redundant", translate("redundant")) - if uname.release:sub(1,4) == "4.19" then - mtcpsch:value("blest", translate("BLEST")) - end - local mtcpsyn = s:option(Value, "mptcp_syn_retries", translate("Multipath TCP SYN retries")) - mtcpsyn.datatype = "uinteger" - mtcpsyn.rmempty = false - local congestion = s:option(ListValue, "congestion", translate("Congestion Control")) - local availablecong = sys.exec("sysctl net.ipv4.tcp_available_congestion_control | awk -F'= ' '{print $NF}'") - for cong in string.gmatch(availablecong, "[^%s]+") do - congestion:value(cong, translate(cong)) - end - m.pageaction = true -end - -return m diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua b/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua deleted file mode 100644 index 1970f36a2..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua +++ /dev/null @@ -1,102 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local wa = require "luci.tools.webadmin" -local fs = require "nixio.fs" - -m = Map("network", - translate("Routes"), - translate("Routes specify over which interface and gateway a certain host or network " .. - "can be reached.")) - -s = m:section(TypedSection, "route", translate("Static IPv4 Routes")) -s.addremove = true -s.anonymous = true - -s.template = "cbi/tblsection" - -iface = s:option(ListValue, "interface", translate("Interface")) -wa.cbi_add_networks(iface) - -t = s:option(Value, "target", translate("Target"), translate("Host-IP or Network")) -t.datatype = "ip4addr" -t.rmempty = false - -n = s:option(Value, "netmask", translate("IPv4-Netmask"), translate("if target is a network")) -n.placeholder = "255.255.255.255" -n.datatype = "ip4addr" -n.rmempty = true - -g = s:option(Value, "gateway", translate("IPv4-Gateway")) -g.datatype = "ip4addr" -g.rmempty = true - -metric = s:option(Value, "metric", translate("Metric")) -metric.placeholder = 0 -metric.datatype = "range(0,255)" -metric.size = 5 -metric.rmempty = true - -mtu = s:option(Value, "mtu", translate("MTU")) -mtu.placeholder = 1500 -mtu.datatype = "range(64,9000)" -mtu.size = 5 -mtu.rmempty = true - -routetype = s:option(Value, "type", translate("Route type")) -routetype:value("", "unicast") -routetype:value("local", "local") -routetype:value("broadcast", "broadcast") -routetype:value("multicast", "multicast") -routetype:value("unreachable", "unreachable") -routetype:value("prohibit", "prohibit") -routetype:value("blackhole", "blackhole") -routetype:value("anycast", "anycast") -routetype.default = "" -routetype.rmempty = true - -if fs.access("/proc/net/ipv6_route") then - s = m:section(TypedSection, "route6", translate("Static IPv6 Routes")) - s.addremove = true - s.anonymous = true - - s.template = "cbi/tblsection" - - iface = s:option(ListValue, "interface", translate("Interface")) - wa.cbi_add_networks(iface) - - t = s:option(Value, "target", translate("Target"), translate("IPv6-Address or Network (CIDR)")) - t.datatype = "ip6addr" - t.rmempty = false - - g = s:option(Value, "gateway", translate("IPv6-Gateway")) - g.datatype = "ip6addr" - g.rmempty = true - - metric = s:option(Value, "metric", translate("Metric")) - metric.placeholder = 0 - metric.datatype = "range(0,65535)" -- XXX: not sure - metric.size = 5 - metric.rmempty = true - - mtu = s:option(Value, "mtu", translate("MTU")) - mtu.placeholder = 1500 - mtu.datatype = "range(64,9000)" - mtu.size = 5 - mtu.rmempty = true - - routetype = s:option(Value, "type", translate("Route type")) - routetype:value("", "unicast") - routetype:value("local", "local") - routetype:value("broadcast", "broadcast") - routetype:value("multicast", "multicast") - routetype:value("unreachable", "unreachable") - routetype:value("prohibit", "prohibit") - routetype:value("blackhole", "blackhole") - routetype:value("anycast", "anycast") - routetype.default = "" - routetype.rmempty = true -end - - -return m diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua b/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua deleted file mode 100644 index edeb193ef..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua +++ /dev/null @@ -1,389 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2010-2011 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -m = Map("network", translate("Switch"), translate("The network ports on this device can be combined to several VLANs in which computers can communicate directly with each other. VLANs are often used to separate different network segments. Often there is by default one Uplink port for a connection to the next greater network like the internet and other ports for a local network.")) - -local fs = require "nixio.fs" -local ut = require "luci.util" -local nw = require "luci.model.network" -local switches = { } - -nw.init(m.uci) - -local topologies = nw:get_switch_topologies() or {} - -local update_interfaces = function(old_ifname, new_ifname) - local info = { } - - m.uci:foreach("network", "interface", function(section) - local old_ifnames = section.ifname - local new_ifnames = { } - local cur_ifname - local changed = false - for cur_ifname in luci.util.imatch(old_ifnames) do - if cur_ifname == old_ifname then - new_ifnames[#new_ifnames+1] = new_ifname - changed = true - else - new_ifnames[#new_ifnames+1] = cur_ifname - end - end - if changed then - m.uci:set("network", section[".name"], "ifname", table.concat(new_ifnames, " ")) - - info[#info+1] = translatef("Interface %q device auto-migrated from %q to %q.", - section[".name"], old_ifname, new_ifname) - end - end) - - if #info > 0 then - m.message = (m.message and m.message .. "\n" or "") .. table.concat(info, "\n") - end -end - -local vlan_already_created - -m.uci:foreach("network", "switch", - function(x) - local sid = x['.name'] - local switch_name = x.name or sid - local has_vlan = nil - local has_learn = nil - local has_vlan4k = nil - local has_jumbo3 = nil - local has_mirror = nil - local min_vid = 0 - local max_vid = 16 - local num_vlans = 16 - - local switch_title - local enable_vlan4k = false - - local topo = topologies[switch_name] - - if not topo then - m.message = translatef("Switch %q has an unknown topology - the VLAN settings might not be accurate.", switch_name) - topo = { - ports = { - { num = 0, label = "Port 1" }, - { num = 1, label = "Port 2" }, - { num = 2, label = "Port 3" }, - { num = 3, label = "Port 4" }, - { num = 4, label = "Port 5" }, - { num = 5, label = "CPU (eth0)", tagged = false } - } - } - end - - -- Parse some common switch properties from swconfig help output. - local swc = io.popen("swconfig dev %s help 2>/dev/null" % ut.shellquote(switch_name)) - if swc then - - local is_port_attr = false - local is_vlan_attr = false - - while true do - local line = swc:read("*l") - if not line then break end - - if line:match("^%s+%-%-vlan") then - is_vlan_attr = true - - elseif line:match("^%s+%-%-port") then - is_vlan_attr = false - is_port_attr = true - - elseif line:match("cpu @") then - switch_title = line:match("^switch%d: %w+%((.-)%)") - num_vlans = tonumber(line:match("vlans: (%d+)")) or 16 - min_vid = 1 - - elseif line:match(": pvid") or line:match(": tag") or line:match(": vid") then - if is_vlan_attr then has_vlan4k = line:match(": (%w+)") end - - elseif line:match(": enable_vlan4k") then - enable_vlan4k = true - - elseif line:match(": enable_vlan") then - has_vlan = "enable_vlan" - - elseif line:match(": enable_learning") then - has_learn = "enable_learning" - - elseif line:match(": enable_mirror_rx") then - has_mirror = "enable_mirror_rx" - - elseif line:match(": max_length") then - has_jumbo3 = "max_length" - end - end - - swc:close() - end - - - -- Switch properties - s = m:section(NamedSection, x['.name'], "switch", - switch_title and translatef("Switch %q (%s)", switch_name, switch_title) - or translatef("Switch %q", switch_name)) - - s.addremove = false - - if has_vlan then - s:option(Flag, has_vlan, translate("Enable VLAN functionality")) - end - - if has_learn then - x = s:option(Flag, has_learn, translate("Enable learning and aging")) - x.default = x.enabled - end - - if has_jumbo3 then - x = s:option(Flag, has_jumbo3, translate("Enable Jumbo Frame passthrough")) - x.enabled = "3" - x.rmempty = true - end - - -- Does this switch support port mirroring? - if has_mirror then - s:option(Flag, "enable_mirror_rx", translate("Enable mirroring of incoming packets")) - s:option(Flag, "enable_mirror_tx", translate("Enable mirroring of outgoing packets")) - - local sp = s:option(ListValue, "mirror_source_port", translate("Mirror source port")) - local mp = s:option(ListValue, "mirror_monitor_port", translate("Mirror monitor port")) - - sp:depends("enable_mirror_tx", "1") - sp:depends("enable_mirror_rx", "1") - - mp:depends("enable_mirror_tx", "1") - mp:depends("enable_mirror_rx", "1") - - local _, pt - for _, pt in ipairs(topo.ports) do - sp:value(pt.num, pt.label) - mp:value(pt.num, pt.label) - end - end - - -- VLAN table - s = m:section(TypedSection, "switch_vlan", - switch_title and translatef("VLANs on %q (%s)", switch_name, switch_title) - or translatef("VLANs on %q", switch_name)) - - s.template = "cbi/tblsection" - s.addremove = true - s.anonymous = true - - -- Filter by switch - s.filter = function(self, section) - local device = m:get(section, "device") - return (device and device == switch_name) - end - - -- Override cfgsections callback to enforce row ordering by vlan id. - s.cfgsections = function(self) - local osections = TypedSection.cfgsections(self) - local sections = { } - local section - - for _, section in luci.util.spairs( - osections, - function(a, b) - return (tonumber(m:get(osections[a], has_vlan4k or "vlan")) or 9999) - < (tonumber(m:get(osections[b], has_vlan4k or "vlan")) or 9999) - end - ) do - sections[#sections+1] = section - end - - return sections - end - - -- When creating a new vlan, preset it with the highest found vid + 1. - s.create = function(self, section, origin) - -- VLAN has already been created for another switch - if vlan_already_created then - return - - -- VLAN add button was pressed in an empty VLAN section so only - -- accept the create event if our switch is without existing VLANs - elseif origin == "" then - local is_empty_switch = true - - m.uci:foreach("network", "switch_vlan", - function(s) - if s.device == switch_name then - is_empty_switch = false - return false - end - end) - - if not is_empty_switch then - return - end - - -- VLAN was created for another switch - elseif m:get(origin, "device") ~= switch_name then - return - end - - local sid = TypedSection.create(self, section) - - local max_nr = 0 - local max_id = 0 - - m.uci:foreach("network", "switch_vlan", - function(s) - if s.device == switch_name then - local nr = tonumber(s.vlan) - local id = has_vlan4k and tonumber(s[has_vlan4k]) - if nr ~= nil and nr > max_nr then max_nr = nr end - if id ~= nil and id > max_id then max_id = id end - end - end) - - m:set(sid, "device", switch_name) - m:set(sid, "vlan", max_nr + 1) - - if has_vlan4k then - m:set(sid, has_vlan4k, max_id + 1) - end - - vlan_already_created = true - - return sid - end - - - local port_opts = { } - local untagged = { } - - -- Parse current tagging state from the "ports" option. - local portvalue = function(self, section) - local pt - for pt in (m:get(section, "ports") or ""):gmatch("%w+") do - local pc, tu = pt:match("^(%d+)([tu]*)") - if pc == self.option then return (#tu > 0) and tu or "u" end - end - return "" - end - - -- Validate port tagging. Ensure that a port is only untagged once, - -- bail out if not. - local portvalidate = function(self, value, section) - -- ensure that the ports appears untagged only once - if value == "u" then - if not untagged[self.option] then - untagged[self.option] = true - else - return nil, - translatef("%s is untagged in multiple VLANs!", self.title) - end - end - return value - end - - - local vid = s:option(Value, has_vlan4k or "vlan", "VLAN ID") - local mx_vid = has_vlan4k and 4094 or (num_vlans - 1) - - vid.rmempty = false - vid.forcewrite = true - vid.vlan_used = { } - vid.datatype = "and(uinteger,range("..min_vid..","..mx_vid.."))" - - -- Validate user provided VLAN ID, make sure its within the bounds - -- allowed by the switch. - vid.validate = function(self, value, section) - local v = tonumber(value) - local m = has_vlan4k and 4094 or (num_vlans - 1) - if v ~= nil and v >= min_vid and v <= m then - if not self.vlan_used[v] then - self.vlan_used[v] = true - return value - else - return nil, - translatef("Invalid VLAN ID given! Only unique IDs are allowed") - end - else - return nil, - translatef("Invalid VLAN ID given! Only IDs between %d and %d are allowed.", min_vid, m) - end - end - - -- When writing the "vid" or "vlan" option, serialize the port states - -- as well and write them as "ports" option to uci. - vid.write = function(self, section, new_vid) - local o - local p = { } - for _, o in ipairs(port_opts) do - local new_tag = o:formvalue(section) - if new_tag == "t" then - p[#p+1] = o.option .. new_tag - elseif new_tag == "u" then - p[#p+1] = o.option - end - - if o.info and o.info.device then - local old_tag = o:cfgvalue(section) - local old_vid = self:cfgvalue(section) - if old_tag ~= new_tag or old_vid ~= new_vid then - local old_ifname = (old_tag == "u") and o.info.device - or "%s.%s" %{ o.info.device, old_vid } - - local new_ifname = (new_tag == "u") and o.info.device - or "%s.%s" %{ o.info.device, new_vid } - - if old_ifname ~= new_ifname then - update_interfaces(old_ifname, new_ifname) - end - end - end - end - - if enable_vlan4k then - m:set(sid, "enable_vlan4k", "1") - end - - m:set(section, "ports", table.concat(p, " ")) - return Value.write(self, section, new_vid) - end - - -- Fallback to "vlan" option if "vid" option is supported but unset. - vid.cfgvalue = function(self, section) - return m:get(section, has_vlan4k or "vlan") - or m:get(section, "vlan") - end - - local _, pt - for _, pt in ipairs(topo.ports) do - local po = s:option(ListValue, tostring(pt.num), pt.label) - - po:value("", translate("off")) - - if not pt.tagged then - po:value("u", translate("untagged")) - end - - po:value("t", translate("tagged")) - - po.cfgvalue = portvalue - po.validate = portvalidate - po.write = function() end - po.info = pt - - port_opts[#port_opts+1] = po - end - - table.sort(port_opts, function(a, b) return a.option < b.option end) - switches[#switches+1] = switch_name - end -) - --- Switch status template -s = m:section(SimpleSection) -s.template = "admin_network/switch_status" -s.switches = switches - -return m diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua b/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua deleted file mode 100644 index c2ba51c97..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua +++ /dev/null @@ -1,1215 +0,0 @@ --- Copyright 2008 Steven Barth --- Licensed to the public under the Apache License 2.0. - -local wa = require "luci.tools.webadmin" -local nw = require "luci.model.network" -local ut = require "luci.util" -local nt = require "luci.sys".net -local fs = require "nixio.fs" - -local acct_port, acct_secret, acct_server, anonymous_identity, ant1, ant2, - auth, auth_port, auth_secret, auth_server, bssid, cacert, cacert2, - cc, ch, cipher, clientcert, clientcert2, ea, eaptype, en, encr, - ft_protocol, ft_psk_generate_local, hidden, htmode, identity, - ieee80211r, ieee80211w, ifname, isolate, key_retries, - legacyrates, max_timeout, meshfwd, meshid, ml, mobility_domain, mode, - mp, nasid, network, password, pmk_r1_push, privkey, privkey2, privkeypwd, - privkeypwd2, r0_key_lifetime, r0kh, r1_key_holder, r1kh, - reassociation_deadline, retry_timeout, ssid, st, tp, wepkey, wepslot, - wmm, wpakey, wps, disassoc_low_ack, short_preamble, beacon_int, dtim_period, - wparekey, inactivitypool, maxinactivity, listeninterval, - dae_client, dae_port, dae_port - - -arg[1] = arg[1] or "" - -m = Map("wireless", "", - translate("The Device Configuration section covers physical settings of the radio " .. - "hardware such as channel, transmit power or antenna selection which are shared among all " .. - "defined wireless networks (if the radio hardware is multi-SSID capable). Per network settings " .. - "like encryption or operation mode are grouped in the Interface Configuration.")) - -m:chain("network") -m:chain("firewall") -m.redirect = luci.dispatcher.build_url("admin/network/wireless") - -nw.init(m.uci) - -local wnet = nw:get_wifinet(arg[1]) -local wdev = wnet and wnet:get_device() - --- redirect to overview page if network does not exist anymore (e.g. after a revert) -if not wnet or not wdev then - luci.http.redirect(luci.dispatcher.build_url("admin/network/wireless")) - return -end - -local function txpower_list(iw) - local list = iw.txpwrlist or { } - local off = tonumber(iw.txpower_offset) or 0 - local new = { } - local prev = -1 - local _, val - for _, val in ipairs(list) do - local dbm = val.dbm + off - local mw = math.floor(10 ^ (dbm / 10)) - if mw ~= prev then - prev = mw - new[#new+1] = { - display_dbm = dbm, - display_mw = mw, - driver_dbm = val.dbm, - driver_mw = val.mw - } - end - end - return new -end - -local function txpower_current(pwr, list) - pwr = tonumber(pwr) - if pwr ~= nil then - local _, item - for _, item in ipairs(list) do - if item.driver_dbm >= pwr then - return item.driver_dbm - end - end - end - return pwr or "" -end - -local iw = luci.sys.wifi.getiwinfo(arg[1]) -local hw_modes = iw.hwmodelist or { } -local tx_power_list = txpower_list(iw) -local tx_power_cur = txpower_current(wdev:get("txpower"), tx_power_list) - --- wireless toggle was requested, commit and reload page -function m.parse(map) - local new_cc = m:formvalue("cbid.wireless.%s.country" % wdev:name()) - local old_cc = m:get(wdev:name(), "country") - - if m:formvalue("cbid.wireless.%s.__toggle" % wdev:name()) then - if wdev:get("disabled") == "1" or wnet:get("disabled") == "1" then - wnet:set("disabled", nil) - else - wnet:set("disabled", "1") - end - wdev:set("disabled", nil) - m.apply_needed = true - m.redirect = nil - end - - Map.parse(map) - - if m:get(wdev:name(), "type") == "mac80211" and new_cc and new_cc ~= old_cc then - luci.sys.call("iw reg set %s" % ut.shellquote(new_cc)) - - local old_ch = tonumber(m:formvalue("cbid.wireless.%s._mode_freq.channel" % wdev:name()) or "") - if old_ch then - local _, c, new_ch - for _, c in ipairs(iw.freqlist) do - if c.channel > old_ch or (old_ch <= 14 and c.channel > 14) then - break - end - new_ch = c.channel - end - if new_ch ~= old_ch then - wdev:set("channel", new_ch) - m.message = translatef("Channel %d is not available in the %s regulatory domain and has been auto-adjusted to %d.", - old_ch, new_cc, new_ch) - end - end - end - - if wdev:get("disabled") == "1" or wnet:get("disabled") == "1" then - en.title = translate("Wireless network is disabled") - en.inputtitle = translate("Enable") - en.inputstyle = "apply" - else - en.title = translate("Wireless network is enabled") - en.inputtitle = translate("Disable") - en.inputstyle = "reset" - end -end - -m.title = luci.util.pcdata(wnet:get_i18n()) - -s = m:section(NamedSection, wdev:name(), "wifi-device", translate("Device Configuration")) -s.addremove = false - -s:tab("general", translate("General Setup")) -s:tab("macfilter", translate("MAC-Filter")) -s:tab("advanced", translate("Advanced Settings")) - -st = s:taboption("general", DummyValue, "__status", translate("Status")) -st.template = "admin_network/wifi_status" -st.ifname = arg[1] - -en = s:taboption("general", Button, "__toggle") - -local hwtype = wdev:get("type") - --- NanoFoo -local nsantenna = wdev:get("antenna") - --- Check whether there are client interfaces on the same radio, --- if yes, lock the channel choice as these stations will dicatate the freq -local found_sta = nil -local _, net -if wnet:mode() ~= "sta" then - for _, net in ipairs(wdev:get_wifinets()) do - if net:mode() == "sta" and net:get("disabled") ~= "1" then - if not found_sta then - found_sta = {} - found_sta.channel = net:channel() - found_sta.names = {} - end - found_sta.names[#found_sta.names+1] = net:shortname() - end - end -end - -if found_sta then - ch = s:taboption("general", DummyValue, "choice", translate("Channel")) - ch.value = translatef("Locked to channel %s used by: %s", - found_sta.channel or "(auto)", table.concat(found_sta.names, ", ")) -else - ch = s:taboption("general", Value, "_mode_freq", '
    '..translate("Operating frequency")) - ch.iwinfo = iw - ch.template = "cbi/wireless_modefreq" - - function ch.cfgvalue(self, section) - return { - m:get(section, "hwmode") or "", - m:get(section, "channel") or "auto", - m:get(section, "htmode") or "" - } - end - - function ch.formvalue(self, section) - return { - m:formvalue(self:cbid(section) .. ".band") or (hw_modes.g and "11g" or "11a"), - m:formvalue(self:cbid(section) .. ".channel") or "auto", - m:formvalue(self:cbid(section) .. ".htmode") or "" - } - end - - function ch.write(self, section, value) - m:set(section, "hwmode", value[1]) - m:set(section, "channel", value[2]) - m:set(section, "htmode", value[3]) - end -end - -------------------- MAC80211 Device ------------------ - -if hwtype == "mac80211" then - if #tx_power_list > 0 then - tp = s:taboption("general", ListValue, - "txpower", translate("Transmit Power"), "dBm") - tp.rmempty = true - tp.default = tx_power_cur - function tp.cfgvalue(...) - return txpower_current(Value.cfgvalue(...), tx_power_list) - end - - tp:value("", translate("auto")) - for _, p in ipairs(tx_power_list) do - tp:value(p.driver_dbm, "%i dBm (%i mW)" - %{ p.display_dbm, p.display_mw }) - end - end - - local cl = iw and iw.countrylist - if cl and #cl > 0 then - cc = s:taboption("advanced", ListValue, "country", translate("Country Code"), translate("Use ISO/IEC 3166 alpha2 country codes.")) - cc.default = tostring(iw and iw.country or "00") - for _, c in ipairs(cl) do - cc:value(c.alpha2, "%s - %s" %{ c.alpha2, c.name }) - end - else - s:taboption("advanced", Value, "country", translate("Country Code"), translate("Use ISO/IEC 3166 alpha2 country codes.")) - end - - legacyrates = s:taboption("advanced", Flag, "legacy_rates", translate("Allow legacy 802.11b rates")) - legacyrates.rmempty = false - legacyrates.default = "1" - - s:taboption("advanced", Value, "distance", translate("Distance Optimization"), - translate("Distance to farthest network member in meters.")) - - -- external antenna profiles - local eal = iw and iw.extant - if eal and #eal > 0 then - ea = s:taboption("advanced", ListValue, "extant", translate("Antenna Configuration")) - for _, eap in ipairs(eal) do - ea:value(eap.id, "%s (%s)" %{ eap.name, eap.description }) - if eap.selected then - ea.default = eap.id - end - end - end - - s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold")) - s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold")) - - s:taboption("advanced", Flag, "noscan", translate("Force 40MHz mode"), - translate("Always use 40MHz channels even if the secondary channel overlaps. Using this option does not comply with IEEE 802.11n-2009!")).optional = true - - beacon_int = s:taboption("advanced", Value, "beacon_int", translate("Beacon Interval")) - beacon_int.optional = true - beacon_int.placeholder = 100 - beacon_int.datatype = "range(15,65535)" -end - - -------------------- Broadcom Device ------------------ - -if hwtype == "broadcom" then - tp = s:taboption("general", - (#tx_power_list > 0) and ListValue or Value, - "txpower", translate("Transmit Power"), "dBm") - - tp.rmempty = true - tp.default = tx_power_cur - - function tp.cfgvalue(...) - return txpower_current(Value.cfgvalue(...), tx_power_list) - end - - tp:value("", translate("auto")) - for _, p in ipairs(tx_power_list) do - tp:value(p.driver_dbm, "%i dBm (%i mW)" - %{ p.display_dbm, p.display_mw }) - end - - mode = s:taboption("advanced", ListValue, "hwmode", translate("Band")) - if hw_modes.b then - mode:value("11b", "2.4GHz (802.11b)") - if hw_modes.g then - mode:value("11bg", "2.4GHz (802.11b+g)") - end - end - if hw_modes.g then - mode:value("11g", "2.4GHz (802.11g)") - mode:value("11gst", "2.4GHz (802.11g + Turbo)") - mode:value("11lrs", "2.4GHz (802.11g Limited Rate Support)") - end - if hw_modes.a then mode:value("11a", "5GHz (802.11a)") end - if hw_modes.n then - if hw_modes.g then - mode:value("11ng", "2.4GHz (802.11g+n)") - mode:value("11n", "2.4GHz (802.11n)") - end - if hw_modes.a then - mode:value("11na", "5GHz (802.11a+n)") - mode:value("11n", "5GHz (802.11n)") - end - htmode = s:taboption("advanced", ListValue, "htmode", translate("HT mode (802.11n)")) - htmode:depends("hwmode", "11ng") - htmode:depends("hwmode", "11na") - htmode:depends("hwmode", "11n") - htmode:value("HT20", "20MHz") - htmode:value("HT40", "40MHz") - end - - ant1 = s:taboption("advanced", ListValue, "txantenna", translate("Transmitter Antenna")) - ant1.widget = "radio" - ant1:depends("diversity", "") - ant1:value("3", translate("auto")) - ant1:value("0", translate("Antenna 1")) - ant1:value("1", translate("Antenna 2")) - - ant2 = s:taboption("advanced", ListValue, "rxantenna", translate("Receiver Antenna")) - ant2.widget = "radio" - ant2:depends("diversity", "") - ant2:value("3", translate("auto")) - ant2:value("0", translate("Antenna 1")) - ant2:value("1", translate("Antenna 2")) - - s:taboption("advanced", Flag, "frameburst", translate("Frame Bursting")) - - s:taboption("advanced", Value, "distance", translate("Distance Optimization")) - --s:option(Value, "slottime", translate("Slot time")) - - s:taboption("advanced", Value, "country", translate("Country Code")) - s:taboption("advanced", Value, "maxassoc", translate("Connection Limit")) -end - - ---------------------- HostAP Device --------------------- - -if hwtype == "prism2" then - s:taboption("advanced", Value, "txpower", translate("Transmit Power"), "att units").rmempty = true - - s:taboption("advanced", Flag, "diversity", translate("Diversity")).rmempty = false - - s:taboption("advanced", Value, "txantenna", translate("Transmitter Antenna")) - s:taboption("advanced", Value, "rxantenna", translate("Receiver Antenna")) -end - - ------------------------ Interface ----------------------- - -s = m:section(NamedSection, wnet.sid, "wifi-iface", translate("Interface Configuration")) -s.addremove = false -s.anonymous = true -s.defaults.device = wdev:name() - -s:tab("general", translate("General Setup")) -s:tab("encryption", translate("Wireless Security")) -s:tab("macfilter", translate("MAC-Filter")) -s:tab("advanced", translate("Advanced Settings")) - -mode = s:taboption("general", ListValue, "mode", translate("Mode")) -mode.override_values = true -mode:value("ap", translate("Access Point")) -mode:value("sta", translate("Client")) -mode:value("adhoc", translate("Ad-Hoc")) - -meshid = s:taboption("general", Value, "mesh_id", translate("Mesh Id")) -meshid:depends({mode="mesh"}) - -meshfwd = s:taboption("advanced", Flag, "mesh_fwding", translate("Forward mesh peer traffic")) -meshfwd.rmempty = false -meshfwd.default = "1" -meshfwd:depends({mode="mesh"}) - -mesh_rssi_th = s:taboption("advanced", Value, "mesh_rssi_threshold", - translate("RSSI threshold for joining"), - translate("0 = not using RSSI threshold, 1 = do not change driver default")) -mesh_rssi_th.rmempty = false -mesh_rssi_th.default = "0" -mesh_rssi_th.datatype = "range(-255,1)" -mesh_rssi_th:depends({mode="mesh"}) - -ssid = s:taboption("general", Value, "ssid", translate("ESSID")) -ssid.datatype = "maxlength(32)" -ssid:depends({mode="ap"}) -ssid:depends({mode="sta"}) -ssid:depends({mode="adhoc"}) -ssid:depends({mode="ahdemo"}) -ssid:depends({mode="monitor"}) -ssid:depends({mode="ap-wds"}) -ssid:depends({mode="sta-wds"}) -ssid:depends({mode="wds"}) - -bssid = s:taboption("general", Value, "bssid", translate("BSSID")) -bssid.datatype = "macaddr" - -network = s:taboption("general", Value, "network", translate("Network"), - translate("Choose the network(s) you want to attach to this wireless interface or " .. - "fill out the create field to define a new network.")) - -network.rmempty = true -network.template = "cbi/network_netlist" -network.widget = "checkbox" -network.novirtual = true - -function network.write(self, section, value) - local i = nw:get_interface(section) - if i then - local _, net, old, new = nil, nil, {}, {} - - for _, net in ipairs(i:get_networks()) do - old[net:name()] = true - end - - for net in ut.imatch(value) do - new[net] = true - if not old[net] then - local n = nw:get_network(net) or nw:add_network(net, { proto = "none" }) - if n then - if not n:is_empty() then - n:set("type", "bridge") - end - n:add_interface(i) - end - end - end - - for net, _ in pairs(old) do - if not new[net] then - local n = nw:get_network(net) - if n then - n:del_interface(i) - end - end - end - end -end - --------------------- MAC80211 Interface ---------------------- - -if hwtype == "mac80211" then - if fs.access("/usr/sbin/iw") then - mode:value("mesh", "802.11s") - end - - mode:value("ahdemo", translate("Pseudo Ad-Hoc (ahdemo)")) - mode:value("monitor", translate("Monitor")) - bssid:depends({mode="adhoc"}) - bssid:depends({mode="sta"}) - bssid:depends({mode="sta-wds"}) - - mp = s:taboption("macfilter", ListValue, "macfilter", translate("MAC-Address Filter")) - mp:depends({mode="ap"}) - mp:depends({mode="ap-wds"}) - mp:value("", translate("disable")) - mp:value("allow", translate("Allow listed only")) - mp:value("deny", translate("Allow all except listed")) - - ml = s:taboption("macfilter", DynamicList, "maclist", translate("MAC-List")) - ml.datatype = "macaddr" - ml:depends({macfilter="allow"}) - ml:depends({macfilter="deny"}) - nt.mac_hints(function(mac, name) ml:value(mac, "%s (%s)" %{ mac, name }) end) - - mode:value("ap-wds", "%s (%s)" % {translate("Access Point"), translate("WDS")}) - mode:value("sta-wds", "%s (%s)" % {translate("Client"), translate("WDS")}) - - function mode.write(self, section, value) - if value == "ap-wds" then - ListValue.write(self, section, "ap") - m.uci:set("wireless", section, "wds", 1) - elseif value == "sta-wds" then - ListValue.write(self, section, "sta") - m.uci:set("wireless", section, "wds", 1) - else - ListValue.write(self, section, value) - m.uci:delete("wireless", section, "wds") - end - end - - function mode.cfgvalue(self, section) - local mode = ListValue.cfgvalue(self, section) - local wds = m.uci:get("wireless", section, "wds") == "1" - - if mode == "ap" and wds then - return "ap-wds" - elseif mode == "sta" and wds then - return "sta-wds" - else - return mode - end - end - - hidden = s:taboption("general", Flag, "hidden", translate("Hide ESSID")) - hidden:depends({mode="ap"}) - hidden:depends({mode="ap-wds"}) - - wmm = s:taboption("general", Flag, "wmm", translate("WMM Mode")) - wmm:depends({mode="ap"}) - wmm:depends({mode="ap-wds"}) - wmm.default = wmm.enabled - - isolate = s:taboption("advanced", Flag, "isolate", translate("Isolate Clients"), - translate("Prevents client-to-client communication")) - isolate:depends({mode="ap"}) - isolate:depends({mode="ap-wds"}) - - ifname = s:taboption("advanced", Value, "ifname", translate("Interface name"), translate("Override default interface name")) - ifname.optional = true - - short_preamble = s:taboption("advanced", Flag, "short_preamble", translate("Short Preamble")) - short_preamble.default = short_preamble.enabled - - dtim_period = s:taboption("advanced", Value, "dtim_period", translate("DTIM Interval"), translate("Delivery Traffic Indication Message Interval")) - dtim_period.optional = true - dtim_period.placeholder = 2 - dtim_period.datatype = "range(1,255)" - - - wparekey = s:taboption("advanced", Value, "wpa_group_rekey", translate("Time interval for rekeying GTK"), translate("sec")) - wparekey.optional = true - wparekey.placeholder = 600 - wparekey.datatype = "uinteger" - - inactivitypool = s:taboption("advanced", Flag , "skip_inactivity_poll", translate("Disable Inactivity Polling")) - inactivitypool.optional = true - inactivitypool.datatype = "uinteger" - - maxinactivity = s:taboption("advanced", Value, "max_inactivity", translate("Station inactivity limit"), translate("sec")) - maxinactivity.optional = true - maxinactivity.placeholder = 300 - maxinactivity.datatype = "uinteger" - - listeninterval = s:taboption("advanced", Value, "max_listen_interval", translate("Maximum allowed Listen Interval")) - listeninterval.optional = true - listeninterval.placeholder = 65535 - listeninterval.datatype = "uinteger" - - disassoc_low_ack = s:taboption("advanced", Flag, "disassoc_low_ack", translate("Disassociate On Low Acknowledgement"), - translate("Allow AP mode to disconnect STAs based on low ACK condition")) - disassoc_low_ack.default = disassoc_low_ack.enabled -end - - --------------------- Broadcom Interface ---------------------- - -if hwtype == "broadcom" then - mode:value("wds", translate("WDS")) - mode:value("monitor", translate("Monitor")) - - hidden = s:taboption("general", Flag, "hidden", translate("Hide ESSID")) - hidden:depends({mode="ap"}) - hidden:depends({mode="adhoc"}) - hidden:depends({mode="wds"}) - - isolate = s:taboption("advanced", Flag, "isolate", translate("Separate Clients"), - translate("Prevents client-to-client communication")) - isolate:depends({mode="ap"}) - - s:taboption("advanced", Flag, "doth", "802.11h") - s:taboption("advanced", Flag, "wmm", translate("WMM Mode")) - - bssid:depends({mode="wds"}) - bssid:depends({mode="adhoc"}) -end - - ------------------------ HostAP Interface --------------------- - -if hwtype == "prism2" then - mode:value("wds", translate("WDS")) - mode:value("monitor", translate("Monitor")) - - hidden = s:taboption("general", Flag, "hidden", translate("Hide ESSID")) - hidden:depends({mode="ap"}) - hidden:depends({mode="adhoc"}) - hidden:depends({mode="wds"}) - - bssid:depends({mode="sta"}) - - mp = s:taboption("macfilter", ListValue, "macpolicy", translate("MAC-Address Filter")) - mp:value("", translate("disable")) - mp:value("allow", translate("Allow listed only")) - mp:value("deny", translate("Allow all except listed")) - ml = s:taboption("macfilter", DynamicList, "maclist", translate("MAC-List")) - ml:depends({macpolicy="allow"}) - ml:depends({macpolicy="deny"}) - nt.mac_hints(function(mac, name) ml:value(mac, "%s (%s)" %{ mac, name }) end) - - s:taboption("advanced", Value, "rate", translate("Transmission Rate")) - s:taboption("advanced", Value, "frag", translate("Fragmentation Threshold")) - s:taboption("advanced", Value, "rts", translate("RTS/CTS Threshold")) -end - - -------------------- WiFI-Encryption ------------------- - -encr = s:taboption("encryption", ListValue, "encryption", translate("Encryption")) -encr.override_values = true -encr.override_depends = true -encr:depends({mode="ap"}) -encr:depends({mode="sta"}) -encr:depends({mode="adhoc"}) -encr:depends({mode="ahdemo"}) -encr:depends({mode="ap-wds"}) -encr:depends({mode="sta-wds"}) -encr:depends({mode="mesh"}) - -cipher = s:taboption("encryption", ListValue, "cipher", translate("Cipher")) -cipher:depends({encryption="wpa"}) -cipher:depends({encryption="wpa2"}) -cipher:depends({encryption="psk"}) -cipher:depends({encryption="psk2"}) -cipher:depends({encryption="wpa-mixed"}) -cipher:depends({encryption="psk-mixed"}) -cipher:value("auto", translate("auto")) -cipher:value("ccmp", translate("Force CCMP (AES)")) -cipher:value("tkip", translate("Force TKIP")) -cipher:value("tkip+ccmp", translate("Force TKIP and CCMP (AES)")) - -function encr.cfgvalue(self, section) - local v = tostring(ListValue.cfgvalue(self, section)) - if v == "wep" then - return "wep-open" - elseif v and v:match("%+") then - return (v:gsub("%+.+$", "")) - end - return v -end - -function encr.write(self, section, value) - local e = tostring(encr:formvalue(section)) - local c = tostring(cipher:formvalue(section)) - if value == "wpa" or value == "wpa2" then - self.map.uci:delete("wireless", section, "key") - end - if e and (c == "tkip" or c == "ccmp" or c == "tkip+ccmp") then - e = e .. "+" .. c - end - self.map:set(section, "encryption", e) -end - -function cipher.cfgvalue(self, section) - local v = tostring(ListValue.cfgvalue(encr, section)) - if v and v:match("%+") then - v = v:gsub("^[^%+]+%+", "") - if v == "aes" then v = "ccmp" - elseif v == "tkip+aes" then v = "tkip+ccmp" - elseif v == "aes+tkip" then v = "tkip+ccmp" - elseif v == "ccmp+tkip" then v = "tkip+ccmp" - end - end - return v -end - -function cipher.write(self, section) - return encr:write(section) -end - - -encr:value("none", "No Encryption") -encr:value("wep-open", translate("WEP Open System"), {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}, {mode="ahdemo"}, {mode="wds"}) -encr:value("wep-shared", translate("WEP Shared Key"), {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}, {mode="ahdemo"}, {mode="wds"}) - -if hwtype == "mac80211" or hwtype == "prism2" then - local supplicant = fs.access("/usr/sbin/wpa_supplicant") - local hostapd = fs.access("/usr/sbin/hostapd") - - -- Probe EAP support - local has_ap_eap = (os.execute("hostapd -veap >/dev/null 2>/dev/null") == 0) - local has_sta_eap = (os.execute("wpa_supplicant -veap >/dev/null 2>/dev/null") == 0) - - -- Probe SAE support - local has_ap_sae = (os.execute("hostapd -vsae >/dev/null 2>/dev/null") == 0) - local has_sta_sae = (os.execute("wpa_supplicant -vsae >/dev/null 2>/dev/null") == 0) - - -- Probe OWE support - local has_ap_owe = (os.execute("hostapd -vowe >/dev/null 2>/dev/null") == 0) - local has_sta_owe = (os.execute("wpa_supplicant -vowe >/dev/null 2>/dev/null") == 0) - - if hostapd and supplicant then - encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) - encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) - encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) - if has_ap_sae and has_sta_sae then - encr:value("sae", "WPA3-SAE", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}, {mode="mesh"}) - encr:value("sae-mixed", "WPA2-PSK/WPA3-SAE Mixed Mode", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) - end - if has_ap_eap and has_sta_eap then - encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}) - encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}) - end - if has_ap_owe and has_sta_owe then - encr:value("owe", "OWE", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) - end - elseif hostapd and not supplicant then - encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="ap-wds"}) - encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="ap-wds"}) - encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="ap-wds"}) - if has_ap_sae then - encr:value("sae", "WPA3-SAE", {mode="ap"}, {mode="ap-wds"}) - encr:value("sae-mixed", "WPA2-PSK/WPA3-SAE Mixed Mode", {mode="ap"}, {mode="ap-wds"}) - end - if has_ap_eap then - encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="ap-wds"}) - encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="ap-wds"}) - end - if has_ap_owe then - encr:value("owe", "OWE", {mode="ap"}, {mode="ap-wds"}) - end - encr.description = translate( - "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " .. - "and ad-hoc mode) to be installed." - ) - elseif not hostapd and supplicant then - encr:value("psk", "WPA-PSK", {mode="sta"}, {mode="sta-wds"}, {mode="adhoc"}) - encr:value("psk2", "WPA2-PSK", {mode="sta"}, {mode="sta-wds"}, {mode="adhoc"}) - encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="sta"}, {mode="sta-wds"}, {mode="adhoc"}) - if has_sta_sae then - encr:value("sae", "WPA3-SAE", {mode="sta"}, {mode="sta-wds"}, {mode="mesh"}) - encr:value("sae-mixed", "WPA2-PSK/WPA3-SAE Mixed Mode", {mode="sta"}, {mode="sta-wds"}) - end - if has_sta_eap then - encr:value("wpa", "WPA-EAP", {mode="sta"}, {mode="sta-wds"}) - encr:value("wpa2", "WPA2-EAP", {mode="sta"}, {mode="sta-wds"}) - end - if has_sta_owe then - encr:value("owe", "OWE", {mode="sta"}, {mode="sta-wds"}) - end - encr.description = translate( - "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " .. - "and ad-hoc mode) to be installed." - ) - else - encr.description = translate( - "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " .. - "and ad-hoc mode) to be installed." - ) - end -elseif hwtype == "broadcom" then - encr:value("psk", "WPA-PSK") - encr:value("psk2", "WPA2-PSK") - encr:value("psk+psk2", "WPA-PSK/WPA2-PSK Mixed Mode") -end - -auth_server = s:taboption("encryption", Value, "auth_server", translate("Radius-Authentication-Server")) -auth_server:depends({mode="ap", encryption="wpa"}) -auth_server:depends({mode="ap", encryption="wpa2"}) -auth_server:depends({mode="ap-wds", encryption="wpa"}) -auth_server:depends({mode="ap-wds", encryption="wpa2"}) -auth_server.rmempty = true -auth_server.datatype = "host(0)" - -auth_port = s:taboption("encryption", Value, "auth_port", translate("Radius-Authentication-Port"), translatef("Default %d", 1812)) -auth_port:depends({mode="ap", encryption="wpa"}) -auth_port:depends({mode="ap", encryption="wpa2"}) -auth_port:depends({mode="ap-wds", encryption="wpa"}) -auth_port:depends({mode="ap-wds", encryption="wpa2"}) -auth_port.rmempty = true -auth_port.datatype = "port" - -auth_secret = s:taboption("encryption", Value, "auth_secret", translate("Radius-Authentication-Secret")) -auth_secret:depends({mode="ap", encryption="wpa"}) -auth_secret:depends({mode="ap", encryption="wpa2"}) -auth_secret:depends({mode="ap-wds", encryption="wpa"}) -auth_secret:depends({mode="ap-wds", encryption="wpa2"}) -auth_secret.rmempty = true -auth_secret.password = true - -acct_server = s:taboption("encryption", Value, "acct_server", translate("Radius-Accounting-Server")) -acct_server:depends({mode="ap", encryption="wpa"}) -acct_server:depends({mode="ap", encryption="wpa2"}) -acct_server:depends({mode="ap-wds", encryption="wpa"}) -acct_server:depends({mode="ap-wds", encryption="wpa2"}) -acct_server.rmempty = true -acct_server.datatype = "host(0)" - -acct_port = s:taboption("encryption", Value, "acct_port", translate("Radius-Accounting-Port"), translatef("Default %d", 1813)) -acct_port:depends({mode="ap", encryption="wpa"}) -acct_port:depends({mode="ap", encryption="wpa2"}) -acct_port:depends({mode="ap-wds", encryption="wpa"}) -acct_port:depends({mode="ap-wds", encryption="wpa2"}) -acct_port.rmempty = true -acct_port.datatype = "port" - -acct_secret = s:taboption("encryption", Value, "acct_secret", translate("Radius-Accounting-Secret")) -acct_secret:depends({mode="ap", encryption="wpa"}) -acct_secret:depends({mode="ap", encryption="wpa2"}) -acct_secret:depends({mode="ap-wds", encryption="wpa"}) -acct_secret:depends({mode="ap-wds", encryption="wpa2"}) -acct_secret.rmempty = true -acct_secret.password = true - -dae_client = s:taboption("encryption", Value, "dae_client", translate("DAE-Client")) -dae_client:depends({mode="ap", encryption="wpa"}) -dae_client:depends({mode="ap", encryption="wpa2"}) -dae_client:depends({mode="ap-wds", encryption="wpa"}) -dae_client:depends({mode="ap-wds", encryption="wpa2"}) -dae_client.rmempty = true -dae_client.datatype = "host(0)" - -dae_port = s:taboption("encryption", Value, "dae_port", translate("DAE-Port"), translatef("Default %d", 3799)) -dae_port:depends({mode="ap", encryption="wpa"}) -dae_port:depends({mode="ap", encryption="wpa2"}) -dae_port:depends({mode="ap-wds", encryption="wpa"}) -dae_port:depends({mode="ap-wds", encryption="wpa2"}) -dae_port.rmempty = true -dae_port.datatype = "port" - -dae_secret = s:taboption("encryption", Value, "dae_secret", translate("DAE-Secret")) -dae_secret:depends({mode="ap", encryption="wpa"}) -dae_secret:depends({mode="ap", encryption="wpa2"}) -dae_secret:depends({mode="ap-wds", encryption="wpa"}) -dae_secret:depends({mode="ap-wds", encryption="wpa2"}) -dae_secret.rmempty = true -dae_secret.password = true - -wpakey = s:taboption("encryption", Value, "_wpa_key", translate("Key")) -wpakey:depends("encryption", "psk") -wpakey:depends("encryption", "psk2") -wpakey:depends("encryption", "psk+psk2") -wpakey:depends("encryption", "psk-mixed") -wpakey:depends("encryption", "sae") -wpakey:depends("encryption", "sae-mixed") -wpakey.datatype = "wpakey" -wpakey.rmempty = true -wpakey.password = true - -wpakey.cfgvalue = function(self, section, value) - local key = m.uci:get("wireless", section, "key") - if key == "1" or key == "2" or key == "3" or key == "4" then - return nil - end - return key -end - -wpakey.write = function(self, section, value) - self.map.uci:set("wireless", section, "key", value) - self.map.uci:delete("wireless", section, "key1") -end - - -wepslot = s:taboption("encryption", ListValue, "_wep_key", translate("Used Key Slot")) -wepslot:depends("encryption", "wep-open") -wepslot:depends("encryption", "wep-shared") -wepslot:value("1", translatef("Key #%d", 1)) -wepslot:value("2", translatef("Key #%d", 2)) -wepslot:value("3", translatef("Key #%d", 3)) -wepslot:value("4", translatef("Key #%d", 4)) - -wepslot.cfgvalue = function(self, section) - local slot = tonumber(m.uci:get("wireless", section, "key")) - if not slot or slot < 1 or slot > 4 then - return 1 - end - return slot -end - -wepslot.write = function(self, section, value) - self.map.uci:set("wireless", section, "key", value) -end - -local slot -for slot=1,4 do - wepkey = s:taboption("encryption", Value, "key" .. slot, translatef("Key #%d", slot)) - wepkey:depends("encryption", "wep-open") - wepkey:depends("encryption", "wep-shared") - wepkey.datatype = "wepkey" - wepkey.rmempty = true - wepkey.password = true - - function wepkey.write(self, section, value) - if value and (#value == 5 or #value == 13) then - value = "s:" .. value - end - return Value.write(self, section, value) - end -end - -if hwtype == "mac80211" or hwtype == "prism2" then - - -- Probe 802.11r support (and EAP support as a proxy for Openwrt) - local has_80211r = (os.execute("hostapd -v11r 2>/dev/null || hostapd -veap 2>/dev/null") == 0) - - ieee80211r = s:taboption("encryption", Flag, "ieee80211r", - translate("802.11r Fast Transition"), - translate("Enables fast roaming among access points that belong " .. - "to the same Mobility Domain")) - ieee80211r:depends({mode="ap", encryption="wpa"}) - ieee80211r:depends({mode="ap", encryption="wpa2"}) - ieee80211r:depends({mode="ap-wds", encryption="wpa"}) - ieee80211r:depends({mode="ap-wds", encryption="wpa2"}) - if has_80211r then - ieee80211r:depends({mode="ap", encryption="psk"}) - ieee80211r:depends({mode="ap", encryption="psk2"}) - ieee80211r:depends({mode="ap", encryption="psk-mixed"}) - ieee80211r:depends({mode="ap", encryption="sae"}) - ieee80211r:depends({mode="ap", encryption="sae-mixed"}) - ieee80211r:depends({mode="ap-wds", encryption="psk"}) - ieee80211r:depends({mode="ap-wds", encryption="psk2"}) - ieee80211r:depends({mode="ap-wds", encryption="psk-mixed"}) - ieee80211r:depends({mode="ap-wds", encryption="sae"}) - ieee80211r:depends({mode="ap-wds", encryption="sae-mixed"}) - end - ieee80211r.rmempty = true - - nasid = s:taboption("encryption", Value, "nasid", translate("NAS ID"), - translate("Used for two different purposes: RADIUS NAS ID and " .. - "802.11r R0KH-ID. Not needed with normal WPA(2)-PSK.")) - nasid:depends({mode="ap", encryption="wpa"}) - nasid:depends({mode="ap", encryption="wpa2"}) - nasid:depends({mode="ap-wds", encryption="wpa"}) - nasid:depends({mode="ap-wds", encryption="wpa2"}) - nasid:depends({ieee80211r="1"}) - nasid.rmempty = true - - mobility_domain = s:taboption("encryption", Value, "mobility_domain", - translate("Mobility Domain"), - translate("4-character hexadecimal ID")) - mobility_domain:depends({ieee80211r="1"}) - mobility_domain.placeholder = "4f57" - mobility_domain.datatype = "and(hexstring,rangelength(4,4))" - mobility_domain.rmempty = true - - reassociation_deadline = s:taboption("encryption", Value, "reassociation_deadline", - translate("Reassociation Deadline"), - translate("time units (TUs / 1.024 ms) [1000-65535]")) - reassociation_deadline:depends({ieee80211r="1"}) - reassociation_deadline.placeholder = "1000" - reassociation_deadline.datatype = "range(1000,65535)" - reassociation_deadline.rmempty = true - - ft_protocol = s:taboption("encryption", ListValue, "ft_over_ds", translate("FT protocol")) - ft_protocol:depends({ieee80211r="1"}) - ft_protocol:value("1", translatef("FT over DS")) - ft_protocol:value("0", translatef("FT over the Air")) - ft_protocol.rmempty = true - - ft_psk_generate_local = s:taboption("encryption", Flag, "ft_psk_generate_local", - translate("Generate PMK locally"), - translate("When using a PSK, the PMK can be automatically generated. When enabled, the R0/R1 key options below are not applied. Disable this to use the R0 and R1 key options.")) - ft_psk_generate_local:depends({ieee80211r="1"}) - ft_psk_generate_local.default = ft_psk_generate_local.enabled - ft_psk_generate_local.rmempty = false - - r0_key_lifetime = s:taboption("encryption", Value, "r0_key_lifetime", - translate("R0 Key Lifetime"), translate("minutes")) - r0_key_lifetime:depends({ieee80211r="1"}) - r0_key_lifetime.placeholder = "10000" - r0_key_lifetime.datatype = "uinteger" - r0_key_lifetime.rmempty = true - - r1_key_holder = s:taboption("encryption", Value, "r1_key_holder", - translate("R1 Key Holder"), - translate("6-octet identifier as a hex string - no colons")) - r1_key_holder:depends({ieee80211r="1"}) - r1_key_holder.placeholder = "00004f577274" - r1_key_holder.datatype = "and(hexstring,rangelength(12,12))" - r1_key_holder.rmempty = true - - pmk_r1_push = s:taboption("encryption", Flag, "pmk_r1_push", translate("PMK R1 Push")) - pmk_r1_push:depends({ieee80211r="1"}) - pmk_r1_push.placeholder = "0" - pmk_r1_push.rmempty = true - - r0kh = s:taboption("encryption", DynamicList, "r0kh", translate("External R0 Key Holder List"), - translate("List of R0KHs in the same Mobility Domain. " .. - "
    Format: MAC-address,NAS-Identifier,128-bit key as hex string. " .. - "
    This list is used to map R0KH-ID (NAS Identifier) to a destination " .. - "MAC address when requesting PMK-R1 key from the R0KH that the STA " .. - "used during the Initial Mobility Domain Association.")) - r0kh:depends({ieee80211r="1"}) - r0kh.rmempty = true - - r1kh = s:taboption("encryption", DynamicList, "r1kh", translate("External R1 Key Holder List"), - translate ("List of R1KHs in the same Mobility Domain. ".. - "
    Format: MAC-address,R1KH-ID as 6 octets with colons,128-bit key as hex string. ".. - "
    This list is used to map R1KH-ID to a destination MAC address " .. - "when sending PMK-R1 key from the R0KH. This is also the " .. - "list of authorized R1KHs in the MD that can request PMK-R1 keys.")) - r1kh:depends({ieee80211r="1"}) - r1kh.rmempty = true - -- End of 802.11r options - - eaptype = s:taboption("encryption", ListValue, "eap_type", translate("EAP-Method")) - eaptype:value("tls", "TLS") - eaptype:value("ttls", "TTLS") - eaptype:value("peap", "PEAP") - eaptype:value("fast", "FAST") - eaptype:depends({mode="sta", encryption="wpa"}) - eaptype:depends({mode="sta", encryption="wpa2"}) - eaptype:depends({mode="sta-wds", encryption="wpa"}) - eaptype:depends({mode="sta-wds", encryption="wpa2"}) - - cacert = s:taboption("encryption", FileUpload, "ca_cert", translate("Path to CA-Certificate")) - cacert:depends({mode="sta", encryption="wpa"}) - cacert:depends({mode="sta", encryption="wpa2"}) - cacert:depends({mode="sta-wds", encryption="wpa"}) - cacert:depends({mode="sta-wds", encryption="wpa2"}) - cacert.rmempty = true - - clientcert = s:taboption("encryption", FileUpload, "client_cert", translate("Path to Client-Certificate")) - clientcert:depends({mode="sta", eap_type="tls", encryption="wpa"}) - clientcert:depends({mode="sta", eap_type="tls", encryption="wpa2"}) - clientcert:depends({mode="sta-wds", eap_type="tls", encryption="wpa"}) - clientcert:depends({mode="sta-wds", eap_type="tls", encryption="wpa2"}) - - privkey = s:taboption("encryption", FileUpload, "priv_key", translate("Path to Private Key")) - privkey:depends({mode="sta", eap_type="tls", encryption="wpa2"}) - privkey:depends({mode="sta", eap_type="tls", encryption="wpa"}) - privkey:depends({mode="sta-wds", eap_type="tls", encryption="wpa2"}) - privkey:depends({mode="sta-wds", eap_type="tls", encryption="wpa"}) - - privkeypwd = s:taboption("encryption", Value, "priv_key_pwd", translate("Password of Private Key")) - privkeypwd:depends({mode="sta", eap_type="tls", encryption="wpa2"}) - privkeypwd:depends({mode="sta", eap_type="tls", encryption="wpa"}) - privkeypwd:depends({mode="sta-wds", eap_type="tls", encryption="wpa2"}) - privkeypwd:depends({mode="sta-wds", eap_type="tls", encryption="wpa"}) - privkeypwd.rmempty = true - privkeypwd.password = true - - auth = s:taboption("encryption", ListValue, "auth", translate("Authentication")) - auth:value("PAP", "PAP", {eap_type="ttls"}) - auth:value("CHAP", "CHAP", {eap_type="ttls"}) - auth:value("MSCHAP", "MSCHAP", {eap_type="ttls"}) - auth:value("MSCHAPV2", "MSCHAPv2", {eap_type="ttls"}) - auth:value("EAP-GTC") - auth:value("EAP-MD5") - auth:value("EAP-MSCHAPV2") - auth:value("EAP-TLS") - auth:depends({mode="sta", eap_type="fast", encryption="wpa2"}) - auth:depends({mode="sta", eap_type="fast", encryption="wpa"}) - auth:depends({mode="sta", eap_type="peap", encryption="wpa2"}) - auth:depends({mode="sta", eap_type="peap", encryption="wpa"}) - auth:depends({mode="sta", eap_type="ttls", encryption="wpa2"}) - auth:depends({mode="sta", eap_type="ttls", encryption="wpa"}) - auth:depends({mode="sta-wds", eap_type="fast", encryption="wpa2"}) - auth:depends({mode="sta-wds", eap_type="fast", encryption="wpa"}) - auth:depends({mode="sta-wds", eap_type="peap", encryption="wpa2"}) - auth:depends({mode="sta-wds", eap_type="peap", encryption="wpa"}) - auth:depends({mode="sta-wds", eap_type="ttls", encryption="wpa2"}) - auth:depends({mode="sta-wds", eap_type="ttls", encryption="wpa"}) - - cacert2 = s:taboption("encryption", FileUpload, "ca_cert2", translate("Path to inner CA-Certificate")) - cacert2:depends({mode="sta", auth="EAP-TLS", encryption="wpa"}) - cacert2:depends({mode="sta", auth="EAP-TLS", encryption="wpa2"}) - cacert2:depends({mode="sta-wds", auth="EAP-TLS", encryption="wpa"}) - cacert2:depends({mode="sta-wds", auth="EAP-TLS", encryption="wpa2"}) - - clientcert2 = s:taboption("encryption", FileUpload, "client_cert2", translate("Path to inner Client-Certificate")) - clientcert2:depends({mode="sta", auth="EAP-TLS", encryption="wpa"}) - clientcert2:depends({mode="sta", auth="EAP-TLS", encryption="wpa2"}) - clientcert2:depends({mode="sta-wds", auth="EAP-TLS", encryption="wpa"}) - clientcert2:depends({mode="sta-wds", auth="EAP-TLS", encryption="wpa2"}) - - privkey2 = s:taboption("encryption", FileUpload, "priv_key2", translate("Path to inner Private Key")) - privkey2:depends({mode="sta", auth="EAP-TLS", encryption="wpa"}) - privkey2:depends({mode="sta", auth="EAP-TLS", encryption="wpa2"}) - privkey2:depends({mode="sta-wds", auth="EAP-TLS", encryption="wpa"}) - privkey2:depends({mode="sta-wds", auth="EAP-TLS", encryption="wpa2"}) - - privkeypwd2 = s:taboption("encryption", Value, "priv_key2_pwd", translate("Password of inner Private Key")) - privkeypwd2:depends({mode="sta", auth="EAP-TLS", encryption="wpa"}) - privkeypwd2:depends({mode="sta", auth="EAP-TLS", encryption="wpa2"}) - privkeypwd2:depends({mode="sta-wds", auth="EAP-TLS", encryption="wpa"}) - privkeypwd2:depends({mode="sta-wds", auth="EAP-TLS", encryption="wpa2"}) - privkeypwd2.rmempty = true - privkeypwd2.password = true - - identity = s:taboption("encryption", Value, "identity", translate("Identity")) - identity:depends({mode="sta", eap_type="fast", encryption="wpa2"}) - identity:depends({mode="sta", eap_type="fast", encryption="wpa"}) - identity:depends({mode="sta", eap_type="peap", encryption="wpa2"}) - identity:depends({mode="sta", eap_type="peap", encryption="wpa"}) - identity:depends({mode="sta", eap_type="ttls", encryption="wpa2"}) - identity:depends({mode="sta", eap_type="ttls", encryption="wpa"}) - identity:depends({mode="sta-wds", eap_type="fast", encryption="wpa2"}) - identity:depends({mode="sta-wds", eap_type="fast", encryption="wpa"}) - identity:depends({mode="sta-wds", eap_type="peap", encryption="wpa2"}) - identity:depends({mode="sta-wds", eap_type="peap", encryption="wpa"}) - identity:depends({mode="sta-wds", eap_type="ttls", encryption="wpa2"}) - identity:depends({mode="sta-wds", eap_type="ttls", encryption="wpa"}) - identity:depends({mode="sta", eap_type="tls", encryption="wpa2"}) - identity:depends({mode="sta", eap_type="tls", encryption="wpa"}) - identity:depends({mode="sta-wds", eap_type="tls", encryption="wpa2"}) - identity:depends({mode="sta-wds", eap_type="tls", encryption="wpa"}) - - anonymous_identity = s:taboption("encryption", Value, "anonymous_identity", translate("Anonymous Identity")) - anonymous_identity:depends({mode="sta", eap_type="fast", encryption="wpa2"}) - anonymous_identity:depends({mode="sta", eap_type="fast", encryption="wpa"}) - anonymous_identity:depends({mode="sta", eap_type="peap", encryption="wpa2"}) - anonymous_identity:depends({mode="sta", eap_type="peap", encryption="wpa"}) - anonymous_identity:depends({mode="sta", eap_type="ttls", encryption="wpa2"}) - anonymous_identity:depends({mode="sta", eap_type="ttls", encryption="wpa"}) - anonymous_identity:depends({mode="sta-wds", eap_type="fast", encryption="wpa2"}) - anonymous_identity:depends({mode="sta-wds", eap_type="fast", encryption="wpa"}) - anonymous_identity:depends({mode="sta-wds", eap_type="peap", encryption="wpa2"}) - anonymous_identity:depends({mode="sta-wds", eap_type="peap", encryption="wpa"}) - anonymous_identity:depends({mode="sta-wds", eap_type="ttls", encryption="wpa2"}) - anonymous_identity:depends({mode="sta-wds", eap_type="ttls", encryption="wpa"}) - anonymous_identity:depends({mode="sta", eap_type="tls", encryption="wpa2"}) - anonymous_identity:depends({mode="sta", eap_type="tls", encryption="wpa"}) - anonymous_identity:depends({mode="sta-wds", eap_type="tls", encryption="wpa2"}) - anonymous_identity:depends({mode="sta-wds", eap_type="tls", encryption="wpa"}) - - password = s:taboption("encryption", Value, "password", translate("Password")) - password:depends({mode="sta", eap_type="fast", encryption="wpa2"}) - password:depends({mode="sta", eap_type="fast", encryption="wpa"}) - password:depends({mode="sta", eap_type="peap", encryption="wpa2"}) - password:depends({mode="sta", eap_type="peap", encryption="wpa"}) - password:depends({mode="sta", eap_type="ttls", encryption="wpa2"}) - password:depends({mode="sta", eap_type="ttls", encryption="wpa"}) - password:depends({mode="sta-wds", eap_type="fast", encryption="wpa2"}) - password:depends({mode="sta-wds", eap_type="fast", encryption="wpa"}) - password:depends({mode="sta-wds", eap_type="peap", encryption="wpa2"}) - password:depends({mode="sta-wds", eap_type="peap", encryption="wpa"}) - password:depends({mode="sta-wds", eap_type="ttls", encryption="wpa2"}) - password:depends({mode="sta-wds", eap_type="ttls", encryption="wpa"}) - password.rmempty = true - password.password = true -end - --- ieee802.11w options -if hwtype == "mac80211" then - local has_80211w = (os.execute("hostapd -v11w 2>/dev/null || hostapd -veap 2>/dev/null") == 0) - if has_80211w then - ieee80211w = s:taboption("encryption", ListValue, "ieee80211w", - translate("802.11w Management Frame Protection"), - translate("Requires the 'full' version of wpad/hostapd " .. - "and support from the wifi driver
    (as of Jan 2019: " .. - "ath9k, ath10k, mwlwifi and mt76)")) - ieee80211w.default = "" - ieee80211w.rmempty = true - ieee80211w:value("", translate("Disabled (default)")) - ieee80211w:value("1", translate("Optional")) - ieee80211w:value("2", translate("Required")) - ieee80211w:depends({mode="ap", encryption="wpa2"}) - ieee80211w:depends({mode="ap-wds", encryption="wpa2"}) - ieee80211w:depends({mode="ap", encryption="psk2"}) - ieee80211w:depends({mode="ap", encryption="psk-mixed"}) - ieee80211w:depends({mode="ap", encryption="sae"}) - ieee80211w:depends({mode="ap", encryption="sae-mixed"}) - ieee80211w:depends({mode="ap", encryption="owe"}) - ieee80211w:depends({mode="ap-wds", encryption="psk2"}) - ieee80211w:depends({mode="ap-wds", encryption="psk-mixed"}) - ieee80211w:depends({mode="ap-wds", encryption="sae"}) - ieee80211w:depends({mode="ap-wds", encryption="sae-mixed"}) - ieee80211w:depends({mode="ap-wds", encryption="owe"}) - ieee80211w:depends({mode="sta", encryption="wpa2"}) - ieee80211w:depends({mode="sta-wds", encryption="wpa2"}) - ieee80211w:depends({mode="sta", encryption="psk2"}) - ieee80211w:depends({mode="sta", encryption="psk-mixed"}) - ieee80211w:depends({mode="sta", encryption="sae"}) - ieee80211w:depends({mode="sta", encryption="sae-mixed"}) - ieee80211w:depends({mode="sta", encryption="owe"}) - ieee80211w:depends({mode="sta-wds", encryption="psk2"}) - ieee80211w:depends({mode="sta-wds", encryption="psk-mixed"}) - ieee80211w:depends({mode="sta-wds", encryption="sae"}) - ieee80211w:depends({mode="sta-wds", encryption="sae-mixed"}) - ieee80211w:depends({mode="sta-wds", encryption="owe"}) - - max_timeout = s:taboption("encryption", Value, "ieee80211w_max_timeout", - translate("802.11w maximum timeout"), - translate("802.11w Association SA Query maximum timeout")) - max_timeout:depends({ieee80211w="1"}) - max_timeout:depends({ieee80211w="2"}) - max_timeout.datatype = "uinteger" - max_timeout.placeholder = "1000" - max_timeout.rmempty = true - - retry_timeout = s:taboption("encryption", Value, "ieee80211w_retry_timeout", - translate("802.11w retry timeout"), - translate("802.11w Association SA Query retry timeout")) - retry_timeout:depends({ieee80211w="1"}) - retry_timeout:depends({ieee80211w="2"}) - retry_timeout.datatype = "uinteger" - retry_timeout.placeholder = "201" - retry_timeout.rmempty = true - end - - key_retries = s:taboption("encryption", Flag, "wpa_disable_eapol_key_retries", - translate("Enable key reinstallation (KRACK) countermeasures"), - translate("Complicates key reinstallation attacks on the client side by disabling retransmission of EAPOL-Key frames that are used to install keys. This workaround might cause interoperability issues and reduced robustness of key negotiation especially in environments with heavy traffic load.")) - - key_retries:depends({mode="ap", encryption="wpa2"}) - key_retries:depends({mode="ap", encryption="psk2"}) - key_retries:depends({mode="ap", encryption="psk-mixed"}) - key_retries:depends({mode="ap", encryption="sae"}) - key_retries:depends({mode="ap", encryption="sae-mixed"}) - key_retries:depends({mode="ap-wds", encryption="wpa2"}) - key_retries:depends({mode="ap-wds", encryption="psk2"}) - key_retries:depends({mode="ap-wds", encryption="psk-mixed"}) - key_retries:depends({mode="ap-wds", encryption="sae"}) - key_retries:depends({mode="ap-wds", encryption="sae-mixed"}) -end - -if hwtype == "mac80211" or hwtype == "prism2" then - local wpasupplicant = fs.access("/usr/sbin/wpa_supplicant") - local hostcli = fs.access("/usr/sbin/hostapd_cli") - if hostcli and wpasupplicant then - wps = s:taboption("encryption", Flag, "wps_pushbutton", translate("Enable WPS pushbutton, requires WPA(2)-PSK")) - wps.enabled = "1" - wps.disabled = "0" - wps.rmempty = false - wps:depends("encryption", "psk") - wps:depends("encryption", "psk2") - wps:depends("encryption", "psk-mixed") - end -end - -return m diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua b/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua deleted file mode 100644 index e8a305882..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua +++ /dev/null @@ -1,168 +0,0 @@ --- Copyright 2009 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" -local nw = require "luci.model.network" -local fw = require "luci.model.firewall" -local uci = require "luci.model.uci".cursor() -local http = require "luci.http" - -local iw = luci.sys.wifi.getiwinfo(http.formvalue("device")) - -local has_firewall = fs.access("/etc/config/firewall") - -if not iw then - luci.http.redirect(luci.dispatcher.build_url("admin/network/wireless")) - return -end - -m = SimpleForm("network", translatef("Joining Network: %q", http.formvalue("join"))) -m.cancel = translate("Back to scan results") -m.reset = false - -function m.on_cancel() - local dev = http.formvalue("device") - http.redirect(luci.dispatcher.build_url( - dev and "admin/network/wireless_join?device=" .. dev - or "admin/network/wireless" - )) -end - -nw.init(uci) -fw.init(uci) - -m.hidden = { - device = http.formvalue("device"), - join = http.formvalue("join"), - channel = http.formvalue("channel"), - mode = http.formvalue("mode"), - bssid = http.formvalue("bssid"), - wep = http.formvalue("wep"), - wpa_suites = http.formvalue("wpa_suites"), - wpa_version = http.formvalue("wpa_version") -} - -if iw and iw.mbssid_support then - replace = m:field(Flag, "replace", translate("Replace wireless configuration"), - translate("Check this option to delete the existing networks from this radio.")) - - function replace.cfgvalue() return "0" end -else - replace = m:field(DummyValue, "replace", translate("Replace wireless configuration")) - replace.default = translate("The hardware is not multi-SSID capable and the existing " .. - "configuration will be replaced if you proceed.") - - function replace.formvalue() return "1" end -end - -if http.formvalue("wep") == "1" then - key = m:field(Value, "key", translate("WEP passphrase"), - translate("Specify the secret encryption key here.")) - - key.password = true - key.datatype = "wepkey" - -elseif (tonumber(m.hidden.wpa_version) or 0) > 0 and - (m.hidden.wpa_suites == "PSK" or m.hidden.wpa_suites == "PSK2") -then - key = m:field(Value, "key", translate("WPA passphrase"), - translate("Specify the secret encryption key here.")) - - key.password = true - key.datatype = "wpakey" - --m.hidden.wpa_suite = (tonumber(http.formvalue("wpa_version")) or 0) >= 2 and "psk2" or "psk" -end - -newnet = m:field(Value, "_netname_new", translate("Name of the new network"), - translate("The allowed characters are: A-Z, a-z, " .. - "0-9 and _" - )) - -newnet.default = m.hidden.mode == "Ad-Hoc" and "mesh" or "wwan" -newnet.datatype = "uciname" - -if has_firewall then - fwzone = m:field(Value, "_fwzone", - translate("Create / Assign firewall-zone"), - translate("Choose the firewall zone you want to assign to this interface. Select unspecified to remove the interface from the associated zone or fill out the create field to define a new zone and attach the interface to it.")) - - fwzone.template = "cbi/firewall_zonelist" - fwzone.default = m.hidden.mode == "Ad-Hoc" and "mesh" or "wan" -end - -function newnet.parse(self, section) - local net, zone - - if has_firewall then - local value = fwzone:formvalue(section) - if value and #value > 0 then - zone = fw:get_zone(value) or fw:add_zone(value) - end - end - - local wdev = nw:get_wifidev(m.hidden.device) - - wdev:set("disabled", false) - wdev:set("channel", m.hidden.channel) - - if replace:formvalue(section) then - local n - for _, n in ipairs(wdev:get_wifinets()) do - wdev:del_wifinet(n) - end - end - - local wconf = { - device = m.hidden.device, - ssid = m.hidden.join, - mode = (m.hidden.mode == "Ad-Hoc" and "adhoc" or "sta") - } - - if m.hidden.wep == "1" then - wconf.encryption = "wep-open" - wconf.key = "1" - wconf.key1 = key and key:formvalue(section) or "" - elseif (tonumber(m.hidden.wpa_version) or 0) > 0 then - wconf.encryption = (tonumber(m.hidden.wpa_version) or 0) >= 2 and "psk2" or "psk" - wconf.key = key and key:formvalue(section) or "" - else - wconf.encryption = "none" - end - - if wconf.mode == "adhoc" or wconf.mode == "sta" then - wconf.bssid = m.hidden.bssid - end - - local value = self:formvalue(section) - net = nw:add_network(value, { proto = "dhcp" }) - - if not net then - self.error = { [section] = "missing" } - else - wconf.network = net:name() - - local wnet = wdev:add_wifinet(wconf) - if wnet then - if zone then - fw:del_network(net:name()) - zone:add_network(net:name()) - end - - uci:save("wireless") - uci:save("network") - uci:save("firewall") - - luci.http.redirect(wnet:adminlink()) - end - end -end - -if has_firewall then - function fwzone.cfgvalue(self, section) - self.iface = section - local z = fw:get_zone_by_network(section) - return z and z:name() - end -end - -return m diff --git a/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua b/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua deleted file mode 100644 index 54720d688..000000000 --- a/luci-mod-network/luasrc/model/cbi/admin_network/wifi_overview.lua +++ /dev/null @@ -1,153 +0,0 @@ --- Copyright 2018 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" -local utl = require "luci.util" -local tpl = require "luci.template" -local ntm = require "luci.model.network" - -local has_iwinfo = pcall(require, "iwinfo") - -function guess_wifi_hw(dev) - local bands = "" - local ifname = dev:name() - local name, idx = ifname:match("^([a-z]+)(%d+)") - idx = tonumber(idx) - - if has_iwinfo then - local bl = dev.iwinfo.hwmodelist - if bl and next(bl) then - if bl.a then bands = bands .. "a" end - if bl.b then bands = bands .. "b" end - if bl.g then bands = bands .. "g" end - if bl.n then bands = bands .. "n" end - if bl.ac then bands = bands .. "ac" end - end - - local hw = dev.iwinfo.hardware_name - if hw then - return "%s 802.11%s" %{ hw, bands } - end - end - - -- wl.o - if name == "wl" then - local name = translatef("Broadcom 802.11%s Wireless Controller", bands) - local nm = 0 - - local fd = nixio.open("/proc/bus/pci/devices", "r") - if fd then - local ln - for ln in fd:linesource() do - if ln:match("wl$") then - if nm == idx then - local version = ln:match("^%S+%s+%S%S%S%S([0-9a-f]+)") - name = translatef( - "Broadcom BCM%04x 802.11 Wireless Controller", - tonumber(version, 16) - ) - - break - else - nm = nm + 1 - end - end - end - fd:close() - end - - return name - - -- dunno yet - else - return translatef("Generic 802.11%s Wireless Controller", bands) - end -end - - -m = Map("wireless", translate("Wireless Overview")) -m:chain("network") -m.pageaction = false - -if not has_iwinfo then - s = m:section(NamedSection, "__warning__") - - function s.render(self) - tpl.render_string([[ -
    -

    <%:Package libiwinfo required!%>

    -

    <%_The libiwinfo-lua package is not installed. You must install this component for working wireless configuration!%>

    -
    - ]]) - end -end - -local _, dev, net -for _, dev in ipairs(ntm:get_wifidevs()) do - s = m:section(TypedSection) - s.template = "admin_network/wifi_overview" - s.wnets = dev:get_wifinets() - s.dev = dev - s.hw = guess_wifi_hw(dev) - - function s.cfgsections(self) - local _, net, sl = nil, nil, { } - for _, net in ipairs(self.wnets) do - sl[#sl+1] = net:name() - self.wnets[net:name()] = net - end - return sl - end - - o = s:option(Value, "__disable__") - - function o.cfgvalue(self, sid) - local wnet = self.section.wnets[sid] - local wdev = wnet:get_device() - - return ((wnet and wnet:get("disabled") == "1") or - (wdev and wdev:get("disabled") == "1")) and "1" or "0" - end - - function o.write(self, sid, value) - local wnet = self.section.wnets[sid] - local wdev = wnet:get_device() - - if value ~= "1" then - wnet:set("disabled", nil) - wdev:set("disabled", nil) - else - wnet:set("disabled", "1") - end - end - - o.remove = o.write - - - o = s:option(Value, "__delete__") - - function o.write(self, sid, value) - local wnet = self.section.wnets[sid] - local nets = wnet:get_networks() - - ntm:del_wifinet(wnet:id()) - - local _, net - for _, net in ipairs(nets) do - if net:is_empty() then - ntm:del_network(net:name()) - end - end - end -end - -s = m:section(NamedSection, "__assoclist__") - -function s.render(self, sid) - tpl.render_string([[ -

    <%:Associated Stations%>

    - <%+wifi_assoclist%> - ]]) -end - -return m diff --git a/luci-mod-network/luasrc/view/admin_network/diagnostics.htm b/luci-mod-network/luasrc/view/admin_network/diagnostics.htm deleted file mode 100644 index 024fc15bc..000000000 --- a/luci-mod-network/luasrc/view/admin_network/diagnostics.htm +++ /dev/null @@ -1,132 +0,0 @@ -<%# - Copyright 2010 Jo-Philipp Wich - Copyright 2019 Ycarus (Yannick Chabanois) for OpenMPTCProuter project - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - -<% -local fs = require "nixio.fs" -local has_ping6 = fs.access("/bin/ping6") or fs.access("/usr/bin/ping6") -local has_traceroute6 = fs.access("/bin/traceroute6") or fs.access("/usr/bin/traceroute6") -local has_speedtest = fs.access("/usr/sbin/speedtestc") -local has_wget = fs.access("/usr/bin/wget") -local has_netstat = fs.access("/bin/netstat") - -local dns_host = luci.config.diag and luci.config.diag.dns or "dev.openwrt.org" -local ping_host = luci.config.diag and luci.config.diag.ping or "dev.openwrt.org" -local route_host = luci.config.diag and luci.config.diag.route or "dev.openwrt.org" -local getip_host = luci.config.diag and luci.config.diag.getip or "ifconfig.co" -%> - - - -
    -
    -

    <%:Diagnostics%>

    - -
    - <%:Network Utilities%> - -
    -
    -
    -
    - <% if has_ping6 then %> - - - <% else %> - - <% end %> -
    - -
    -
    - <% if has_traceroute6 then %> - - - <% else %> - - <% end %> - <% if not has_traceroute6 then %> -

     

    -

    <%:Install iputils-traceroute6 for IPv6 traceroute%>

    - <% end %> -
    - -
    -
    - -
    - - <% if has_wget then %> -
    -
    - -
    - <% end %> - - <% if has_netstat then %> -
    -
    - -
    - <% end %> -
    -
    -
    -
    - - -
    - -<%+footer%> diff --git a/luci-mod-network/luasrc/view/admin_network/iface_overview.htm b/luci-mod-network/luasrc/view/admin_network/iface_overview.htm deleted file mode 100644 index 9d4afd2b2..000000000 --- a/luci-mod-network/luasrc/view/admin_network/iface_overview.htm +++ /dev/null @@ -1,53 +0,0 @@ -
    -
    - <% - for i, net in ipairs(self.netlist) do - local z = net[3] - local c = z and z:get_color() or "#EEEEEE" - local t = z and translate("Part of zone %q") % z:name() or translate("No zone assigned") - local disabled = (net[4]:get("auto") == "0") - local dynamic = net[4]:is_dynamic() - %> -
    -
    -
    -
    - <%=net[1]:upper()%> -
    -
    -
    - ? -
    -
    -
    -
    - <%:Collecting data...%> -
    -
    -
    - /> - - <% if disabled then %> - - /> - <% else %> - - /> - <% end %> - - '" title="<%:Edit this interface%>" value="<%:Edit%>" id="<%=net[1]%>-ifc-edit"<%=ifattr(dynamic, "disabled", "disabled")%> /> - - - /> -
    -
    -
    - <% end %> -
    -
    - -
    - '" /> -
    - - diff --git a/luci-mod-network/luasrc/view/admin_network/iface_status.htm b/luci-mod-network/luasrc/view/admin_network/iface_status.htm deleted file mode 100644 index a75b2755c..000000000 --- a/luci-mod-network/luasrc/view/admin_network/iface_status.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%+cbi/valueheader%> - -> - - - <%:Collecting data...%> - - - - - -<%+cbi/valuefooter%> diff --git a/luci-mod-network/luasrc/view/admin_network/switch_status.htm b/luci-mod-network/luasrc/view/admin_network/switch_status.htm deleted file mode 100644 index 6e741b419..000000000 --- a/luci-mod-network/luasrc/view/admin_network/switch_status.htm +++ /dev/null @@ -1,62 +0,0 @@ - diff --git a/luci-mod-network/luasrc/view/admin_network/wifi_join.htm b/luci-mod-network/luasrc/view/admin_network/wifi_join.htm deleted file mode 100644 index 5a61ba099..000000000 --- a/luci-mod-network/luasrc/view/admin_network/wifi_join.htm +++ /dev/null @@ -1,59 +0,0 @@ -<%# - Copyright 2009-2015 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%- - - local sys = require "luci.sys" - local utl = require "luci.util" - - local dev = luci.http.formvalue("device") - local iw = luci.sys.wifi.getiwinfo(dev) - - if not iw then - luci.http.redirect(luci.dispatcher.build_url("admin/network/wireless")) - return - end --%> - -<%+header%> - -

    <%:Join Network: Wireless Scan%>

    - -
    -
    -
    > -
    -
    <%:Signal%>
    -
    <%:SSID%>
    -
    <%:Channel%>
    -
    <%:Mode%>
    -
    <%:BSSID%>
    -
    <%:Encryption%>
    -
     
    -
    - -
    -
    - - <%:Collecting data...%> -
    -
    -
    -
    -
    -
    -
    " method="get"> - -
    -
    - - - -
    -
    - - - -<%+footer%> diff --git a/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm b/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm deleted file mode 100644 index 89bb404fd..000000000 --- a/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm +++ /dev/null @@ -1,61 +0,0 @@ -
    -
    - -
    -
    - <%=self.dev:name()%> -
    -
    - <%=self.hw%>
    - -
    -
    -
    - - - -
    -
    -
    - - - - <% if #self.wnets > 0 then %> - <% for i, net in ipairs(self.wnets) do local disabled = (self.dev:get("disabled") == "1" or net:get("disabled") == "1") %> -
    -
    - .png" /> 0% -
    -
    "> - <%= disabled and translate("Wireless is disabled") or translate("Collecting data...") %> -
    -
    -
    - <% if disabled then %> - - - <% else %> - - - <% end %> - - - - - -
    -
    -
    - <% end %> - <% else %> -
    -
    - <%:No network configured on this device%> -
    -
    - <% end %> - -
    -
    - - diff --git a/luci-mod-network/luasrc/view/admin_network/wifi_status.htm b/luci-mod-network/luasrc/view/admin_network/wifi_status.htm deleted file mode 100644 index 93ae2f51f..000000000 --- a/luci-mod-network/luasrc/view/admin_network/wifi_status.htm +++ /dev/null @@ -1,14 +0,0 @@ -<%+cbi/valueheader%> - -> - -   - - - <%:Collecting data...%> - - - - - -<%+cbi/valuefooter%> diff --git a/luci-mod-network/root/etc/init.d/macvlan b/luci-mod-network/root/etc/init.d/macvlan deleted file mode 100755 index abf78d209..000000000 --- a/luci-mod-network/root/etc/init.d/macvlan +++ /dev/null @@ -1,121 +0,0 @@ -#!/bin/sh /etc/rc.common - -START=4 -USE_PROCD=1 - -_setup_macaddr() { - uci -q get "network.$1_dev.macaddr" >/dev/null && return - uci -q set "network.$1_dev.macaddr=$2" -} - -_save_macaddr() { - local _ifname - local _macaddr - uci -q get "network.$1_dev.ifname" >/dev/null && { - _ifname=$(uci -q get "network.$1.ifname") - if [ -n "$(uci -q get network.$1.macaddr)" ] && [ "$(uci -q get network.$1.macaddr)" != "$(uci -q get network.$1_dev.macaddr)" ]; then - uci -q set network.$1_dev.macaddr="$(uci -q get network.$1.macaddr)" - else - _macaddr=$(ip link show dev $_ifname 2>/dev/null | grep link | awk '{print $2}') - [ -n "$_macaddr" ] && { - uci -q set network.$1_dev.macaddr=$_macaddr - uci -q set network.$1.macaddr=$_macaddr - } - fi - } - [ -z "$(uci -q get network.$1.macaddr)" ] && { - _ifname=$(uci -q get "network.$1.ifname") - [ -n "$_ifname" ] && { - _macaddr=$(ip link show dev $_ifname 2>/dev/null | grep link | awk '{print $2}') - [ -n "$_macaddr" ] && { - uci -q set network.$1.macaddr=$_macaddr - } - } - } -} - -# Configuration by interface -_setup_interface() { - local _ifname - config_get _ifname "$1" ifname - [ -z "$_ifname" ] && config_get _ifname "$1" ifname - # do not create macvlan for vlan - #case "$_ifname" in - # eth*.*) return ;; - #esac - - [ "$(echo $1 | grep _dev)" != "" ] && { - local _intfdev=$(sed 's/_dev//' $1) - uci -q get "network.$_intfdev.ifname" >/dev/null || { - logger -t "macvlan" "Remove network.$1" - uci -q batch <<-EOF - delete network.$1 - commit network - EOF - } - return - } - - local _type - config_get _type "$1" type - - uci -q get "network.$1_dev.ifname" >/dev/null && { - uci -q set network.$1_dev.mtu=$(uci -q get network.$1.mtu) - [ -z "$(uci -q get network.$1.masterintf)" ] && uci -q set network.$1.masterintf=$(uci -q get network.$1_dev.ifname) - [ -n "$(uci -q get network.$1.masterintf)" ] && uci -q set network.$1_dev.ifname=$(uci -q get network.$1.masterintf) - [ -z "$(uci -q get network.$1.macaddr)" ] && uci -q set network.$1_dev.macaddr=$(uci -q get network.$1.macaddr) - [ "$_type" = "macvlan" ] || { - logger -t "macvlan" "Remove network.$1_dev" - uci -q batch <<-EOF - delete network.$1_dev - EOF - } - [ "$_type" = "macvlan" ] && { - local interface - config_get _interface "$1" interface - [ -n "$_interface" ] && { - logger -t "macvlan" "Remove network.$1_dev" - uci -q batch <<-EOF - delete network.$1.interface - set network.$1_dev.ifname=$_interface - EOF - } - } - uci -q commit network - return 0 - } - - [ "$_type" = "macvlan" ] || return 0 - - uci -q batch <<-EOF - set network.$1_dev=device - set network.$1_dev.name=$1 - set network.$1_dev.type=macvlan - set network.$1_dev.ifname=$_ifname - set network.$1.ifname=$1 - set network.$1.masterintf=$_ifname - set network.$1.type=macvlan - set network.$1.defaultroute=0 - EOF - - _macaddr=$(uci -q get "network.$1.macaddr") - _setup_macaddr "$1" "${_macaddr:-auto$(date +%s)}" - uci -q set network.$1_dev.mtu=$(uci -q get network.$1.mtu) - uci -q commit network -} - -start_service() { - . /lib/functions.sh - config_load network - config_foreach _setup_interface interface - config_foreach _save_macaddr interface - uci -q commit network -} - -reload_service() { - start -} - -service_triggers() { - procd_add_reload_trigger network -} diff --git a/luci-mod-network/root/etc/uci-defaults/50_luci-mod-admin-full b/luci-mod-network/root/etc/uci-defaults/50_luci-mod-admin-full deleted file mode 100755 index 695e498f0..000000000 --- a/luci-mod-network/root/etc/uci-defaults/50_luci-mod-admin-full +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -if [ "$(uci -q get luci.diag)" != "internal" ]; then - host="" - - if [ -s /etc/os-release ]; then - . /etc/os-release - host="${HOME_URL:-${BUG_URL:-$OPENWRT_DEVICE_MANUFACTURER_URL}}" - host="${host#*://}" - host="${host%%/*}" - fi - - uci -q batch <<-EOF >/dev/null - set luci.diag=internal - set luci.diag.dns='openmptcprouter.com' - set luci.diag.ping='openmptcprouter.com' - set luci.diag.route='openmptcprouter.com' - commit luci - EOF -fi - -exit 0 diff --git a/luci-mod-network/root/etc/uci-defaults/51_macvlan b/luci-mod-network/root/etc/uci-defaults/51_macvlan deleted file mode 100755 index c1b9c2406..000000000 --- a/luci-mod-network/root/etc/uci-defaults/51_macvlan +++ /dev/null @@ -1,14 +0,0 @@ -#!/bin/sh -uci -q batch <<-EOF >/dev/null - delete ucitrack.@macvlan[-1] - add ucitrack macvlan - set ucitrack.@macvlan[-1].init=macvlan - commit ucitrack -EOF -if [ "$(uci -q get ucitrack.@network[-1].affects | grep macvlan)" = "" ]; then - uci -q batch <<-EOF >/dev/null - add_list ucitrack.@network[-1].affects=macvlan - commit ucitrack - EOF -fi -exit 0 \ No newline at end of file diff --git a/luci-mod-status/Makefile b/luci-mod-status/Makefile deleted file mode 100644 index 2205503c0..000000000 --- a/luci-mod-status/Makefile +++ /dev/null @@ -1,18 +0,0 @@ -# -# Copyright (C) 2008-2014 The LuCI Team -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -include $(TOPDIR)/rules.mk - -LUCI_TITLE:=LuCI Status Pages -LUCI_DEPENDS:=+luci-base +libiwinfo +libiwinfo-lua - -PKG_BUILD_DEPENDS:=iwinfo -PKG_LICENSE:=Apache-2.0 - -include ../luci/luci.mk - -# call BuildPackage - OpenWrt buildroot signature - diff --git a/luci-mod-status/htdocs/luci-static/resources/bandwidth.svg b/luci-mod-status/htdocs/luci-static/resources/bandwidth.svg deleted file mode 100644 index 5a121b85c..000000000 --- a/luci-mod-status/htdocs/luci-static/resources/bandwidth.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/luci-mod-status/htdocs/luci-static/resources/connections.svg b/luci-mod-status/htdocs/luci-static/resources/connections.svg deleted file mode 100644 index 5794e7942..000000000 --- a/luci-mod-status/htdocs/luci-static/resources/connections.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/luci-mod-status/htdocs/luci-static/resources/load.svg b/luci-mod-status/htdocs/luci-static/resources/load.svg deleted file mode 100644 index 716d37617..000000000 --- a/luci-mod-status/htdocs/luci-static/resources/load.svg +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/luci-mod-status/htdocs/luci-static/resources/view/status/index.js b/luci-mod-status/htdocs/luci-static/resources/view/status/index.js deleted file mode 100644 index edf7489d4..000000000 --- a/luci-mod-status/htdocs/luci-static/resources/view/status/index.js +++ /dev/null @@ -1,239 +0,0 @@ -function progressbar(query, value, max, byte) -{ - var pg = document.querySelector(query), - vn = parseInt(value) || 0, - mn = parseInt(max) || 100, - fv = byte ? String.format('%1024.2mB', value) : value, - fm = byte ? String.format('%1024.2mB', max) : max, - pc = Math.floor((100 / mn) * vn); - - if (pg) { - pg.firstElementChild.style.width = pc + '%'; - pg.setAttribute('title', '%s / %s (%d%%)'.format(fv, fm, pc)); - } -} - -function renderBox(title, active, childs) { - childs = childs || []; - childs.unshift(L.itemlist(E('span'), [].slice.call(arguments, 3))); - - return E('div', { class: 'ifacebox' }, [ - E('div', { class: 'ifacebox-head center ' + (active ? 'active' : '') }, - E('strong', title)), - E('div', { class: 'ifacebox-body left' }, childs) - ]); -} - -function renderBadge(icon, title) { - return E('span', { class: 'ifacebadge' }, [ - E('img', { src: icon, title: title || '' }), - L.itemlist(E('span'), [].slice.call(arguments, 2)) - ]); -} - -L.poll(5, L.location(), { status: 1 }, - function(x, info) - { - var us = document.getElementById('upstream_status_table'); - - while (us.lastElementChild) - us.removeChild(us.lastElementChild); - - var wan_list = info.wan || []; - - for (var i = 0; i < wan_list.length; i++) { - var ifc = wan_list[i]; - - us.appendChild(renderBox( - _('IPv4 Upstream'), - (ifc.ifname && ifc.proto != 'none'), - [ E('div', {}, renderBadge( - L.resource('icons/%s.png').format((ifc && ifc.type) ? ifc.type : 'ethernet_disabled'), null, - _('Device'), ifc ? (ifc.name || ifc.ifname || '-') : '-', - _('MAC-Address'), (ifc && ifc.ether) ? ifc.mac : null)) ], - _('Protocol'), ifc.i18n || E('em', _('Not connected')), - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[0] : null, - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[1] : null, - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[2] : null, - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[3] : null, - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[4] : null, - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[5] : null, - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[6] : null, - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[7] : null, - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[8] : null, - _('Address'), (ifc.ipaddrs) ? ifc.ipaddrs[9] : null, - _('Gateway'), (ifc.gwaddr) ? ifc.gwaddr : '0.0.0.0', - _('DNS') + ' 1', (ifc.dns) ? ifc.dns[0] : null, - _('DNS') + ' 2', (ifc.dns) ? ifc.dns[1] : null, - _('DNS') + ' 3', (ifc.dns) ? ifc.dns[2] : null, - _('DNS') + ' 4', (ifc.dns) ? ifc.dns[3] : null, - _('DNS') + ' 5', (ifc.dns) ? ifc.dns[4] : null, - _('Expires'), (ifc.expires > -1) ? '%t'.format(ifc.expires) : null, - _('Connected'), (ifc.uptime > 0) ? '%t'.format(ifc.uptime) : null)); - } - - var wan6_list = info.wan6 || []; - - for (var i = 0; i < wan6_list.length; i++) { - var ifc6 = wan6_list[i]; - - us.appendChild(renderBox( - _('IPv6 Upstream'), - (ifc6.ifname && ifc6.proto != 'none'), - [ E('div', {}, renderBadge( - L.resource('icons/%s.png').format(ifc6.type || 'ethernet_disabled'), null, - _('Device'), ifc6 ? (ifc6.name || ifc6.ifname || '-') : '-', - _('MAC-Address'), (ifc6 && ifc6.ether) ? ifc6.mac : null)) ], - _('Protocol'), ifc6.i18n ? (ifc6.i18n + (ifc6.proto === 'dhcp' && ifc6.ip6prefix ? '-PD' : '')) : E('em', _('Not connected')), - _('Prefix Delegated'), ifc6.ip6prefix, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[0] : null, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[1] : null, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[2] : null, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[3] : null, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[4] : null, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[5] : null, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[6] : null, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[7] : null, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[8] : null, - _('Address'), (ifc6.ip6addrs) ? ifc6.ip6addrs[9] : null, - _('Gateway'), (ifc6.gw6addr) ? ifc6.gw6addr : '::', - _('DNS') + ' 1', (ifc6.dns) ? ifc6.dns[0] : null, - _('DNS') + ' 2', (ifc6.dns) ? ifc6.dns[1] : null, - _('DNS') + ' 3', (ifc6.dns) ? ifc6.dns[2] : null, - _('DNS') + ' 4', (ifc6.dns) ? ifc6.dns[3] : null, - _('DNS') + ' 5', (ifc6.dns) ? ifc6.dns[4] : null, - _('Connected'), (ifc6.uptime > 0) ? '%t'.format(ifc6.uptime) : null)); - } - - var ds = document.getElementById('dsl_status_table'); - if (ds) { - while (ds.lastElementChild) - ds.removeChild(ds.lastElementChild); - - ds.appendChild(renderBox( - _('DSL Status'), - (info.dsl.line_state === 'UP'), [ ], - _('Line State'), '%s [0x%x]'.format(info.dsl.line_state, info.dsl.line_state_detail), - _('Line Mode'), info.dsl.line_mode_s || '-', - _('Line Uptime'), info.dsl.line_uptime_s || '-', - _('Annex'), info.dsl.annex_s || '-', - _('Profile'), info.dsl.profile_s || '-', - _('Data Rate'), '%s/s / %s/s'.format(info.dsl.data_rate_down_s, info.dsl.data_rate_up_s), - _('Max. Attainable Data Rate (ATTNDR)'), '%s/s / %s/s'.format(info.dsl.max_data_rate_down_s, info.dsl.max_data_rate_up_s), - _('Latency'), '%s / %s'.format(info.dsl.latency_num_down, info.dsl.latency_num_up), - _('Line Attenuation (LATN)'), '%.1f dB / %.1f dB'.format(info.dsl.line_attenuation_down, info.dsl.line_attenuation_up), - _('Signal Attenuation (SATN)'), '%.1f dB / %.1f dB'.format(info.dsl.signal_attenuation_down, info.dsl.signal_attenuation_up), - _('Noise Margin (SNR)'), '%.1f dB / %.1f dB'.format(info.dsl.noise_margin_down, info.dsl.noise_margin_up), - _('Aggregate Transmit Power(ACTATP)'), '%.1f dB / %.1f dB'.format(info.dsl.actatp_down, info.dsl.actatp_up), - _('Forward Error Correction Seconds (FECS)'), '%d / %d'.format(info.dsl.errors_fec_near, info.dsl.errors_fec_far), - _('Errored seconds (ES)'), '%d / %d'.format(info.dsl.errors_es_near, info.dsl.errors_es_far), - _('Severely Errored Seconds (SES)'), '%d / %d'.format(info.dsl.errors_ses_near, info.dsl.errors_ses_far), - _('Loss of Signal Seconds (LOSS)'), '%d / %d'.format(info.dsl.errors_loss_near, info.dsl.errors_loss_far), - _('Unavailable Seconds (UAS)'), '%d / %d'.format(info.dsl.errors_uas_near, info.dsl.errors_uas_far), - _('Header Error Code Errors (HEC)'), '%d / %d'.format(info.dsl.errors_hec_near, info.dsl.errors_hec_far), - _('Non Pre-emtive CRC errors (CRC_P)'), '%d / %d'.format(info.dsl.errors_crc_p_near, info.dsl.errors_crc_p_far), - _('Pre-emtive CRC errors (CRCP_P)'), '%d / %d'.format(info.dsl.errors_crcp_p_near, info.dsl.errors_crcp_p_far), - _('ATU-C System Vendor ID'), info.dsl.atuc_vendor_id, - _('Power Management Mode'), info.dsl.power_mode_s)); - } - - var ws = document.getElementById('wifi_status_table'); - if (ws) - { - while (ws.lastElementChild) - ws.removeChild(ws.lastElementChild); - - for (var didx = 0; didx < info.wifinets.length; didx++) - { - var dev = info.wifinets[didx]; - var net0 = (dev.networks && dev.networks[0]) ? dev.networks[0] : {}; - var vifs = []; - - for (var nidx = 0; nidx < dev.networks.length; nidx++) - { - var net = dev.networks[nidx]; - var is_assoc = (net.bssid != '00:00:00:00:00:00' && net.channel && !net.disabled); - - var icon; - if (net.disabled) - icon = L.resource('icons/signal-none.png'); - else if (net.quality <= 0) - icon = L.resource('icons/signal-0.png'); - else if (net.quality < 25) - icon = L.resource('icons/signal-0-25.png'); - else if (net.quality < 50) - icon = L.resource('icons/signal-25-50.png'); - else if (net.quality < 75) - icon = L.resource('icons/signal-50-75.png'); - else - icon = L.resource('icons/signal-75-100.png'); - - vifs.push(renderBadge( - icon, - '%s: %d dBm / %s: %d%%'.format(_('Signal'), net.signal, _('Quality'), net.quality), - _('SSID'), E('a', { href: net.link }, [ net.ssid || '?' ]), - _('Mode'), net.mode, - _('BSSID'), is_assoc ? (net.bssid || '-') : null, - _('Encryption'), is_assoc ? net.encryption : null, - _('Associations'), is_assoc ? (net.num_assoc || '-') : null, - null, is_assoc ? null : E('em', net.disabled ? _('Wireless is disabled') : _('Wireless is not associated')))); - } - - ws.appendChild(renderBox( - dev.device, dev.up || net0.up, - [ E('div', vifs) ], - _('Type'), dev.name.replace(/^Generic | Wireless Controller .+$/g, ''), - _('Channel'), net0.channel ? '%d (%.3f %s)'.format(net0.channel, net0.frequency, _('GHz')) : '-', - _('Bitrate'), net0.bitrate ? '%d %s'.format(net0.bitrate, _('Mbit/s')) : '-')); - } - - if (!ws.lastElementChild) - ws.appendChild(E('em', _('No information available'))); - } - - var e; - - if (e = document.getElementById('localtime')) - e.innerHTML = info.localtime; - - if (e = document.getElementById('uptime')) - e.innerHTML = String.format('%t', info.uptime); - - if (e = document.getElementById('loadavg')) - e.innerHTML = String.format( - '%.02f, %.02f, %.02f', - info.loadavg[0] / 65535.0, - info.loadavg[1] / 65535.0, - info.loadavg[2] / 65535.0 - ); - - progressbar('#memtotal', - info.memory.free + info.memory.buffered, - info.memory.total, - true); - - progressbar('#memfree', - info.memory.free, - info.memory.total, - true); - - progressbar('#membuff', - info.memory.buffered, - info.memory.total, - true); - - progressbar('#swaptotal', - info.swap.free, - info.swap.total, - true); - - progressbar('#swapfree', - info.swap.free, - info.swap.total, - true); - - progressbar('#conns', - info.conncount, info.connmax, false); - - } -); diff --git a/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js b/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js deleted file mode 100644 index a742243a0..000000000 --- a/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js +++ /dev/null @@ -1,253 +0,0 @@ -var table_names = [ 'Filter', 'NAT', 'Mangle', 'Raw' ], - current_mode = document.querySelector('.cbi-tab[data-mode="6"]') ? 6 : 4; - -function create_table_section(table) -{ - var idiv = document.getElementById('iptables'), - tdiv = idiv.querySelector('[data-table="%s"]'.format(table)), - title = '%s: %s'.format(_('Table'), table); - - if (!tdiv) { - tdiv = E('div', { 'data-table': table }, [ - E('h3', {}, title), - E('div') - ]); - - if (idiv.firstElementChild.nodeName.toLowerCase() === 'p') - idiv.removeChild(idiv.firstElementChild); - - var added = false, thisIdx = table_names.indexOf(table); - - idiv.querySelectorAll('[data-table]').forEach(function(child) { - var childIdx = table_names.indexOf(child.getAttribute('data-table')); - - if (added === false && childIdx > thisIdx) { - idiv.insertBefore(tdiv, child); - added = true; - } - }); - - if (added === false) - idiv.appendChild(tdiv); - } - - return tdiv.lastElementChild; -} - -function create_chain_section(table, chain, policy, packets, bytes, references) -{ - var tdiv = create_table_section(table), - cdiv = tdiv.querySelector('[data-chain="%s"]'.format(chain)), - title; - - if (policy) - title = '%s %s (%s: %s, %d %s, %.2mB %s)' - .format(_('Chain'), chain, _('Policy'), policy, packets, _('Packets'), bytes, _('Traffic')); - else - title = '%s %s (%d %s)' - .format(_('Chain'), chain, references, _('References')); - - if (!cdiv) { - cdiv = E('div', { 'data-chain': chain }, [ - E('h4', { 'id': 'rule_%s_%s'.format(table.toLowerCase(), chain) }, title), - E('div', { 'class': 'table' }, [ - E('div', { 'class': 'tr table-titles' }, [ - E('div', { 'class': 'th center' }, _('Pkts.')), - E('div', { 'class': 'th center' }, _('Traffic')), - E('div', { 'class': 'th' }, _('Target')), - E('div', { 'class': 'th' }, _('Prot.')), - E('div', { 'class': 'th' }, _('In')), - E('div', { 'class': 'th' }, _('Out')), - E('div', { 'class': 'th' }, _('Source')), - E('div', { 'class': 'th' }, _('Destination')), - E('div', { 'class': 'th' }, _('Options')), - E('div', { 'class': 'th' }, _('Comment')) - ]) - ]) - ]); - - tdiv.appendChild(cdiv); - } - else { - cdiv.firstElementChild.innerHTML = title; - } - - return cdiv.lastElementChild; -} - -function update_chain_section(chaintable, rows) -{ - if (!chaintable) - return; - - cbi_update_table(chaintable, rows, _('No rules in this chain.')); - - if (rows.length === 0 && - document.querySelector('form > [data-hide-empty="true"]')) - chaintable.parentNode.style.display = 'none'; - else - chaintable.parentNode.style.display = ''; - - chaintable.parentNode.setAttribute('data-empty', rows.length === 0); -} - -function hide_empty(btn) -{ - var hide = (btn.getAttribute('data-hide-empty') === 'false'); - - btn.setAttribute('data-hide-empty', hide); - btn.value = hide ? _('Show empty chains') : _('Hide empty chains'); - btn.blur(); - - document.querySelectorAll('[data-chain][data-empty="true"]') - .forEach(function(chaintable) { - chaintable.style.display = hide ? 'none' : ''; - }); -} - -function jump_target(ev) -{ - var link = ev.target, - table = findParent(link, '[data-table]').getAttribute('data-table'), - chain = link.textContent, - num = +link.getAttribute('data-num'), - elem = document.getElementById('rule_%s_%s'.format(table.toLowerCase(), chain)); - - if (elem) { - (document.documentElement || document.body.parentNode || document.body).scrollTop = elem.offsetTop - 40; - elem.classList.remove('flash'); - void elem.offsetWidth; - elem.classList.add('flash'); - - if (num) { - var rule = elem.nextElementSibling.childNodes[num]; - if (rule) { - rule.classList.remove('flash'); - void rule.offsetWidth; - rule.classList.add('flash'); - } - } - } -} - -function parse_output(table, s) -{ - var current_chain = null; - var current_rules = []; - var seen_chains = {}; - var chain_refs = {}; - var re = /([^\n]*)\n/g; - var m, m2; - - while ((m = re.exec(s)) != null) { - if (m[1].match(/^Chain (.+) \(policy (\w+) (\d+) packets, (\d+) bytes\)$/)) { - var chain = RegExp.$1, - policy = RegExp.$2, - packets = +RegExp.$3, - bytes = +RegExp.$4; - - update_chain_section(current_chain, current_rules); - - seen_chains[chain] = true; - current_chain = create_chain_section(table, chain, policy, packets, bytes); - current_rules = []; - } - else if (m[1].match(/^Chain (.+) \((\d+) references\)$/)) { - var chain = RegExp.$1, - references = +RegExp.$2; - - update_chain_section(current_chain, current_rules); - - seen_chains[chain] = true; - current_chain = create_chain_section(table, chain, null, null, null, references); - current_rules = []; - } - else if (m[1].match(/^num /)) { - continue; - } - else if ((m2 = m[1].match(/^(\d+) +(\d+) +(\d+) +(.*?) +(\S+) +(\S*) +(\S+) +(\S+) +([a-f0-9:.]+(?:\/[a-f0-9:.]+)?) +([a-f0-9:.]+(?:\/[a-f0-9:.]+)?) +(.+)$/)) !== null) { - var num = +m2[1], - pkts = +m2[2], - bytes = +m2[3], - target = m2[4], - proto = m2[5], - indev = m2[7], - outdev = m2[8], - srcnet = m2[9], - dstnet = m2[10], - options = m2[11] || '-', - comment = '-'; - - options = options.trim().replace(/(?:^| )\/\* (.+) \*\//, - function(m1, m2) { - comment = m2.replace(/^!fw3(: |$)/, '').trim() || '-'; - return ''; - }) || '-'; - - current_rules.push([ - '%.2m'.format(pkts).nobr(), - '%.2mB'.format(bytes).nobr(), - target ? '%s'.format(target) : '-', - proto, - (indev !== '*') ? '%s'.format(indev) : '*', - (outdev !== '*') ? '%s'.format(outdev) : '*', - srcnet, - dstnet, - options, - comment - ]); - - if (target) { - chain_refs[target] = chain_refs[target] || []; - chain_refs[target].push([ current_chain, num ]); - } - } - } - - update_chain_section(current_chain, current_rules); - - document.querySelectorAll('[data-table="%s"] [data-chain]'.format(table)) - .forEach(function(cdiv) { - if (!seen_chains[cdiv.getAttribute('data-chain')]) { - cdiv.parentNode.removeChild(cdiv); - return; - } - - cdiv.querySelectorAll('.target').forEach(function(tspan) { - if (seen_chains[tspan.textContent]) { - tspan.classList.add('jump'); - tspan.addEventListener('click', jump_target); - } - }); - - cdiv.querySelectorAll('.references').forEach(function(rspan) { - var refs = chain_refs[cdiv.getAttribute('data-chain')]; - if (refs && refs.length) { - rspan.classList.add('cbi-tooltip-container'); - rspan.appendChild(E('small', { 'class': 'cbi-tooltip ifacebadge', 'style': 'top:1em; left:auto' }, [ E('ul') ])); - - refs.forEach(function(ref) { - var chain = ref[0].parentNode.getAttribute('data-chain'), - num = ref[1]; - - rspan.lastElementChild.lastElementChild.appendChild(E('li', {}, [ - _('Chain'), ' ', - E('span', { - 'class': 'jump', - 'data-num': num, - 'onclick': 'jump_target(event)' - }, chain), - ', %s #%d'.format(_('Rule'), num) - ])); - }); - } - }); - }); -} - -table_names.forEach(function(table) { - L.poll(5, L.url('admin/status/iptables_dump', current_mode, table.toLowerCase()), null, - function (xhr) { - parse_output(table, xhr.responseText); - }); -}); diff --git a/luci-mod-status/htdocs/luci-static/resources/wifirate.svg b/luci-mod-status/htdocs/luci-static/resources/wifirate.svg deleted file mode 100644 index e75ea614c..000000000 --- a/luci-mod-status/htdocs/luci-static/resources/wifirate.svg +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/luci-mod-status/htdocs/luci-static/resources/wireless.svg b/luci-mod-status/htdocs/luci-static/resources/wireless.svg deleted file mode 100644 index 00cc2a12f..000000000 --- a/luci-mod-status/htdocs/luci-static/resources/wireless.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/luci-mod-status/luasrc/controller/admin/status.lua b/luci-mod-status/luasrc/controller/admin/status.lua deleted file mode 100644 index 689e6e138..000000000 --- a/luci-mod-status/luasrc/controller/admin/status.lua +++ /dev/null @@ -1,175 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2011 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.admin.status", package.seeall) - -function index() - entry({"admin", "status", "overview"}, template("admin_status/index"), _("Overview"), 1) - - entry({"admin", "status", "iptables"}, template("admin_status/iptables"), _("Firewall"), 2).leaf = true - entry({"admin", "status", "iptables_dump"}, call("dump_iptables")).leaf = true - entry({"admin", "status", "iptables_action"}, post("action_iptables")).leaf = true - - entry({"admin", "status", "routes"}, template("admin_status/routes"), _("Routes"), 3) - entry({"admin", "status", "syslog"}, call("action_syslog"), _("System Log"), 4) - entry({"admin", "status", "dmesg"}, call("action_dmesg"), _("Kernel Log"), 5) - --entry({"admin", "status", "processes"}, form("admin_status/processes"), _("Processes"), 6) - - entry({"admin", "status", "realtime"}, alias("admin", "status", "realtime", "load"), _("Realtime Graphs"), 7) - - entry({"admin", "status", "realtime", "load"}, template("admin_status/load"), _("Load"), 1).leaf = true - entry({"admin", "status", "realtime", "load_status"}, call("action_load")).leaf = true - - entry({"admin", "status", "realtime", "bandwidth"}, template("admin_status/bandwidth"), _("Traffic"), 2).leaf = true - entry({"admin", "status", "realtime", "bandwidth_status"}, call("action_bandwidth")).leaf = true - - if nixio.fs.access("/etc/config/wireless") then - entry({"admin", "status", "realtime", "wireless"}, template("admin_status/wireless"), _("Wireless"), 3).leaf = true - entry({"admin", "status", "realtime", "wireless_status"}, call("action_wireless")).leaf = true - end - - entry({"admin", "status", "realtime", "connections"}, template("admin_status/connections"), _("Connections"), 4).leaf = true - entry({"admin", "status", "realtime", "connections_status"}, call("action_connections")).leaf = true - - entry({"admin", "status", "nameinfo"}, call("action_nameinfo")).leaf = true -end - -function action_syslog() - local syslog = luci.sys.syslog() - luci.template.render("admin_status/syslog", {syslog=syslog}) -end - -function action_dmesg() - local dmesg = luci.sys.dmesg() - luci.template.render("admin_status/dmesg", {dmesg=dmesg}) -end - -function dump_iptables(family, table) - local prefix = (family == "6") and "ip6" or "ip" - local ok, lines = pcall(io.lines, "/proc/net/%s_tables_names" % prefix) - if ok and lines then - local s - for s in lines do - if s == table then - luci.http.prepare_content("text/plain") - luci.sys.process.exec({ - "/usr/sbin/%stables" % prefix, "-w", "-t", table, - "--line-numbers", "-nxvL" - }, luci.http.write) - return - end - end - end - - luci.http.status(404, "No such table") - luci.http.prepare_content("text/plain") -end - -function action_iptables() - if luci.http.formvalue("zero") then - if luci.http.formvalue("family") == "6" then - luci.util.exec("/usr/sbin/ip6tables -Z") - else - luci.util.exec("/usr/sbin/iptables -Z") - end - elseif luci.http.formvalue("restart") then - luci.util.exec("/etc/init.d/firewall restart") - end - - luci.http.redirect(luci.dispatcher.build_url("admin/status/iptables")) -end - -function action_bandwidth(iface) - luci.http.prepare_content("application/json") - - local bwc = io.popen("luci-bwc -i %s 2>/dev/null" - % luci.util.shellquote(iface)) - - if bwc then - luci.http.write("[") - - while true do - local ln = bwc:read("*l") - if not ln then break end - luci.http.write(ln) - end - - luci.http.write("]") - bwc:close() - end -end - -function action_wireless(iface) - luci.http.prepare_content("application/json") - - local bwc = io.popen("luci-bwc -r %s 2>/dev/null" - % luci.util.shellquote(iface)) - - if bwc then - luci.http.write("[") - - while true do - local ln = bwc:read("*l") - if not ln then break end - luci.http.write(ln) - end - - luci.http.write("]") - bwc:close() - end -end - -function action_load() - luci.http.prepare_content("application/json") - - local bwc = io.popen("luci-bwc -l 2>/dev/null") - if bwc then - luci.http.write("[") - - while true do - local ln = bwc:read("*l") - if not ln then break end - luci.http.write(ln) - end - - luci.http.write("]") - bwc:close() - end -end - -function action_connections() - local sys = require "luci.sys" - - luci.http.prepare_content("application/json") - - luci.http.write('{ "connections": ') - luci.http.write_json(sys.net.conntrack()) - - local bwc = io.popen("luci-bwc -c 2>/dev/null") - if bwc then - luci.http.write(', "statistics": [') - - while true do - local ln = bwc:read("*l") - if not ln then break end - luci.http.write(ln) - end - - luci.http.write("]") - bwc:close() - end - - luci.http.write(" }") -end - -function action_nameinfo(...) - local util = require "luci.util" - - luci.http.prepare_content("application/json") - luci.http.write_json(util.ubus("network.rrdns", "lookup", { - addrs = { ... }, - timeout = 5000, - limit = 1000 - }) or { }) -end diff --git a/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua b/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua deleted file mode 100644 index 0a6e48fd8..000000000 --- a/luci-mod-status/luasrc/model/cbi/admin_status/processes.lua +++ /dev/null @@ -1,34 +0,0 @@ --- Copyright 2008 Steven Barth --- Copyright 2008 Jo-Philipp Wich --- Licensed to the public under the Apache License 2.0. - -f = SimpleForm("processes", translate("Processes"), translate("This list gives an overview over currently running system processes and their status.")) -f.reset = false -f.submit = false - -t = f:section(Table, luci.sys.process.list()) -t:option(DummyValue, "PID", translate("PID")) -t:option(DummyValue, "USER", translate("Owner")) -t:option(DummyValue, "COMMAND", translate("Command")) -t:option(DummyValue, "%CPU", translate("CPU usage (%)")) -t:option(DummyValue, "%MEM", translate("Memory usage (%)")) - -hup = t:option(Button, "_hup", translate("Hang Up")) -hup.inputstyle = "reload" -function hup.write(self, section) - null, self.tag_error[section] = luci.sys.process.signal(section, 1) -end - -term = t:option(Button, "_term", translate("Terminate")) -term.inputstyle = "remove" -function term.write(self, section) - null, self.tag_error[section] = luci.sys.process.signal(section, 15) -end - -kill = t:option(Button, "_kill", translate("Kill")) -kill.inputstyle = "reset" -function kill.write(self, section) - null, self.tag_error[section] = luci.sys.process.signal(section, 9) -end - -return f \ No newline at end of file diff --git a/luci-mod-status/luasrc/view/admin_status/bandwidth.htm b/luci-mod-status/luasrc/view/admin_status/bandwidth.htm deleted file mode 100644 index 5cc661ad1..000000000 --- a/luci-mod-status/luasrc/view/admin_status/bandwidth.htm +++ /dev/null @@ -1,308 +0,0 @@ -<%# - Copyright 2010-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%- - local ntm = require "luci.model.network".init() - - local dev - local devices = { } - for _, dev in luci.util.vspairs(luci.sys.net.devices()) do - if dev ~= "lo" and not ntm:ignore_interface(dev) then - devices[#devices+1] = dev - end - end - - local curdev = luci.http.formvalue("dev") or devices[1] --%> - -<%+header%> - - - -

    <%:Realtime Traffic%>

    - - - - -
    -
    -
    - -
    -
    -
    <%:Inbound:%>
    -
    0 <%:kbit/s%>
    (0 <%:kB/s%>)
    - -
    <%:Average:%>
    -
    0 <%:kbit/s%>
    (0 <%:kB/s%>)
    - -
    <%:Peak:%>
    -
    0 <%:kbit/s%>
    (0 <%:kB/s%>)
    -
    -
    -
    <%:Outbound:%>
    -
    0 <%:kbit/s%>
    (0 <%:kB/s%>)
    - -
    <%:Average:%>
    -
    0 <%:kbit/s%>
    (0 <%:kB/s%>)
    - -
    <%:Peak:%>
    -
    0 <%:kbit/s%>
    (0 <%:kB/s%>)
    -
    -
    - -<%+footer%> diff --git a/luci-mod-status/luasrc/view/admin_status/connections.htm b/luci-mod-status/luasrc/view/admin_status/connections.htm deleted file mode 100644 index 37debcde6..000000000 --- a/luci-mod-status/luasrc/view/admin_status/connections.htm +++ /dev/null @@ -1,405 +0,0 @@ -<%# - Copyright 2010-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - - - -

    <%:Realtime Connections%>

    - -
    <%:This page gives an overview over currently active network connections.%>
    - -
    - <%:Active Connections%> - - -
    -
    -
    - -
    -
    -
    <%:UDP:%>
    -
    0
    - -
    <%:Average:%>
    -
    0
    - -
    <%:Peak:%>
    -
    0
    -
    -
    -
    <%:TCP:%>
    -
    0
    - -
    <%:Average:%>
    -
    0
    - -
    <%:Peak:%>
    -
    0
    -
    -
    -
    <%:Other:%>
    -
    0
    - -
    <%:Average:%>
    -
    0
    - -
    <%:Peak:%>
    -
    0
    -
    -
    -
    - -
    -
    -
    -
    <%:Network%>
    -
    <%:Protocol%>
    -
    <%:Source%>
    -
    <%:Destination%>
    -
    <%:Transfer%>
    -
    - -
    -
    - <%:Collecting data...%> -
    -
    -
    -
    -
    - -<%+footer%> diff --git a/luci-mod-status/luasrc/view/admin_status/dmesg.htm b/luci-mod-status/luasrc/view/admin_status/dmesg.htm deleted file mode 100644 index 1a8770ef8..000000000 --- a/luci-mod-status/luasrc/view/admin_status/dmesg.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> -

    <%:Kernel Log%>

    -
    - -
    -<%+footer%> diff --git a/luci-mod-status/luasrc/view/admin_status/index.htm b/luci-mod-status/luasrc/view/admin_status/index.htm deleted file mode 100644 index 5b53e8ed3..000000000 --- a/luci-mod-status/luasrc/view/admin_status/index.htm +++ /dev/null @@ -1,148 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<% - local fs = require "nixio.fs" - local ipc = require "luci.ip" - local util = require "luci.util" - local stat = require "luci.tools.status" - local ver = require "luci.version" - - if luci.http.formvalue("status") == "1" then - - local sysinfo = luci.util.ubus("system", "info") or { } - - local meminfo = sysinfo.memory or { - total = 0, - free = 0, - buffered = 0, - shared = 0 - } - - local swapinfo = sysinfo.swap or { - total = 0, - free = 0 - } - - local has_dsl = fs.access("/etc/init.d/dsl_control") - - local ntm = require "luci.model.network".init() - local wan_nets = ntm:get_wan_networks() - local wan6_nets = ntm:get_wan6_networks() - - local conn_count = tonumber( - fs.readfile("/proc/sys/net/netfilter/nf_conntrack_count") or "") or 0 - - local conn_max = tonumber(luci.sys.exec( - "sysctl -n -e net.nf_conntrack_max net.ipv4.netfilter.ip_conntrack_max" - ):match("%d+")) or 4096 - - local rv = { - uptime = sysinfo.uptime or 0, - localtime = os.date(), - loadavg = sysinfo.load or { 0, 0, 0 }, - memory = meminfo, - swap = swapinfo, - connmax = conn_max, - conncount = conn_count, - wifinets = stat.wifi_networks() - } - - if #wan_nets > 0 then - local k, v - - rv.wan = { } - - for k, v in pairs(wan_nets) do - local dev = v:get_interface() - local link = dev and ipc.link(dev:name()) - - local wan_info = { - ipaddrs = v:ipaddrs(), - gwaddr = v:gwaddr(), - dns = v:dnsaddrs(), - expires = v:expires(), - uptime = v:uptime(), - proto = v:proto(), - i18n = v:get_i18n(), - ifname = v:ifname(), - link = v:adminlink(), - mac = dev and dev:mac(), - type = dev and dev:type(), - name = dev and dev:get_i18n(), - ether = link and link.type == 1 - } - - rv.wan[#rv.wan+1] = wan_info - end - end - - if #wan6_nets > 0 then - local k, v - - rv.wan6 = { } - - for k, v in pairs(wan6_nets) do - local dev = v:get_interface() - local link = dev and ipc.link(dev:name()) - local wan6_info = { - ip6addrs = v:ip6addrs(), - gw6addr = v:gw6addr(), - dns = v:dns6addrs(), - ip6prefix = v:ip6prefix(), - uptime = v:uptime(), - proto = v:proto(), - i18n = v:get_i18n(), - ifname = v:ifname(), - link = v:adminlink(), - mac = dev and dev:mac(), - type = dev and dev:type(), - name = dev and dev:get_i18n(), - ether = link and link.type == 1 - } - - rv.wan6[#rv.wan6+1] = wan6_info - end - end - - if has_dsl then - local dsl_stat = luci.sys.exec("/etc/init.d/dsl_control lucistat") - local dsl_func = loadstring(dsl_stat) - if dsl_func then - rv.dsl = dsl_func() - end - end - - luci.http.prepare_content("application/json") - luci.http.write_json(rv) - - return - end --%> - -<%+header%> - -

    <%:Status%>

    - -<%- - local incdir = util.libpath() .. "/view/admin_status/index/" - if fs.access(incdir) then - local _, inc - local includes = {} - for inc in fs.dir(incdir) do - if inc:match("%.htm$") then - includes[#includes + 1] = inc:gsub("%.htm$", "") - end - end - for _, inc in luci.util.vspairs(includes) do - include("admin_status/index/" .. inc) - end - end --%> - - - -<%+footer%> diff --git a/luci-mod-status/luasrc/view/admin_status/index/10-system.htm b/luci-mod-status/luasrc/view/admin_status/index/10-system.htm deleted file mode 100644 index 994550ec2..000000000 --- a/luci-mod-status/luasrc/view/admin_status/index/10-system.htm +++ /dev/null @@ -1,29 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<% - local boardinfo = luci.util.ubus("system", "board") or { } - local unameinfo = nixio.uname() or { } - local ver = require "luci.version" -%> - -
    -

    <%:System%>

    - -
    -
    <%:Hostname%>
    <%=luci.sys.hostname() or "?"%>
    -
    <%:Model%>
    <%=pcdata(boardinfo.model or "?")%>
    -
    <%:Architecture%>
    <%=pcdata(boardinfo.system or "?")%>
    -
    <%:Firmware Version%>
    - <%=pcdata(ver.distname)%> <%=pcdata(ver.distversion)%> / - <%=pcdata(ver.luciname)%> (<%=pcdata(ver.luciversion)%>) -
    -
    <%:Kernel Version%>
    <%=unameinfo.release or "?"%>
    -
    <%:Local Time%>
    -
    -
    <%:Uptime%>
    -
    -
    <%:Load Average%>
    -
    -
    -
    diff --git a/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm b/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm deleted file mode 100644 index 13774704f..000000000 --- a/luci-mod-status/luasrc/view/admin_status/index/20-memory.htm +++ /dev/null @@ -1,31 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<% - local sysinfo = luci.util.ubus("system", "info") or { } - local has_swap = sysinfo.swap and sysinfo.swap.total > 0 or false -%> - -
    -

    <%:Memory%>

    - -
    -
    <%:Total Available%>
    -
    <%:Free%>
    -
    <%:Buffered%>
    -
    -
    - -<% if has_swap then %> -
    -

    <%:Swap%>

    - -
    -
    <%:Total Available%>
    -
    <%:Free%>
    -
    -
    -<% end %> diff --git a/luci-mod-status/luasrc/view/admin_status/index/30-network.htm b/luci-mod-status/luasrc/view/admin_status/index/30-network.htm deleted file mode 100644 index 945a31b2e..000000000 --- a/luci-mod-status/luasrc/view/admin_status/index/30-network.htm +++ /dev/null @@ -1,17 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -
    -

    <%:Network%>

    - -
    -

    <%:Collecting data...%>

    -
    - -
    -
    <%:Active Connections%>
    -
    -
    diff --git a/luci-mod-status/luasrc/view/admin_status/index/40-dhcp-leases.htm b/luci-mod-status/luasrc/view/admin_status/index/40-dhcp-leases.htm deleted file mode 100644 index aaf366144..000000000 --- a/luci-mod-status/luasrc/view/admin_status/index/40-dhcp-leases.htm +++ /dev/null @@ -1,14 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<% - local fs = require "nixio.fs" - local has_dhcp = fs.access("/etc/config/dhcp") - - if has_dhcp then - include("lease_status") - end -%> diff --git a/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm b/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm deleted file mode 100644 index f37bf147a..000000000 --- a/luci-mod-status/luasrc/view/admin_status/index/50-dsl.htm +++ /dev/null @@ -1,20 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<% - local fs = require "nixio.fs" - local has_dsl = fs.access("/etc/init.d/dsl_control") -%> - -<% if has_dsl then %> -
    -

    <%:DSL%>

    - -
    -

    <%:Collecting data...%>

    -
    -
    -<% end %> diff --git a/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm b/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm deleted file mode 100644 index 7338bc77f..000000000 --- a/luci-mod-status/luasrc/view/admin_status/index/60-wifi.htm +++ /dev/null @@ -1,26 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<% - local fs = require "nixio.fs" - local has_wifi = ((fs.stat("/etc/config/wireless", "size") or 0) > 0) -%> - -<% if has_wifi then %> -
    -

    <%:Wireless%>

    - -
    -

    <%:Collecting data...%>

    -
    -
    - -
    -

    <%:Associated Stations%>

    - - <%+wifi_assoclist%> -
    -<% end %> diff --git a/luci-mod-status/luasrc/view/admin_status/iptables.htm b/luci-mod-status/luasrc/view/admin_status/iptables.htm deleted file mode 100644 index 89f229f3b..000000000 --- a/luci-mod-status/luasrc/view/admin_status/iptables.htm +++ /dev/null @@ -1,73 +0,0 @@ -<%# - Copyright 2008-2009 Steven Barth - Copyright 2008-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%- - local fs = require "nixio.fs" - local has_ip6tables = fs.access("/usr/sbin/ip6tables") - local mode = 4 - - if has_ip6tables then - mode = luci.dispatcher.context.requestpath - mode = tonumber(mode[#mode] ~= "iptables" and mode[#mode]) or 4 - end --%> - -<%+header%> - - - -

    <%:Firewall Status%>

    - -<% if has_ip6tables then %> - -<% end %> - -
    -
    " style="position: absolute; right: 0"> - - - - - -
    -
    - -
    -

    <%:Collecting data...%>

    -
    - - - -<%+footer%> diff --git a/luci-mod-status/luasrc/view/admin_status/load.htm b/luci-mod-status/luasrc/view/admin_status/load.htm deleted file mode 100644 index d31d34062..000000000 --- a/luci-mod-status/luasrc/view/admin_status/load.htm +++ /dev/null @@ -1,283 +0,0 @@ -<%# - Copyright 2010-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - - - -

    <%:Realtime Load%>

    - - -
    -
    -
    - -
    -
    -
    <%:1 Minute Load:%>
    -
    0
    - -
    <%:Average:%>
    -
    0
    - -
    <%:Peak:%>
    -
    0
    -
    -
    -
    <%:5 Minute Load:%>
    -
    0
    - -
    <%:Average:%>
    -
    0
    - -
    <%:Peak:%>
    -
    0
    -
    -
    -
    <%:15 Minute Load:%>
    -
    0
    - -
    <%:Average:%>
    -
    0
    - -
    <%:Peak:%>
    -
    0
    -
    -
    - -<%+footer%> diff --git a/luci-mod-status/luasrc/view/admin_status/routes.htm b/luci-mod-status/luasrc/view/admin_status/routes.htm deleted file mode 100644 index 74779f6ad..000000000 --- a/luci-mod-status/luasrc/view/admin_status/routes.htm +++ /dev/null @@ -1,156 +0,0 @@ -<%# - Copyright 2008-2009 Steven Barth - Copyright 2008-2015 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%- - require "luci.tools.webadmin" - require "nixio.fs" - - local ip = require "luci.ip" - local style = true - local _, v - - local rtn = { - [255] = "local", - [254] = "main", - [253] = "default", - [0] = "unspec" - } - - if nixio.fs.access("/etc/iproute2/rt_tables") then - local ln - for ln in io.lines("/etc/iproute2/rt_tables") do - local i, n = ln:match("^(%d+)%s+(%S+)") - if i and n then - rtn[tonumber(i)] = n - end - end - end --%> - -<%+header%> - - -
    -

    <%:Routes%>

    -
    <%:The following rules are currently active on this system.%>
    - -
    - ARP -
    -
    -
    -
    <%_IPv4-Address%>
    -
    <%_MAC-Address%>
    -
    <%:Interface%>
    -
    - - <% - for _, v in ipairs(ip.neighbors({ family = 4 })) do - if v.mac then - %> -
    -
    <%=v.dest%>
    -
    <%=v.mac%>
    -
    <%=luci.tools.webadmin.iface_get_network(v.dev) or '(' .. v.dev .. ')'%>
    -
    - <% - style = not style - end - end - %> -
    -
    -
    - -
    - <%_Active IPv4-Routes%> -
    -
    -
    -
    <%:Network%>
    -
    <%:Target%>
    -
    <%_IPv4-Gateway%>
    -
    <%:Metric%>
    -
    <%:Table%>
    -
    - <% for _, v in ipairs(ip.routes({ family = 4, type = 1 })) do %> -
    -
    <%=luci.tools.webadmin.iface_get_network(v.dev) or v.dev%>
    -
    <%=v.dest%>
    -
    <%=v.gw or "-"%>
    -
    <%=v.metric or 0%>
    -
    <%=rtn[v.table] or v.table%>
    -
    - <% style = not style end %> -
    -
    -
    - - <% - if nixio.fs.access("/proc/net/ipv6_route") then - style = true - %> -
    - <%_Active IPv6-Routes%> -
    -
    -
    -
    <%:Network%>
    -
    <%:Target%>
    -
    <%:Source%>
    -
    <%:Metric%>
    -
    <%:Table%>
    -
    - <% - for _, v in ipairs(ip.routes({ family = 6, type = 1 })) do - if v.dest and not v.dest:is6linklocal() then - %> -
    -
    <%=luci.tools.webadmin.iface_get_network(v.dev) or '(' .. v.dev .. ')'%>
    -
    <%=v.dest%>
    -
    <%=v.from%>
    -
    <%=v.metric or 0%>
    -
    <%=rtn[v.table] or v.table%>
    -
    - <% - style = not style - end - end - %> -
    -
    -
    - -
    - <%:IPv6 Neighbours%> -
    -
    -
    -
    <%:IPv6-Address%>
    -
    <%:MAC-Address%>
    -
    <%:Interface%>
    -
    - <% - for _, v in ipairs(ip.neighbors({ family = 6 })) do - if v.dest and not v.dest:is6linklocal() and v.mac then - %> -
    -
    <%=v.dest%>
    -
    <%=v.mac%>
    -
    <%=luci.tools.webadmin.iface_get_network(v.dev) or '(' .. v.dev .. ')'%>
    -
    - <% - style = not style - end - end - %> -
    -
    -
    - <% end %> -
    - -<%+footer%> diff --git a/luci-mod-status/luasrc/view/admin_status/syslog.htm b/luci-mod-status/luasrc/view/admin_status/syslog.htm deleted file mode 100644 index fb734a76d..000000000 --- a/luci-mod-status/luasrc/view/admin_status/syslog.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%# - Copyright 2008 Steven Barth - Copyright 2008 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> -

    <%:System Log%>

    -
    - -
    -<%+footer%> diff --git a/luci-mod-status/luasrc/view/admin_status/wireless.htm b/luci-mod-status/luasrc/view/admin_status/wireless.htm deleted file mode 100644 index 5ac2eb462..000000000 --- a/luci-mod-status/luasrc/view/admin_status/wireless.htm +++ /dev/null @@ -1,370 +0,0 @@ -<%# - Copyright 2011-2018 Jo-Philipp Wich - Licensed to the public under the Apache License 2.0. --%> - -<%- - local ntm = require "luci.model.network".init() - - local dev - local devices = { } - for _, dev in luci.util.vspairs(luci.sys.net.devices()) do - if dev:match("^wlan%d") or dev:match("^ath%d") or dev:match("^wl%d") then - devices[#devices+1] = dev - end - end - - local curdev = luci.http.formvalue("dev") or devices[1] --%> - -<%+header%> - - - -

    <%:Realtime Wireless%>

    - - - - -
    -
    -
    - -
    -
    -
    <%:Signal:%>
    -
    0 <%:dBm%>
    - -
    <%:Average:%>
    -
    0 <%:dBm%>
    - -
    <%:Peak:%>
    -
    0 <%:dBm%>
    -
    -
    -
    <%:Noise:%>
    -
    0 <%:dBm%>
    - -
    <%:Average:%>
    -
    0 <%:dBm%>
    - -
    <%:Peak:%>
    -
    0 <%:dBm%>
    -
    -
    - -
    - - -
    -
    -
    - -
    -
    -
    <%:Phy Rate:%>
    -
    0 MBit/s
    - -
    <%:Average:%>
    -
    0 MBit/s
    - -
    <%:Peak:%>
    -
    0 MBit/s
    -
    -
    - -<%+footer%> diff --git a/luci-mod-status/src/Makefile b/luci-mod-status/src/Makefile deleted file mode 100644 index d6ed8c6e4..000000000 --- a/luci-mod-status/src/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -%.o: %.c - $(CC) $(CPPFLAGS) $(CFLAGS) $(FPIC) -c -o $@ $< - -clean: - rm -f luci-bwc *.o - -luci-bwc: luci-bwc.o - $(CC) $(LDFLAGS) -o $@ $^ -ldl - -compile: luci-bwc - -install: compile - mkdir -p $(DESTDIR)/usr/bin - cp luci-bwc $(DESTDIR)/usr/bin/luci-bwc diff --git a/luci-mod-status/src/luci-bwc.c b/luci-mod-status/src/luci-bwc.c deleted file mode 100644 index 8ddd91727..000000000 --- a/luci-mod-status/src/luci-bwc.c +++ /dev/null @@ -1,778 +0,0 @@ -/* - * luci-bwc - Very simple bandwidth collector cache for LuCI realtime graphs - * - * Copyright (C) 2010 Jo-Philipp Wich - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -#include -#include - -#define STEP_COUNT 60 -#define STEP_TIME 1 -#define TIMEOUT 10 - -#define PID_PATH "/var/run/luci-bwc.pid" - -#define DB_PATH "/var/lib/luci-bwc" -#define DB_IF_FILE DB_PATH "/if/%s" -#define DB_RD_FILE DB_PATH "/radio/%s" -#define DB_CN_FILE DB_PATH "/connections" -#define DB_LD_FILE DB_PATH "/load" - -#define IF_SCAN_PATTERN \ - " %[^ :]:%u %u" \ - " %*d %*d %*d %*d %*d %*d" \ - " %u %u" - -#define LD_SCAN_PATTERN \ - "%f %f %f" - - -struct file_map { - int fd; - int size; - char *mmap; -}; - -struct traffic_entry { - uint32_t time; - uint32_t rxb; - uint32_t rxp; - uint32_t txb; - uint32_t txp; -}; - -struct conn_entry { - uint32_t time; - uint32_t udp; - uint32_t tcp; - uint32_t other; -}; - -struct load_entry { - uint32_t time; - uint16_t load1; - uint16_t load5; - uint16_t load15; -}; - -struct radio_entry { - uint32_t time; - uint16_t rate; - uint8_t rssi; - uint8_t noise; -}; - -static int readpid(void) -{ - int fd; - int pid = -1; - char buf[9] = { 0 }; - - if ((fd = open(PID_PATH, O_RDONLY)) > -1) - { - if (read(fd, buf, sizeof(buf))) - { - buf[8] = 0; - pid = atoi(buf); - } - - close(fd); - } - - return pid; -} - -static int writepid(void) -{ - int fd; - int wlen; - char buf[9] = { 0 }; - - if ((fd = open(PID_PATH, O_WRONLY | O_CREAT | O_TRUNC, 0600)) > -1) - { - wlen = snprintf(buf, sizeof(buf), "%i", getpid()); - write(fd, buf, wlen); - close(fd); - - return 0; - } - - return -1; -} - -static int timeout = TIMEOUT; -static int countdown = -1; - -static void reset_countdown(int sig) -{ - countdown = timeout; - -} - - -static char *progname; -static int prognamelen; - -static struct iwinfo_ops *backend = NULL; - - -static int init_directory(char *path) -{ - char *p = path; - - for (p = &path[1]; *p; p++) - { - if (*p == '/') - { - *p = 0; - - if (mkdir(path, 0700) && (errno != EEXIST)) - return -1; - - *p = '/'; - } - } - - return 0; -} - -static int init_file(char *path, int esize) -{ - int i, file; - char buf[sizeof(struct traffic_entry)] = { 0 }; - - if (init_directory(path)) - return -1; - - if ((file = open(path, O_WRONLY | O_CREAT, 0600)) >= 0) - { - for (i = 0; i < STEP_COUNT; i++) - { - if (write(file, buf, esize) < 0) - break; - } - - close(file); - - return 0; - } - - return -1; -} - -static inline uint32_t timeof(void *entry) -{ - return ntohl(((struct traffic_entry *)entry)->time); -} - -static int update_file(const char *path, void *entry, int esize) -{ - int rv = -1; - int file; - char *map; - - if ((file = open(path, O_RDWR)) >= 0) - { - map = mmap(NULL, esize * STEP_COUNT, PROT_READ | PROT_WRITE, - MAP_SHARED | MAP_LOCKED, file, 0); - - if ((map != NULL) && (map != MAP_FAILED)) - { - if (timeof(entry) > timeof(map + esize * (STEP_COUNT-1))) - { - memmove(map, map + esize, esize * (STEP_COUNT-1)); - memcpy(map + esize * (STEP_COUNT-1), entry, esize); - } - - munmap(map, esize * STEP_COUNT); - - rv = 0; - } - - close(file); - } - - return rv; -} - -static int mmap_file(const char *path, int esize, struct file_map *m) -{ - m->fd = -1; - m->size = -1; - m->mmap = NULL; - - if ((m->fd = open(path, O_RDONLY)) >= 0) - { - m->size = STEP_COUNT * esize; - m->mmap = mmap(NULL, m->size, PROT_READ, - MAP_SHARED | MAP_LOCKED, m->fd, 0); - - if ((m->mmap != NULL) && (m->mmap != MAP_FAILED)) - return 0; - } - - return -1; -} - -static void umap_file(struct file_map *m) -{ - if ((m->mmap != NULL) && (m->mmap != MAP_FAILED)) - munmap(m->mmap, m->size); - - if (m->fd > -1) - close(m->fd); -} - -static void * iw_open(void) -{ - return dlopen("/usr/lib/libiwinfo.so", RTLD_LAZY); -} - -static int iw_update( - void *iw, const char *ifname, uint16_t *rate, uint8_t *rssi, uint8_t *noise -) { - struct iwinfo_ops *(*probe)(const char *); - int val; - - if (!backend) - { - probe = dlsym(iw, "iwinfo_backend"); - - if (!probe) - return 0; - - backend = probe(ifname); - - if (!backend) - return 0; - } - - *rate = (backend->bitrate && !backend->bitrate(ifname, &val)) ? val : 0; - *rssi = (backend->signal && !backend->signal(ifname, &val)) ? val : 0; - *noise = (backend->noise && !backend->noise(ifname, &val)) ? val : 0; - - return 1; -} - -static void iw_close(void *iw) -{ - void (*finish)(void); - - finish = dlsym(iw, "iwinfo_finish"); - - if (finish) - finish(); - - dlclose(iw); -} - - -static int update_ifstat( - const char *ifname, uint32_t rxb, uint32_t rxp, uint32_t txb, uint32_t txp -) { - char path[1024]; - - struct stat s; - struct traffic_entry e; - - snprintf(path, sizeof(path), DB_IF_FILE, ifname); - - if (stat(path, &s)) - { - if (init_file(path, sizeof(struct traffic_entry))) - { - fprintf(stderr, "Failed to init %s: %s\n", - path, strerror(errno)); - - return -1; - } - } - - e.time = htonl(time(NULL)); - e.rxb = htonl(rxb); - e.rxp = htonl(rxp); - e.txb = htonl(txb); - e.txp = htonl(txp); - - return update_file(path, &e, sizeof(struct traffic_entry)); -} - -static int update_radiostat( - const char *ifname, uint16_t rate, uint8_t rssi, uint8_t noise -) { - char path[1024]; - - struct stat s; - struct radio_entry e; - - snprintf(path, sizeof(path), DB_RD_FILE, ifname); - - if (stat(path, &s)) - { - if (init_file(path, sizeof(struct radio_entry))) - { - fprintf(stderr, "Failed to init %s: %s\n", - path, strerror(errno)); - - return -1; - } - } - - e.time = htonl(time(NULL)); - e.rate = htons(rate); - e.rssi = rssi; - e.noise = noise; - - return update_file(path, &e, sizeof(struct radio_entry)); -} - -static int update_cnstat(uint32_t udp, uint32_t tcp, uint32_t other) -{ - char path[1024]; - - struct stat s; - struct conn_entry e; - - snprintf(path, sizeof(path), DB_CN_FILE); - - if (stat(path, &s)) - { - if (init_file(path, sizeof(struct conn_entry))) - { - fprintf(stderr, "Failed to init %s: %s\n", - path, strerror(errno)); - - return -1; - } - } - - e.time = htonl(time(NULL)); - e.udp = htonl(udp); - e.tcp = htonl(tcp); - e.other = htonl(other); - - return update_file(path, &e, sizeof(struct conn_entry)); -} - -static int update_ldstat(uint16_t load1, uint16_t load5, uint16_t load15) -{ - char path[1024]; - - struct stat s; - struct load_entry e; - - snprintf(path, sizeof(path), DB_LD_FILE); - - if (stat(path, &s)) - { - if (init_file(path, sizeof(struct load_entry))) - { - fprintf(stderr, "Failed to init %s: %s\n", - path, strerror(errno)); - - return -1; - } - } - - e.time = htonl(time(NULL)); - e.load1 = htons(load1); - e.load5 = htons(load5); - e.load15 = htons(load15); - - return update_file(path, &e, sizeof(struct load_entry)); -} - -static int run_daemon(void) -{ - FILE *info; - uint32_t rxb, txb, rxp, txp; - uint32_t udp, tcp, other; - uint16_t rate; - uint8_t rssi, noise; - float lf1, lf5, lf15; - char line[1024]; - char ifname[16]; - int i; - void *iw; - struct sigaction sa; - - struct stat s; - const char *ipc = stat("/proc/net/nf_conntrack", &s) - ? "/proc/net/ip_conntrack" : "/proc/net/nf_conntrack"; - - switch (fork()) - { - case -1: - perror("fork()"); - return -1; - - case 0: - if (chdir("/") < 0) - { - perror("chdir()"); - exit(1); - } - - close(0); - close(1); - close(2); - break; - - default: - return 0; - } - - /* setup USR1 signal handler to reset timer */ - sa.sa_handler = reset_countdown; - sa.sa_flags = SA_RESTART; - sigemptyset(&sa.sa_mask); - sigaction(SIGUSR1, &sa, NULL); - - /* write pid */ - if (writepid()) - { - fprintf(stderr, "Failed to write pid file: %s\n", strerror(errno)); - return 1; - } - - /* initialize iwinfo */ - iw = iw_open(); - - /* go */ - for (reset_countdown(0); countdown >= 0; countdown--) - { - /* alter progname for ps, top */ - memset(progname, 0, prognamelen); - snprintf(progname, prognamelen, "luci-bwc %d", countdown); - - if ((info = fopen("/proc/net/dev", "r")) != NULL) - { - while (fgets(line, sizeof(line), info)) - { - if (strchr(line, '|')) - continue; - - if (sscanf(line, IF_SCAN_PATTERN, ifname, &rxb, &rxp, &txb, &txp)) - { - if (strncmp(ifname, "lo", sizeof(ifname))) - update_ifstat(ifname, rxb, rxp, txb, txp); - } - } - - fclose(info); - } - - if (iw) - { - for (i = 0; i < 5; i++) - { -#define iw_checkif(pattern) \ - do { \ - snprintf(ifname, sizeof(ifname), pattern, i); \ - if (iw_update(iw, ifname, &rate, &rssi, &noise)) \ - { \ - update_radiostat(ifname, rate, rssi, noise); \ - continue; \ - } \ - } while(0) - - iw_checkif("wlan%d"); - iw_checkif("ath%d"); - iw_checkif("wl%d"); - } - } - - if ((info = fopen(ipc, "r")) != NULL) - { - udp = 0; - tcp = 0; - other = 0; - - while (fgets(line, sizeof(line), info)) - { - if (strstr(line, "TIME_WAIT")) - continue; - - if ((strstr(line, "src=127.0.0.1 ") && strstr(line, "dst=127.0.0.1 ")) - || (strstr(line, "src=::1 ") && strstr(line, "dst=::1 "))) - continue; - - if (sscanf(line, "%*s %*d %s", ifname) || sscanf(line, "%s %*d", ifname)) - { - if (!strcmp(ifname, "tcp")) - tcp++; - else if (!strcmp(ifname, "udp")) - udp++; - else - other++; - } - } - - update_cnstat(udp, tcp, other); - - fclose(info); - } - - if ((info = fopen("/proc/loadavg", "r")) != NULL) - { - if (fscanf(info, LD_SCAN_PATTERN, &lf1, &lf5, &lf15)) - { - update_ldstat((uint16_t)(lf1 * 100), - (uint16_t)(lf5 * 100), - (uint16_t)(lf15 * 100)); - } - - fclose(info); - } - - sleep(STEP_TIME); - } - - unlink(PID_PATH); - - if (iw) - iw_close(iw); - - return 0; -} - -static void check_daemon(void) -{ - int pid; - - if ((pid = readpid()) < 0 || kill(pid, 0) < 0) - { - /* daemon ping failed, try to start it up */ - if (run_daemon()) - { - fprintf(stderr, - "Failed to ping daemon and unable to start it up: %s\n", - strerror(errno)); - - exit(1); - } - } - else if (kill(pid, SIGUSR1)) - { - fprintf(stderr, "Failed to send signal: %s\n", strerror(errno)); - exit(2); - } -} - -static int run_dump_ifname(const char *ifname) -{ - int i; - char path[1024]; - struct file_map m; - struct traffic_entry *e; - - check_daemon(); - snprintf(path, sizeof(path), DB_IF_FILE, ifname); - - if (mmap_file(path, sizeof(struct traffic_entry), &m)) - { - fprintf(stderr, "Failed to open %s: %s\n", path, strerror(errno)); - return 1; - } - - for (i = 0; i < m.size; i += sizeof(struct traffic_entry)) - { - e = (struct traffic_entry *) &m.mmap[i]; - - if (!e->time) - continue; - - printf("[ %u, %u, %" PRIu32 - ", %u, %u ]%s\n", - ntohl(e->time), - ntohl(e->rxb), ntohl(e->rxp), - ntohl(e->txb), ntohl(e->txp), - ((i + sizeof(struct traffic_entry)) < m.size) ? "," : ""); - } - - umap_file(&m); - - return 0; -} - -static int run_dump_radio(const char *ifname) -{ - int i; - char path[1024]; - struct file_map m; - struct radio_entry *e; - - check_daemon(); - snprintf(path, sizeof(path), DB_RD_FILE, ifname); - - if (mmap_file(path, sizeof(struct radio_entry), &m)) - { - fprintf(stderr, "Failed to open %s: %s\n", path, strerror(errno)); - return 1; - } - - for (i = 0; i < m.size; i += sizeof(struct radio_entry)) - { - e = (struct radio_entry *) &m.mmap[i]; - - if (!e->time) - continue; - - printf("[ %u, %d, %d, %d ]%s\n", - ntohl(e->time), - e->rate, e->rssi, e->noise, - ((i + sizeof(struct radio_entry)) < m.size) ? "," : ""); - } - - umap_file(&m); - - return 0; -} - -static int run_dump_conns(void) -{ - int i; - char path[1024]; - struct file_map m; - struct conn_entry *e; - - check_daemon(); - snprintf(path, sizeof(path), DB_CN_FILE); - - if (mmap_file(path, sizeof(struct conn_entry), &m)) - { - fprintf(stderr, "Failed to open %s: %s\n", path, strerror(errno)); - return 1; - } - - for (i = 0; i < m.size; i += sizeof(struct conn_entry)) - { - e = (struct conn_entry *) &m.mmap[i]; - - if (!e->time) - continue; - - printf("[ %u, %u, %u, %u ]%s\n", - ntohl(e->time), ntohl(e->udp), - ntohl(e->tcp), ntohl(e->other), - ((i + sizeof(struct conn_entry)) < m.size) ? "," : ""); - } - - umap_file(&m); - - return 0; -} - -static int run_dump_load(void) -{ - int i; - char path[1024]; - struct file_map m; - struct load_entry *e; - - check_daemon(); - snprintf(path, sizeof(path), DB_LD_FILE); - - if (mmap_file(path, sizeof(struct load_entry), &m)) - { - fprintf(stderr, "Failed to open %s: %s\n", path, strerror(errno)); - return 1; - } - - for (i = 0; i < m.size; i += sizeof(struct load_entry)) - { - e = (struct load_entry *) &m.mmap[i]; - - if (!e->time) - continue; - - printf("[ %u, %u, %u, %u ]%s\n", - ntohl(e->time), - ntohs(e->load1), ntohs(e->load5), ntohs(e->load15), - ((i + sizeof(struct load_entry)) < m.size) ? "," : ""); - } - - umap_file(&m); - - return 0; -} - - -int main(int argc, char *argv[]) -{ - int opt; - - progname = argv[0]; - prognamelen = -1; - - for (opt = 0; opt < argc; opt++) - prognamelen += 1 + strlen(argv[opt]); - - while ((opt = getopt(argc, argv, "t:i:r:cl")) > -1) - { - switch (opt) - { - case 't': - timeout = atoi(optarg); - break; - - case 'i': - if (optarg) - return run_dump_ifname(optarg); - break; - - case 'r': - if (optarg) - return run_dump_radio(optarg); - break; - - case 'c': - return run_dump_conns(); - - case 'l': - return run_dump_load(); - - default: - break; - } - } - - fprintf(stderr, - "Usage:\n" - " %s [-t timeout] -i ifname\n" - " %s [-t timeout] -r radiodev\n" - " %s [-t timeout] -c\n" - " %s [-t timeout] -l\n", - argv[0], argv[0], argv[0], argv[0] - ); - - return 1; -} diff --git a/luci/luci.mk b/luci/luci.mk deleted file mode 100644 index 1ddb73d49..000000000 --- a/luci/luci.mk +++ /dev/null @@ -1,239 +0,0 @@ -# -# Copyright (C) 2008-2015 The LuCI Team -# -# This is free software, licensed under the Apache License, Version 2.0 . -# - -LUCI_NAME?=$(notdir ${CURDIR}) -LUCI_TYPE?=$(word 2,$(subst -, ,$(LUCI_NAME))) -LUCI_BASENAME?=$(patsubst luci-$(LUCI_TYPE)-%,%,$(LUCI_NAME)) -LUCI_LANGUAGES:=$(filter-out templates,$(notdir $(wildcard ${CURDIR}/po/*))) -LUCI_DEFAULTS:=$(notdir $(wildcard ${CURDIR}/root/etc/uci-defaults/*)) -LUCI_PKGARCH?=$(if $(realpath src/Makefile),,all) - -# Language code titles -LUCI_LANG.ca=Català (Catalan) -LUCI_LANG.cs=Čeština (Czech) -LUCI_LANG.de=Deutsch (German) -LUCI_LANG.el=Ελληνικά (Greek) -LUCI_LANG.en=English -LUCI_LANG.es=Español (Spanish) -LUCI_LANG.fr=Français (French) -LUCI_LANG.he=עִבְרִית (Hebrew) -LUCI_LANG.hu=Magyar (Hungarian) -LUCI_LANG.it=Italiano (Italian) -LUCI_LANG.ja=日本語 (Japanese) -LUCI_LANG.ko=한국어 (Korean) -LUCI_LANG.ms=Bahasa Melayu (Malay) -LUCI_LANG.no=Norsk (Norwegian) -LUCI_LANG.pl=Polski (Polish) -LUCI_LANG.pt-br=Português do Brasil (Brazialian Portuguese) -LUCI_LANG.pt=Português (Portuguese) -LUCI_LANG.ro=Română (Romanian) -LUCI_LANG.ru=Русский (Russian) -LUCI_LANG.sk=Slovenčina (Slovak) -LUCI_LANG.sv=Svenska (Swedish) -LUCI_LANG.tr=Türkçe (Turkish) -LUCI_LANG.uk=украї́нська (Ukrainian) -LUCI_LANG.vi=Tiếng Việt (Vietnamese) -LUCI_LANG.zh-cn=中文 (Chinese) -LUCI_LANG.zh-tw=臺灣華語 (Taiwanese) - -# Submenu titles -LUCI_MENU.col=1. Collections -LUCI_MENU.mod=2. Modules -LUCI_MENU.app=3. Applications -LUCI_MENU.theme=4. Themes -LUCI_MENU.proto=5. Protocols -LUCI_MENU.lib=6. Libraries - - -PKG_NAME?=$(LUCI_NAME) - -PKG_VERSION?=$(if $(DUMP),x,$(strip $(shell \ - if svn info >/dev/null 2>/dev/null; then \ - revision="svn-r$$(LC_ALL=C svn info | sed -ne 's/^Revision: //p')"; \ - elif git log -1 >/dev/null 2>/dev/null; then \ - revision="svn-r$$(LC_ALL=C git log -1 | sed -ne 's/.*git-svn-id: .*@\([0-9]\+\) .*/\1/p')"; \ - if [ "$$revision" = "svn-r" ]; then \ - set -- $$(git log -1 --format="%ct %h" --abbrev=7); \ - secs="$$(($$1 % 86400))"; \ - yday="$$(date --utc --date="@$$1" "+%y.%j")"; \ - revision="$$(printf 'git-%s.%05d-%s' "$$yday" "$$secs" "$$2")"; \ - fi; \ - else \ - revision="unknown"; \ - fi; \ - echo "$$revision" \ -))) - -PKG_GITBRANCH?=$(if $(DUMP),x,$(strip $(shell \ - variant="LuCI"; \ - if git log -1 >/dev/null 2>/dev/null; then \ - branch="$$(git branch --remote --verbose --no-abbrev --contains 2>/dev/null | \ - sed -rne 's|^[^/]+/([^ ]+) [a-f0-9]{40} .+$$|\1|p' | head -n1)"; \ - if [ "$$branch" != "master" ]; then \ - variant="LuCI $$branch branch"; \ - else \ - variant="LuCI Master"; \ - fi; \ - fi; \ - echo "$$variant" \ -))) - -PKG_RELEASE?=1 -PKG_INSTALL:=$(if $(realpath src/Makefile),1) -PKG_BUILD_DEPENDS += lua/host luci-base/host $(LUCI_BUILD_DEPENDS) -PKG_CONFIG_DEPENDS += CONFIG_LUCI_SRCDIET - -PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) - -include $(INCLUDE_DIR)/package.mk - -define Package/$(PKG_NAME) - SECTION:=luci - CATEGORY:=LuCI - SUBMENU:=$(if $(LUCI_MENU.$(LUCI_TYPE)),$(LUCI_MENU.$(LUCI_TYPE)),$(LUCI_MENU.app)) - TITLE:=$(if $(LUCI_TITLE),$(LUCI_TITLE),LuCI $(LUCI_NAME) $(LUCI_TYPE)) - DEPENDS:=$(LUCI_DEPENDS) - $(if $(LUCI_PKGARCH),PKGARCH:=$(LUCI_PKGARCH)) -endef - -ifneq ($(LUCI_DESCRIPTION),) - define Package/$(PKG_NAME)/description - $(strip $(LUCI_DESCRIPTION)) - endef -endif - -# Language selection for luci-base -ifeq ($(PKG_NAME),luci-base) - define Package/luci-base/config - config LUCI_SRCDIET - bool "Minify Lua sources" - default n - - menu "Translations"$(foreach lang,$(LUCI_LANGUAGES), - - config LUCI_LANG_$(lang) - tristate "$(shell echo '$(LUCI_LANG.$(lang))' | sed -e 's/^.* (\(.*\))$$/\1/') ($(lang))") - - endmenu - endef -endif - -define Build/Prepare - for d in luasrc htdocs root src; do \ - if [ -d ./$$$$d ]; then \ - mkdir -p $(PKG_BUILD_DIR)/$$$$d; \ - $(CP) ./$$$$d/* $(PKG_BUILD_DIR)/$$$$d/; \ - fi; \ - done - $(call Build/Prepare/Default) -endef - -define Build/Configure -endef - -ifneq ($(wildcard ${CURDIR}/src/Makefile),) - MAKE_PATH := src/ - MAKE_VARS += FPIC="$(FPIC)" LUCI_VERSION="$(PKG_VERSION)" LUCI_GITBRANCH="$(PKG_GITBRANCH)" - - define Build/Compile - $(call Build/Compile/Default,clean compile) - endef -else - define Build/Compile - endef -endif - -HTDOCS = /www -LUA_LIBRARYDIR = /usr/lib/lua -LUCI_LIBRARYDIR = $(LUA_LIBRARYDIR)/luci - -define SrcDiet - $(FIND) $(1) -type f -name '*.lua' | while read src; do \ - if LuaSrcDiet --noopt-binequiv -o "$$$$src.o" "$$$$src"; \ - then mv "$$$$src.o" "$$$$src"; fi; \ - done -endef - -define SubstituteVersion - $(FIND) $(1) -type f -name '*.htm' | while read src; do \ - $(SED) 's/<%# *\([^ ]*\)PKG_VERSION *%>/\1$(PKG_VERSION)/g' \ - -e 's/"\(<%= *\(media\|resource\) *%>[^"]*\.\(js\|css\)\)"/"\1?v=$(PKG_VERSION)"/g' \ - "$$$$src"; \ - done -endef - -define Package/$(PKG_NAME)/install - if [ -d $(PKG_BUILD_DIR)/luasrc ]; then \ - $(INSTALL_DIR) $(1)$(LUCI_LIBRARYDIR); \ - cp -pR $(PKG_BUILD_DIR)/luasrc/* $(1)$(LUCI_LIBRARYDIR)/; \ - $(FIND) $(1)$(LUCI_LIBRARYDIR)/ -type f -name '*.luadoc' | $(XARGS) rm; \ - $(if $(CONFIG_LUCI_SRCDIET),$(call SrcDiet,$(1)$(LUCI_LIBRARYDIR)/),true); \ - $(call SubstituteVersion,$(1)$(LUCI_LIBRARYDIR)/); \ - else true; fi - if [ -d $(PKG_BUILD_DIR)/htdocs ]; then \ - $(INSTALL_DIR) $(1)$(HTDOCS); \ - cp -pR $(PKG_BUILD_DIR)/htdocs/* $(1)$(HTDOCS)/; \ - else true; fi - if [ -d $(PKG_BUILD_DIR)/root ]; then \ - $(INSTALL_DIR) $(1)/; \ - cp -pR $(PKG_BUILD_DIR)/root/* $(1)/; \ - else true; fi - if [ -d $(PKG_BUILD_DIR)/src ]; then \ - $(call Build/Install/Default) \ - $(CP) $(PKG_INSTALL_DIR)/* $(1)/; \ - else true; fi -endef - -ifneq ($(LUCI_DEFAULTS),) -define Package/$(PKG_NAME)/postinst -[ -n "$${IPKG_INSTROOT}" ] || {$(foreach script,$(LUCI_DEFAULTS), - (. /etc/uci-defaults/$(script)) && rm -f /etc/uci-defaults/$(script)) - exit 0 -} -endef -endif - - -LUCI_BUILD_PACKAGES := $(PKG_NAME) - -define LuciTranslation - define Package/luci-i18n-$(LUCI_BASENAME)-$(1) - SECTION:=luci - CATEGORY:=LuCI - TITLE:=$(PKG_NAME) - $(1) translation - HIDDEN:=1 - DEFAULT:=LUCI_LANG_$(1)||(ALL&&m) - DEPENDS:=$(PKG_NAME) - PKGARCH:=all - endef - - define Package/luci-i18n-$(LUCI_BASENAME)-$(1)/description - Translation for $(PKG_NAME) - $(LUCI_LANG.$(1)) - endef - - define Package/luci-i18n-$(LUCI_BASENAME)-$(1)/install - $$(INSTALL_DIR) $$(1)/etc/uci-defaults - echo "uci set luci.languages.$(subst -,_,$(1))='$(LUCI_LANG.$(1))'; uci commit luci" \ - > $$(1)/etc/uci-defaults/luci-i18n-$(LUCI_BASENAME)-$(1) - $$(INSTALL_DIR) $$(1)$(LUCI_LIBRARYDIR)/i18n - $(foreach po,$(wildcard ${CURDIR}/po/$(1)/*.po), \ - po2lmo $(po) \ - $$(1)$(LUCI_LIBRARYDIR)/i18n/$(basename $(notdir $(po))).$(1).lmo;) - endef - - define Package/luci-i18n-$(LUCI_BASENAME)-$(1)/postinst - [ -n "$$$${IPKG_INSTROOT}" ] || { - (. /etc/uci-defaults/luci-i18n-$(LUCI_BASENAME)-$(1)) && rm -f /etc/uci-defaults/luci-i18n-$(LUCI_BASENAME)-$(1) - exit 0 - } - endef - - LUCI_BUILD_PACKAGES += luci-i18n-$(LUCI_BASENAME)-$(1) - -endef - -$(foreach lang,$(LUCI_LANGUAGES),$(eval $(call LuciTranslation,$(lang)))) -$(foreach pkg,$(LUCI_BUILD_PACKAGES),$(eval $(call BuildPackage,$(pkg))))